2023-04-02 01:01:56 +08:00
|
|
|
|
import { defineStore } from 'pinia';
|
|
|
|
|
import router, { constantRoutes, dynamicRoutes } from '@/router';
|
|
|
|
|
import store from '@/store';
|
|
|
|
|
import { getRouters } from '@/api/menu';
|
2023-12-13 01:01:52 +00:00
|
|
|
|
import auth from '@/plugins/auth';
|
|
|
|
|
import { RouteRecordRaw } from 'vue-router';
|
|
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
|
import Layout from '@/layout/index.vue';
|
|
|
|
|
import ParentView from '@/components/ParentView/index.vue';
|
|
|
|
|
import InnerLink from '@/layout/components/InnerLink/index.vue';
|
2023-12-13 01:01:52 +00:00
|
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
|
// 匹配views里面所有的.vue文件
|
|
|
|
|
const modules = import.meta.glob('./../../views/**/*.vue');
|
|
|
|
|
export const usePermissionStore = defineStore('permission', () => {
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const routes = ref<RouteRecordRaw[]>([]);
|
|
|
|
|
const addRoutes = ref<RouteRecordRaw[]>([]);
|
|
|
|
|
const defaultRoutes = ref<RouteRecordRaw[]>([]);
|
|
|
|
|
const topbarRouters = ref<RouteRecordRaw[]>([]);
|
|
|
|
|
const sidebarRouters = ref<RouteRecordRaw[]>([]);
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
2023-12-27 12:12:51 +08:00
|
|
|
|
const getRoutes = (): RouteRecordRaw[] => {
|
|
|
|
|
return routes.value;
|
|
|
|
|
};
|
|
|
|
|
const getSidebarRoutes = (): RouteRecordRaw[] => {
|
|
|
|
|
return sidebarRouters.value;
|
|
|
|
|
};
|
|
|
|
|
const getTopbarRoutes = (): RouteRecordRaw[] => {
|
|
|
|
|
return topbarRouters.value;
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const setRoutes = (newRoutes: RouteRecordRaw[]): void => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
addRoutes.value = newRoutes;
|
|
|
|
|
routes.value = constantRoutes.concat(newRoutes);
|
|
|
|
|
};
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const setDefaultRoutes = (routes: RouteRecordRaw[]): void => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
defaultRoutes.value = constantRoutes.concat(routes);
|
|
|
|
|
};
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const setTopbarRoutes = (routes: RouteRecordRaw[]): void => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
topbarRouters.value = routes;
|
|
|
|
|
};
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const setSidebarRouters = (routes: RouteRecordRaw[]): void => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
sidebarRouters.value = routes;
|
|
|
|
|
};
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const generateRoutes = async (): Promise<RouteRecordRaw[]> => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
const res = await getRouters();
|
|
|
|
|
const { data } = res;
|
|
|
|
|
const sdata = JSON.parse(JSON.stringify(data));
|
|
|
|
|
const rdata = JSON.parse(JSON.stringify(data));
|
|
|
|
|
const defaultData = JSON.parse(JSON.stringify(data));
|
|
|
|
|
const sidebarRoutes = filterAsyncRouter(sdata);
|
|
|
|
|
const rewriteRoutes = filterAsyncRouter(rdata, undefined, true);
|
|
|
|
|
const defaultRoutes = filterAsyncRouter(defaultData);
|
|
|
|
|
const asyncRoutes = filterDynamicRoutes(dynamicRoutes);
|
|
|
|
|
asyncRoutes.forEach((route) => {
|
|
|
|
|
router.addRoute(route);
|
|
|
|
|
});
|
|
|
|
|
setRoutes(rewriteRoutes);
|
|
|
|
|
setSidebarRouters(constantRoutes.concat(sidebarRoutes));
|
|
|
|
|
setDefaultRoutes(sidebarRoutes);
|
|
|
|
|
setTopbarRoutes(defaultRoutes);
|
2023-12-13 01:01:52 +00:00
|
|
|
|
return new Promise<RouteRecordRaw[]>((resolve) => resolve(rewriteRoutes));
|
2023-04-03 00:05:09 +08:00
|
|
|
|
};
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
2023-04-03 00:05:09 +08:00
|
|
|
|
/**
|
|
|
|
|
* 遍历后台传来的路由字符串,转换为组件对象
|
|
|
|
|
* @param asyncRouterMap 后台传来的路由字符串
|
|
|
|
|
* @param lastRouter 上一级路由
|
|
|
|
|
* @param type 是否是重写路由
|
|
|
|
|
*/
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const filterAsyncRouter = (asyncRouterMap: RouteRecordRaw[], lastRouter?: RouteRecordRaw, type = false): RouteRecordRaw[] => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
return asyncRouterMap.filter((route) => {
|
|
|
|
|
if (type && route.children) {
|
|
|
|
|
route.children = filterChildren(route.children, undefined);
|
|
|
|
|
}
|
2023-12-13 01:01:52 +00:00
|
|
|
|
// Layout ParentView 组件特殊处理
|
|
|
|
|
if (route.component?.toString() === 'Layout') {
|
|
|
|
|
route.component = Layout;
|
|
|
|
|
} else if (route.component?.toString() === 'ParentView') {
|
|
|
|
|
route.component = ParentView;
|
|
|
|
|
} else if (route.component?.toString() === 'InnerLink') {
|
|
|
|
|
route.component = InnerLink;
|
|
|
|
|
} else {
|
|
|
|
|
route.component = loadView(route.component);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
}
|
|
|
|
|
if (route.children != null && route.children && route.children.length) {
|
|
|
|
|
route.children = filterAsyncRouter(route.children, route, type);
|
|
|
|
|
} else {
|
|
|
|
|
delete route.children;
|
|
|
|
|
delete route.redirect;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
};
|
2023-12-13 01:01:52 +00:00
|
|
|
|
const filterChildren = (childrenMap: RouteRecordRaw[], lastRouter?: RouteRecordRaw): RouteRecordRaw[] => {
|
|
|
|
|
let children: RouteRecordRaw[] = [];
|
2023-04-03 00:05:09 +08:00
|
|
|
|
childrenMap.forEach((el) => {
|
|
|
|
|
if (el.children && el.children.length) {
|
2023-12-13 01:01:52 +00:00
|
|
|
|
if (el.component?.toString() === 'ParentView' && !lastRouter) {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
el.children.forEach((c) => {
|
|
|
|
|
c.path = el.path + '/' + c.path;
|
|
|
|
|
if (c.children && c.children.length) {
|
|
|
|
|
children = children.concat(filterChildren(c.children, c));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
children.push(c);
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (lastRouter) {
|
|
|
|
|
el.path = lastRouter.path + '/' + el.path;
|
2023-11-10 15:59:09 +08:00
|
|
|
|
if (el.children && el.children.length) {
|
2023-12-13 01:01:52 +00:00
|
|
|
|
children = children.concat(filterChildren(el.children, el));
|
|
|
|
|
return;
|
2023-11-10 15:59:09 +08:00
|
|
|
|
}
|
2023-04-03 00:05:09 +08:00
|
|
|
|
}
|
|
|
|
|
children = children.concat(el);
|
|
|
|
|
});
|
|
|
|
|
return children;
|
|
|
|
|
};
|
2023-12-27 12:12:51 +08:00
|
|
|
|
return {
|
|
|
|
|
routes,
|
|
|
|
|
topbarRouters,
|
|
|
|
|
sidebarRouters,
|
|
|
|
|
defaultRoutes,
|
|
|
|
|
|
|
|
|
|
getRoutes,
|
|
|
|
|
getSidebarRoutes,
|
|
|
|
|
getTopbarRoutes,
|
|
|
|
|
|
|
|
|
|
setRoutes,
|
|
|
|
|
generateRoutes,
|
|
|
|
|
setSidebarRouters
|
|
|
|
|
};
|
2023-04-02 01:01:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 动态路由遍历,验证是否具备权限
|
2023-12-13 01:01:52 +00:00
|
|
|
|
export const filterDynamicRoutes = (routes: RouteRecordRaw[]) => {
|
|
|
|
|
const res: RouteRecordRaw[] = [];
|
2023-04-03 00:05:09 +08:00
|
|
|
|
routes.forEach((route) => {
|
|
|
|
|
if (route.permissions) {
|
|
|
|
|
if (auth.hasPermiOr(route.permissions)) {
|
|
|
|
|
res.push(route);
|
|
|
|
|
}
|
|
|
|
|
} else if (route.roles) {
|
|
|
|
|
if (auth.hasRoleOr(route.roles)) {
|
|
|
|
|
res.push(route);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return res;
|
2023-04-02 01:01:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const loadView = (view: any) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
let res;
|
|
|
|
|
for (const path in modules) {
|
|
|
|
|
const dir = path.split('views/')[1].split('.vue')[0];
|
|
|
|
|
if (dir === view) {
|
|
|
|
|
res = () => modules[path]();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return res;
|
2023-04-02 01:01:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 非setup
|
|
|
|
|
export const usePermissionStoreHook = () => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
return usePermissionStore(store);
|
2023-04-02 01:01:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default usePermissionStore;
|