feat: 模拟后台返回不同角色路由生成动态路由

This commit is contained in:
xiaoxian521
2021-05-27 23:36:46 +08:00
parent b554356ba1
commit 07aff1fcfc
22 changed files with 297 additions and 92 deletions

View File

@@ -5,27 +5,53 @@ import flowChartRouter from "./modules/flowchart";
import editorRouter from "./modules/editor";
import componentsRouter from "./modules/components";
import nestedRouter from "./modules/nested";
import systemRouter from "./modules/system";
import errorRouter from "./modules/error";
import remainingRouter from "./modules/remaining";
import permissionRouter from "./modules/permission";
import remainingRouter from "./modules/remaining"; //静态路由
import Layout from "/@/layout/index.vue";
import { getAsyncRoutes } from "/@/api/routes";
import { storageSession } from "../utils/storage";
import { i18n } from "/@/plugins/i18n/index";
const routes: Array<RouteRecordRaw> = [
const constantRoutes: Array<RouteRecordRaw> = [
homeRouter,
flowChartRouter,
editorRouter,
componentsRouter,
nestedRouter,
systemRouter,
permissionRouter,
errorRouter,
...remainingRouter,
];
// 过滤后端传来的动态路由重新生成规范路由
const addAsyncRoutes = (arrRoutes: Array<string>) => {
if (!arrRoutes || !arrRoutes.length) return;
arrRoutes.forEach((v: any) => {
if (v.redirect) {
v.component = Layout;
} else {
// https://github.com/rollup/plugins/tree/master/packages/dynamic-import-vars#limitations
v.component = () =>
import(/* @vite-ignore */ `/@/views${v.path}/index.vue`);
}
if (v.children) {
addAsyncRoutes(v.children);
}
});
return arrRoutes;
};
// 按照路由中meta下的rank等级升序来排序路由
function ascending(arr) {
return arr.sort((a: any, b: any) => {
return a?.meta?.rank - b?.meta?.rank;
});
}
const router = createRouter({
history: createWebHashHistory(),
routes,
routes: ascending(constantRoutes).concat(...remainingRouter),
scrollBehavior(to, from, savedPosition) {
return new Promise((resolve, reject) => {
if (savedPosition) {
@@ -46,13 +72,31 @@ import NProgress from "../utils/progress";
const whiteList = ["/login", "/register"];
router.beforeEach((to, _from, next) => {
let isLogin = storageSession.getItem("info");
// _from?.name;
if (isLogin && isLogin.username === "admin") {
// 异步路由
getAsyncRoutes().then(({ info }) => {
addAsyncRoutes([info]).forEach((v: any) => {
// 防止重复添加路由
if (
router.options.routes.findIndex((value) => value.path === v.path) !==
-1
)
return;
// 切记将路由push到routes后还需要使用addRoute这样路由才能正常跳转
router.options.routes.push(v);
// 最终路由进行升序
ascending(router.options.routes);
router.addRoute(v.name, v);
});
});
}
NProgress.start();
const { t } = i18n.global;
// @ts-ignore
to.meta.title ? (document.title = t(to.meta.title)) : ""; // 动态title
whiteList.indexOf(to.path) !== -1 || storageSession.getItem("info")
? next()
: next("/login"); // 全部重定向到登录页
whiteList.indexOf(to.path) !== -1 || isLogin ? next() : next("/login"); // 全部重定向到登录页
});
router.afterEach(() => {