12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import type { App } from 'vue'
- import type { RouteRecordRaw } from 'vue-router'
- import mainInitializeRouter from '#shared/router/index.ts'
- import type { InitializeAppRouter, RoutesModule } from '#shared/types/router.ts'
- import transitionViewGuard from './guards/before/viewTransition.ts'
- const routeModules: Record<string, RoutesModule> = import.meta.glob(
- ['../pages/*/routes.ts', '../pages/*/routes/*.ts'],
- { eager: true },
- )
- const mainRoutes: Array<RouteRecordRaw> = []
- const childRoutes: Array<RouteRecordRaw> = []
- const names = new Set<string | symbol>()
- const handleRoutes = (routes: Array<RouteRecordRaw>, isMainRoute = false) => {
- if (isMainRoute) {
- mainRoutes.push(...routes)
- } else {
- childRoutes.push(...routes)
- }
- if (import.meta.env.PROD) return
- // for debugging routes, vue-router doesn't do this automatically
- routes.forEach((route) => {
- if (!route.name) return
- if (names.has(route.name)) {
- console.error(
- `Duplicate route name: ${String(route.name)} for ${route.path}`,
- )
- } else {
- names.add(route.name)
- }
- })
- }
- Object.values(routeModules).forEach((module: RoutesModule) => {
- const defaultExport = module.default
- const { isMainRoute } = module
- handleRoutes(
- Array.isArray(defaultExport) ? defaultExport : [defaultExport],
- isMainRoute,
- )
- })
- export const routes: Array<RouteRecordRaw> = [
- ...mainRoutes,
- {
- path: '/',
- name: 'Main',
- props: true,
- component: () => import('#mobile/components/layout/LayoutMain.vue'),
- children: childRoutes,
- },
- ]
- const initializeRouter: InitializeAppRouter = (app: App) => {
- return mainInitializeRouter(app, routes, [transitionViewGuard], [], 'mobile')
- }
- export default initializeRouter
|