mirror of
https://github.com/directus/directus.git
synced 2026-01-31 03:48:04 -05:00
* Add directus_shares * Don't check for usage limit on refresh * Add all endpoints to the shares controller * Move route `/auth/shared` to `/shared/auth` * Add password protection * Add `share` action in permissions * Add `shares/:pk/info` * Start on shared-view * Add basic styling for full shared view * Fixed migrations * Add inline style for shared view * Allow title override * Finish /info endpoint for shares * Add basic UUID validation to share/info endpont * Add UUID validation to other routes * Add not found state * Cleanup /extract/finish share login endpoint * Cleanup auth * Added `share_start` and `share_end` * Add share sidebar details. * Allow share permissions configuration * Hide the `new_share` button for unauthorized users * Fix uses_left displayed value * Show expired / upcoming shares * Improved expired/upcoming styling * Fixed share login query * Fix check-ip and get-permissions middlewares behaviour when role is null * Simplify cache key * Fix typescript linting issues * Handle app auth flow for shared page * Fixed /users/me response * Show when user is authenticated * Try showing item drawer in shared page * Improved shared card styling * Add shares permissions and change share card styling * Pull in schema/permissions on share * Create getPermissionForShare file * Change getPermissionsForShare signature * Render form + item on share after auth * Finalize public front end * Handle fake o2m field in applyQuery * [WIP] * New translations en-US.yaml (Bulgarian) (#10585) * smaller label height (#10587) * Update to the latest Material Icons (#10573) The icons are based on https://fonts.google.com/icons * New translations en-US.yaml (Arabic) (#10593) * New translations en-US.yaml (Arabic) (#10594) * New translations en-US.yaml (Portuguese, Brazilian) (#10604) * New translations en-US.yaml (French) (#10605) * New translations en-US.yaml (Italian) (#10613) * fix M2A list not updating (#10617) * Fix filters * Add admin filter on m2o role selection * Add admin filter on m2o role selection * Add o2m permissions traversing * Finish relational tree permissions generation * Handle implicit a2o relation * Update implicit relation regex * Fix regex * Fix implicitRelation unnesting for new regex * Fix implicitRelation length check * Rename m2a to a2o internally * Add auto-gen permissions for a2o * [WIP] Improve share UX * Add ctx menu options * Add share dialog * Add email notifications * Tweak endpoint * Tweak file interface disabled state * Add nicer invalid state to password input * Dont return info for expired/upcoming shares * Tweak disabled state for relational interfaces * Fix share button for non admin roles * Show/hide edit/delete based on permissions to shares * Fix imports of mutationtype * Resolve (my own) suggestions * Fix migration for ms sql * Resolve last suggestion Co-authored-by: Oreilles <oreilles.github@nitoref.io> Co-authored-by: Oreilles <33065839+oreilles@users.noreply.github.com> Co-authored-by: Ben Haynes <ben@rngr.org> Co-authored-by: Thien Nguyen <72242664+tatthien@users.noreply.github.com> Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
101 lines
2.3 KiB
TypeScript
101 lines
2.3 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,
|
|
useCollectionsStore,
|
|
useFieldsStore,
|
|
useLatencyStore,
|
|
useInsightsStore,
|
|
usePermissionsStore,
|
|
usePresetsStore,
|
|
useRelationsStore,
|
|
useRequestsStore,
|
|
useServerStore,
|
|
useSettingsStore,
|
|
useUserStore,
|
|
useNotificationsStore,
|
|
} from '@/stores';
|
|
|
|
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,
|
|
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 permissionsStore = usePermissionsStore();
|
|
|
|
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();
|
|
|
|
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 setLanguage(userStore.currentUser?.language ?? 'en-US');
|
|
}
|
|
|
|
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;
|
|
}
|