You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import auth, { AuthParams } from '@/utils/authentication';
|
|
import { useEffect, useMemo, useState } from 'react';
|
|
import { moduleMap } from '@/routes/modules';
|
|
import { IRoute } from '@/routes/types';
|
|
|
|
export type { IRoute } from '@/routes/types';
|
|
|
|
// 根据模块生成路由
|
|
export const routes: IRoute[] = Object.values(moduleMap);
|
|
|
|
export const getName = (path: string, routes) => {
|
|
return routes.find((item) => {
|
|
const itemPath = `/${item.key}`;
|
|
if (path === itemPath) {
|
|
return item.name;
|
|
} else if (item.children) {
|
|
return getName(path, item.children);
|
|
}
|
|
});
|
|
};
|
|
|
|
export const generatePermission = (role: string) => {
|
|
const actions = role === 'admin' ? ['*'] : ['read'];
|
|
const result = {};
|
|
routes.forEach((item) => {
|
|
if (item.children) {
|
|
item.children.forEach((child) => {
|
|
result[child.name] = actions;
|
|
});
|
|
}
|
|
});
|
|
return result;
|
|
};
|
|
|
|
const useRoute = (userPermission): [IRoute[], string] => {
|
|
const filterRoute = (routes: IRoute[], arr = []): IRoute[] => {
|
|
if (!routes.length) {
|
|
return [];
|
|
}
|
|
for (const route of routes) {
|
|
const { requiredPermissions, oneOfPerm } = route;
|
|
let visible = true;
|
|
if (requiredPermissions) {
|
|
visible = auth({ requiredPermissions, oneOfPerm }, userPermission);
|
|
}
|
|
|
|
if (!visible) {
|
|
continue;
|
|
}
|
|
if (route.children && route.children.length) {
|
|
const newRoute = { ...route, children: [] };
|
|
filterRoute(route.children, newRoute.children);
|
|
if (newRoute.children.length) {
|
|
arr.push(newRoute);
|
|
}
|
|
} else {
|
|
arr.push({ ...route });
|
|
}
|
|
}
|
|
|
|
return arr;
|
|
};
|
|
|
|
const [permissionRoute, setPermissionRoute] = useState(routes);
|
|
|
|
useEffect(() => {
|
|
const newRoutes = filterRoute(routes);
|
|
setPermissionRoute(newRoutes);
|
|
}, [JSON.stringify(userPermission)]);
|
|
|
|
const defaultRoute = useMemo(() => {
|
|
const first = permissionRoute[0];
|
|
if (first) {
|
|
const firstRoute = first?.children?.[0]?.key || first.key;
|
|
return firstRoute;
|
|
}
|
|
return '';
|
|
}, [permissionRoute]);
|
|
|
|
return [permissionRoute, defaultRoute];
|
|
};
|
|
|
|
export default useRoute; |