31 lines
841 B
TypeScript
31 lines
841 B
TypeScript
import { action, Action, thunk, Thunk } from 'easy-peasy';
|
|
import getSystemPermissions from '@/api/getSystemPermissions';
|
|
|
|
export interface PanelPermissions {
|
|
[key: string]: {
|
|
description: string;
|
|
keys: { [k: string]: string };
|
|
};
|
|
}
|
|
|
|
export interface GloablPermissionsStore {
|
|
data: PanelPermissions;
|
|
setPermissions: Action<GloablPermissionsStore, PanelPermissions>;
|
|
getPermissions: Thunk<GloablPermissionsStore, void, Record<string, unknown>, any, Promise<void>>;
|
|
}
|
|
|
|
const permissions: GloablPermissionsStore = {
|
|
data: {},
|
|
|
|
setPermissions: action((state, payload) => {
|
|
state.data = payload;
|
|
}),
|
|
|
|
getPermissions: thunk(async actions => {
|
|
const permissions = await getSystemPermissions();
|
|
|
|
actions.setPermissions(permissions);
|
|
}),
|
|
};
|
|
|
|
export default permissions;
|