190 lines
6.9 KiB
TypeScript
190 lines
6.9 KiB
TypeScript
import { RouteRecordRaw } from 'vue-router';
|
||
|
||
// Extend the Window interface to include nextLoading
|
||
declare global {
|
||
interface Window {
|
||
nextLoading?: any;
|
||
}
|
||
}
|
||
import pinia from '/@/stores/index';
|
||
import { useUserInfo } from '/@/stores/userInfo';
|
||
import { useRequestOldRoutes } from '/@/stores/requestOldRoutes';
|
||
import { Session } from '/@/utils/storage';
|
||
import { NextLoading } from '/@/utils/loading';
|
||
import { dynamicRoutes, notFoundAndNoPower } from '/@/router/route';
|
||
import { formatTwoStageRoutes, formatFlatteningRoutes, router } from '/@/router/index';
|
||
import { useRoutesList } from '/@/stores/routesList';
|
||
import { useTagsViewRoutes } from '/@/stores/tagsViewRoutes';
|
||
import { getUserMenus } from '/@/api/system/menu/index';
|
||
|
||
|
||
|
||
const layouModules: any = import.meta.glob('../layout/routerView/*.{vue,tsx}');
|
||
const viewsModules: any = import.meta.glob('../views/**/*.{vue,tsx}');
|
||
|
||
// 后端控制路由
|
||
|
||
/**
|
||
* 获取目录下的 .vue、.tsx 全部文件
|
||
* @method import.meta.glob
|
||
* @link 参考:https://cn.vitejs.dev/guide/features.html#json
|
||
*/
|
||
const dynamicViewsModules: Record<string, Function> = Object.assign({}, { ...layouModules }, { ...viewsModules });
|
||
|
||
/**
|
||
* 后端控制路由:初始化方法,防止刷新时路由丢失
|
||
* @method NextLoading 界面 loading 动画开始执行
|
||
* @method useUserInfo().setUserInfos() 触发初始化用户信息 pinia
|
||
* @method useRequestOldRoutes().setRequestOldRoutes() 存储接口原始路由(未处理component),根据需求选择使用
|
||
* @method setAddRoute 添加动态路由
|
||
* @method setFilterMenuAndCacheTagsViewRoutes 设置路由到 vuex routesList 中(已处理成多级嵌套路由)及缓存多级嵌套数组处理后的一维数组
|
||
*/
|
||
export async function initBackEndControlRoutes() {
|
||
// 界面 loading 动画开始执行
|
||
if (window.nextLoading === undefined) NextLoading.start();
|
||
// 无 token 停止执行下一步
|
||
if (!Session.get('token')) return false;
|
||
// 触发初始化用户信息 pinia
|
||
// https://gitee.com/lyt-top/vue-next-admin/issues/I5F1HP
|
||
await useUserInfo().setUserInfos();
|
||
await useUserInfo().setPermissions();
|
||
// 获取路由菜单数据
|
||
await getBackEndControlRoutes();
|
||
let menuRoute = Session.get('userMenu')
|
||
// 存储接口原始路由(未处理component),根据需求选择使用
|
||
useRequestOldRoutes().setRequestOldRoutes(JSON.parse(JSON.stringify(menuRoute)));
|
||
// 处理路由(component),替换 dynamicRoutes(/@/router/route)第一个顶级 children 的路由
|
||
dynamicRoutes[0].children?.push(...await backEndComponent(menuRoute));
|
||
// 添加动态路由
|
||
await setAddRoute();
|
||
// 设置路由到 vuex routesList 中(已处理成多级嵌套路由)及缓存多级嵌套数组处理后的一维数组
|
||
await setFilterMenuAndCacheTagsViewRoutes();
|
||
}
|
||
|
||
/**
|
||
* 设置路由到 vuex routesList 中(已处理成多级嵌套路由)及缓存多级嵌套数组处理后的一维数组
|
||
* @description 用于左侧菜单、横向菜单的显示
|
||
* @description 用于 tagsView、菜单搜索中:未过滤隐藏的(isHide)
|
||
*/
|
||
export function setFilterMenuAndCacheTagsViewRoutes() {
|
||
const storesRoutesList = useRoutesList(pinia);
|
||
storesRoutesList.setRoutesList(dynamicRoutes[0].children as any);
|
||
setCacheTagsViewRoutes();
|
||
}
|
||
|
||
/**
|
||
* 缓存多级嵌套数组处理后的一维数组
|
||
* @description 用于 tagsView、菜单搜索中:未过滤隐藏的(isHide)
|
||
*/
|
||
export function setCacheTagsViewRoutes() {
|
||
const storesTagsView = useTagsViewRoutes(pinia);
|
||
storesTagsView.setTagsViewRoutes(formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes))[0].children);
|
||
}
|
||
|
||
/**
|
||
* 处理路由格式及添加捕获所有路由或 404 Not found 路由
|
||
* @description 替换 dynamicRoutes(/@/router/route)第一个顶级 children 的路由
|
||
* @returns 返回替换后的路由数组
|
||
*/
|
||
export function setFilterRouteEnd() {
|
||
let filterRouteEnd: any = formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes));
|
||
filterRouteEnd[0].children = [...filterRouteEnd[0].children, ...notFoundAndNoPower];
|
||
return filterRouteEnd;
|
||
}
|
||
|
||
/**
|
||
* 添加动态路由
|
||
* @method router.addRoute
|
||
* @description 此处循环为 dynamicRoutes(/@/router/route)第一个顶级 children 的路由一维数组,非多级嵌套
|
||
* @link 参考:https://next.router.vuejs.org/zh/api/#addroute
|
||
*/
|
||
export async function setAddRoute() {
|
||
await setFilterRouteEnd().forEach((route: RouteRecordRaw) => {
|
||
const routeName: any = route.name;
|
||
if (!router.hasRoute(routeName)) router.addRoute(route);
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 请求后端路由菜单接口
|
||
* @description isRequestRoutes 为 true,则开启后端控制路由
|
||
* @returns 返回后端路由菜单数据
|
||
*/
|
||
export async function getBackEndControlRoutes() {
|
||
let menuRoute = Session.get('userMenu')
|
||
let permissions = Session.get('permissions')
|
||
let userInfo = Session.get('userInfo')
|
||
if (!menuRoute || !permissions ||!userInfo) {
|
||
await refreshBackEndControlRoutes()
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 请求后端路由菜单接口刷新菜单及权限
|
||
* @description isRequestRoutes 为 true,则开启后端控制路由
|
||
* @returns 返回后端路由菜单数据
|
||
*/
|
||
export async function refreshBackEndControlRoutes() {
|
||
// 获取路由
|
||
await getUserMenus().then((res:any)=>{
|
||
Session.set('userMenu',res.data.menuList)
|
||
Session.set('permissions',res.data.permissions)
|
||
Session.set('userInfo',res.data.userInfo)
|
||
})
|
||
await useUserInfo().setUserInfos()
|
||
await useUserInfo().setPermissions()
|
||
}
|
||
|
||
/**
|
||
* 重新请求后端路由菜单接口
|
||
* @description 用于菜单管理界面刷新菜单(未进行测试)
|
||
* @description 路径:/src/views/system/menu/component/addMenu.vue
|
||
*/
|
||
export function setBackEndControlRefreshRoutes() {
|
||
getBackEndControlRoutes();
|
||
}
|
||
|
||
/**
|
||
* 后端路由 component 转换
|
||
* @param routes 后端返回的路由表数组
|
||
* @returns 返回处理成函数后的 component
|
||
*/
|
||
export function backEndComponent(routes: any) {
|
||
if (!routes) return;
|
||
return routes.map((item: any) => {
|
||
if(item.children&&item.children.length>0){
|
||
item.children.some((ci:any)=>{
|
||
if(!ci.meta.isHide){
|
||
item.redirect = ci
|
||
return true
|
||
}
|
||
return false
|
||
})
|
||
}
|
||
if (item.component) item.component = dynamicImport(dynamicViewsModules, item.component as string);
|
||
item.children && backEndComponent(item.children);
|
||
return item;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 后端路由 component 转换函数
|
||
* @param dynamicViewsModules 获取目录下的 .vue、.tsx 全部文件
|
||
* @param component 当前要处理项 component
|
||
* @returns 返回处理成函数后的 component
|
||
*/
|
||
export function dynamicImport(dynamicViewsModules: Record<string, Function>, component: string) {
|
||
const keys = Object.keys(dynamicViewsModules);
|
||
const matchKeys = keys.filter((key) => {
|
||
const k = key.replace(/..\/views|../, '');
|
||
return k.startsWith(`${component}`) || k.startsWith(`/${component}`);
|
||
});
|
||
if (matchKeys?.length === 1) {
|
||
const matchKey = matchKeys[0];
|
||
return dynamicViewsModules[matchKey];
|
||
}
|
||
if (matchKeys?.length > 1) {
|
||
return false;
|
||
}
|
||
}
|