Files
directus/app/src/hydrate.ts
Rijk van Zanten d6846d74eb Refactor unnecessary nested app folders (#14580)
* Remove unused nested folders from components

* Remove nested folders

* Standardize composables output

* Fix import inconsistencies

* Same trick for directives

* Same for routes

* Replace reliance root grouped export in favor of explicit imports

* Replace reliance on implicit imports

* Remove nested folder structure

* Consistent use of non-default exports in utils

* Remove nested folder structure from private components

* Fix test mock

* Remove extraneous component registration for valuenull

* Fix stores provider

* Fix logo sprite
2022-07-22 15:10:28 -04:00

110 lines
3.1 KiB
TypeScript

import { setLanguage } from '@/lang/set-language';
import { register as registerModules, unregister as unregisterModules } from '@/modules/register';
import { getBasemapSources } from '@/utils/geometry/basemap';
import { useAppStore } from '@/stores/app';
import { useCollectionsStore } from '@/stores/collections';
import { useFieldsStore } from '@/stores/fields';
import { useLatencyStore } from '@/stores/latency';
import { useInsightsStore } from '@/stores/insights';
import { useFlowsStore } from '@/stores/flows';
import { usePermissionsStore } from '@/stores/permissions';
import { usePresetsStore } from '@/stores/presets';
import { useRelationsStore } from '@/stores/relations';
import { useRequestsStore } from '@/stores/requests';
import { useServerStore } from '@/stores/server';
import { useSettingsStore } from '@/stores/settings';
import { useUserStore } from '@/stores/user';
import { useNotificationsStore } from '@/stores/notifications';
import { useTranslationStrings } from '@/composables/use-translation-strings';
type GenericStore = {
$id: string;
hydrate?: () => Promise<void>;
dehydrate?: () => Promise<void>;
[key: string]: any;
};
export function useStores(
stores = [
useCollectionsStore,
useFieldsStore,
useUserStore,
useRequestsStore,
usePresetsStore,
useSettingsStore,
useServerStore,
useLatencyStore,
useRelationsStore,
usePermissionsStore,
useInsightsStore,
useFlowsStore,
useNotificationsStore,
]
): GenericStore[] {
return stores.map((useStore) => useStore()) as GenericStore[];
}
export async function hydrate(): Promise<void> {
const stores = useStores();
const appStore = useAppStore();
const userStore = useUserStore();
const serverStore = useServerStore();
const permissionsStore = usePermissionsStore();
const { refresh: hydrateTranslationStrings } = useTranslationStrings();
if (appStore.hydrated) return;
if (appStore.hydrating) return;
appStore.hydrating = true;
try {
/**
* @NOTE
* Multiple stores rely on the userStore to be set, so they can fetch user specific data. The
* following makes sure that the user store is always fetched first, before we hydrate anything
* else.
*/
await userStore.hydrate();
let lang = 'en-US';
if (serverStore.info?.project?.default_language) lang = serverStore.info.project.default_language;
if (userStore.currentUser?.role) {
await permissionsStore.hydrate();
const hydratedStores = ['userStore', 'permissionsStore'];
await Promise.all(stores.filter(({ $id }) => !hydratedStores.includes($id)).map((store) => store.hydrate?.()));
await registerModules();
await hydrateTranslationStrings();
if (userStore.currentUser?.language) lang = userStore.currentUser?.language;
}
await setLanguage(lang);
appStore.basemap = getBasemapSources()[0].name;
} catch (error: any) {
appStore.error = error;
} finally {
appStore.hydrating = false;
}
appStore.hydrated = true;
}
export async function dehydrate(stores = useStores()): Promise<void> {
const appStore = useAppStore();
if (appStore.hydrated === false) return;
for (const store of stores) {
await store.dehydrate?.();
}
unregisterModules();
appStore.hydrated = false;
}