mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import type { NavigationGuard, NavigationGuardNext, RouteLocationNormalized, Router } from 'vue-router';
|
|
import type { Ref } from 'vue';
|
|
|
|
export const access: {
|
|
hasAccess: (accessId: string | number) => Promise<boolean>;
|
|
hasAccessSync: (accessId: string | number) => boolean;
|
|
isDataReady: () => boolean;
|
|
setRole: (roleId: string | Promise<string>) => void;
|
|
getRole: () => string;
|
|
setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void;
|
|
getAccess: () => string[];
|
|
match: (path: string, accessIds: string[]) => boolean;
|
|
setPresetAccess: (accessId: string | string[]) => void;
|
|
};
|
|
|
|
export function useAccess(accessId: string | number): Ref<boolean>;
|
|
|
|
interface CustomNavigationGuardOption {
|
|
router: Router;
|
|
to: RouteLocationNormalized;
|
|
from: RouteLocationNormalized;
|
|
next: NavigationGuardNext;
|
|
}
|
|
|
|
interface CustomNavigationGuard {
|
|
(option: CustomNavigationGuardOption): ReturnType<NavigationGuard>;
|
|
}
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
access?:
|
|
| {
|
|
rules: Record<string, []>;
|
|
}
|
|
| false;
|
|
}
|
|
|
|
interface PluginRuntimeConfig {
|
|
access?: {
|
|
noFoundHandler?: CustomNavigationGuard;
|
|
unAccessHandler?: CustomNavigationGuard;
|
|
ignoreAccess?: string[];
|
|
};
|
|
}
|
|
}
|