feat: plugin-access中导出hasAccessSync方法

This commit is contained in:
harrywan 2024-05-30 15:39:53 +08:00
parent 5c516953b8
commit 9c01a5437d
2 changed files with 9 additions and 4 deletions

View File

@ -145,8 +145,13 @@ export const install = (app) => {
app.component("Access", createComponent(useAccess)); app.component("Access", createComponent(useAccess));
}; };
export const hasAccessSync = (path) => {
return match(unref(path), getAllowAccessIds());
}
export const access = { export const access = {
hasAccess, hasAccess,
hasAccessSync,
isDataReady, isDataReady,
setRole, setRole,
getRole: () => { getRole: () => {
@ -158,10 +163,6 @@ export const access = {
setPresetAccess, setPresetAccess,
}; };
export const hasAccessSync = (path) => {
return match(unref(path), getAllowAccessIds());
}
export const useAccess = (path) => { export const useAccess = (path) => {
const allowPageIds = computed(getAllowAccessIds); const allowPageIds = computed(getAllowAccessIds);
const result = computed(() => { const result = computed(() => {

View File

@ -3,10 +3,14 @@ import type { Ref } from 'vue';
export const access: { export const access: {
hasAccess: (accessId: string | number) => Promise<boolean>; hasAccess: (accessId: string | number) => Promise<boolean>;
hasAccessSync: (accessId: string | number) => boolean;
isDataReady: () => boolean; isDataReady: () => boolean;
setRole: (roleId: string | Promise<string>) => void; setRole: (roleId: string | Promise<string>) => void;
getRole: () => string;
setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void; setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void;
getAccess: () => string[]; getAccess: () => string[];
match: (path: string, accessIds: string[]) => boolean;
setPresetAccess: (accessId: string | string[]) => void;
}; };
export function useAccess(accessId: string | number): Ref<boolean>; export function useAccess(accessId: string | number): Ref<boolean>;