import { hasPermission } from '@/utils/permission/index' import NProgress from 'nprogress' import { createRouter, createWebHistory, type NavigationGuardNext, type RouteLocationNormalized, type RouteRecordRaw, type RouteRecordName, } from 'vue-router' import useStore from '@/stores' import { routes } from '@/router/chat/routes' NProgress.configure({ showSpinner: false, speed: 500, minimum: 0.3 }) const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: routes, }) // 路由前置拦截器 router.beforeEach( async (to: RouteLocationNormalized, from: RouteLocationNormalized, next: NavigationGuardNext) => { NProgress.start() if (to.path === '/404') { next() return } const { chatUser } = useStore() const notAuthRouteNameList = ['login'] if (!notAuthRouteNameList.includes(to.name ? to.name.toString() : '')) { if (to.params && to.params.accessToken) { chatUser.setAccessToken(to.params.accessToken.toString()) } else { next({ path: '/404', }) return } const token = chatUser.getToken() const authentication = await chatUser.isAuthentication() if (authentication) { if (!token) { next({ name: 'login', params: { accessToken: to.params.accessToken, }, }) return } } else { await chatUser.anonymousAuthentication() } if (!chatUser.application) { await chatUser.applicationProfile() } } // 判断是否有菜单权限 if (to.meta.permission ? hasPermission(to.meta.permission as any, 'OR') : true) { next() } else { // 如果没有权限则直接取404页面 next('404') } }, ) router.afterEach(() => { NProgress.done() }) export const getChildRouteListByPathAndName = (path: any, name?: RouteRecordName | any) => { return getChildRouteList(routes, path, name) } export const getChildRouteList: ( routeList: Array, path: string, name?: RouteRecordName | null | undefined, ) => Array = (routeList, path, name) => { for (let index = 0; index < routeList.length; index++) { const route = routeList[index] if (name === route.name && path === route.path) { return route.children || [] } if (route.children && route.children.length > 0) { const result = getChildRouteList(route.children, path, name) if (result && result?.length > 0) { return result } } } return [] } export default router