index.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import type { RouteRecordRaw } from 'vue-router';
  2. import type { App } from 'vue';
  3. import { createRouter, createWebHashHistory, createWebHistory } from 'vue-router';
  4. import { basicRoutes } from './routes';
  5. // 白名单应该包含基本静态路由
  6. const WHITE_NAME_LIST: string[] = [];
  7. const getRouteNames = (array: any[]) =>
  8. array.forEach((item) => {
  9. WHITE_NAME_LIST.push(item.name);
  10. getRouteNames(item.children || []);
  11. });
  12. getRouteNames(basicRoutes);
  13. // app router
  14. export const router = createRouter({
  15. history: createWebHistory(import.meta.env.VITE_PUBLIC_PATH),
  16. routes: basicRoutes as unknown as RouteRecordRaw[],
  17. strict: true,
  18. scrollBehavior: () => ({ left: 0, top: 0 }),
  19. });
  20. // TODO 【QQYUN-4517】【表单设计器】记录分享路由守卫测试
  21. router.beforeEach(async (to, from, next) => {
  22. debugger;
  23. //console.group('【QQYUN-4517】beforeEach');
  24. //console.warn('from', from);
  25. //console.warn('to', to);
  26. //console.groupEnd();
  27. next();
  28. });
  29. // reset router
  30. export function resetRouter() {
  31. router.getRoutes().forEach((route) => {
  32. const { name } = route;
  33. if (name && !WHITE_NAME_LIST.includes(name as string)) {
  34. router.hasRoute(name) && router.removeRoute(name);
  35. }
  36. });
  37. }
  38. // config router
  39. export function setupRouter(app: App<Element>) {
  40. app.use(router);
  41. }