mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: plugin-access中导出hasAccessSync方法
This commit is contained in:
parent
db99bb9bc4
commit
56f6120f88
@ -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(() => {
|
||||||
|
4
packages/fes-plugin-access/types.d.ts
vendored
4
packages/fes-plugin-access/types.d.ts
vendored
@ -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>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user