鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import type { RouteLocationNormalized, Router, RouteRecordNormalized } from 'vue-router'
H 2 import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
3 import { isUrl } from '@/utils/is'
4 import { cloneDeep, omit } from 'lodash-es'
5 import qs from 'qs'
6
7 const modules = import.meta.glob('../views/**/*.{vue,tsx}')
8 /**
9  * 注册一个异步组件
10  * @param componentPath 例:/bpm/oa/leave/detail
11  */
12 export const registerComponent = (componentPath: string) => {
13   for (const item in modules) {
14     if (item.includes(componentPath)) {
15       // 使用异步组件的方式来动态加载组件
16       // @ts-ignore
17       return defineAsyncComponent(modules[item])
18     }
19   }
20 }
21 /* Layout */
22 export const Layout = () => import('@/layout/Layout.vue')
23
24 export const getParentLayout = () => {
25   return () =>
26     new Promise((resolve) => {
27       resolve({
28         name: 'ParentLayout'
29       })
30     })
31 }
32
33 // 按照路由中meta下的rank等级升序来排序路由
34 export const ascending = (arr: any[]) => {
35   arr.forEach((v) => {
36     if (v?.meta?.rank === null) v.meta.rank = undefined
37     if (v?.meta?.rank === 0) {
38       if (v.name !== 'home' && v.path !== '/') {
39         console.warn('rank only the home page can be 0')
40       }
41     }
42   })
43   return arr.sort((a: { meta: { rank: number } }, b: { meta: { rank: number } }) => {
44     return a?.meta?.rank - b?.meta?.rank
45   })
46 }
47
48 export const getRawRoute = (route: RouteLocationNormalized): RouteLocationNormalized => {
49   if (!route) return route
50   const { matched, ...opt } = route
51   return {
52     ...opt,
53     matched: (matched
54       ? matched.map((item) => ({
55           meta: item.meta,
56           name: item.name,
57           path: item.path
58         }))
59       : undefined) as RouteRecordNormalized[]
60   }
61 }
62
63 // 后端控制路由生成
64 export const generateRoute = (routes: AppCustomRouteRecordRaw[]): AppRouteRecordRaw[] => {
65   const res: AppRouteRecordRaw[] = []
66   const modulesRoutesKeys = Object.keys(modules)
67   for (const route of routes) {
68     // 1. 生成 meta 菜单元数据
69     const meta = {
70       title: route.name,
71       icon: route.icon,
72       hidden: !route.visible,
73       noCache: !route.keepAlive,
74       alwaysShow:
75         route.children &&
76         route.children.length === 1 &&
77         (route.alwaysShow !== undefined ? route.alwaysShow : true)
78     } as any
79     // 特殊逻辑:如果后端配置的 MenuDO.component 包含 ?,则表示需要传递参数
80     // 此时,我们需要解析参数,并且将参数放到 meta.query 中
81     // 这样,后续在 Vue 文件中,可以通过 const { currentRoute } = useRouter() 中,通过 meta.query 获取到参数
82     if (route.component && route.component.indexOf('?') > -1) {
83       const query = route.component.split('?')[1]
84       route.component = route.component.split('?')[0]
85       meta.query = qs.parse(query)
86     }
87
88     // 2. 生成 data(AppRouteRecordRaw)
89     // 路由地址转首字母大写驼峰,作为路由名称,适配keepAlive
90     let data: AppRouteRecordRaw = {
91       path: route.path.indexOf('?') > -1 ? route.path.split('?')[0] : route.path,
92       name:
93         route.componentName && route.componentName.length > 0
94           ? route.componentName
95           : toCamelCase(route.path, true),
96       redirect: route.redirect,
97       meta: meta
98     }
99     //处理顶级非目录路由
100     if (!route.children && route.parentId == 0 && route.component) {
101       data.component = Layout
102       data.meta = {}
103       data.name = toCamelCase(route.path, true) + 'Parent'
104       data.redirect = ''
105       meta.alwaysShow = true
106       const childrenData: AppRouteRecordRaw = {
107         path: '',
108         name:
109           route.componentName && route.componentName.length > 0
110             ? route.componentName
111             : toCamelCase(route.path, true),
112         redirect: route.redirect,
113         meta: meta
114       }
115       const index = route?.component
116         ? modulesRoutesKeys.findIndex((ev) => ev.includes(route.component))
117         : modulesRoutesKeys.findIndex((ev) => ev.includes(route.path))
118       childrenData.component = modules[modulesRoutesKeys[index]]
119       data.children = [childrenData]
120     } else {
121       // 目录
122       if (route.children) {
123         data.component = Layout
124         data.redirect = getRedirect(route.path, route.children)
125         // 外链
126       } else if (isUrl(route.path)) {
127         data = {
128           path: '/external-link',
129           component: Layout,
130           meta: {
131             name: route.name
132           },
133           children: [data]
134         } as AppRouteRecordRaw
135         // 菜单
136       } else {
137         // 对后端传component组件路径和不传做兼容(如果后端传component组件路径,那么path可以随便写,如果不传,component组件路径会根path保持一致)
138         const index = route?.component
139           ? modulesRoutesKeys.findIndex((ev) => ev.includes(route.component))
140           : modulesRoutesKeys.findIndex((ev) => ev.includes(route.path))
141         data.component = modules[modulesRoutesKeys[index]]
142       }
143       if (route.children) {
144         data.children = generateRoute(route.children)
145       }
146     }
147     res.push(data as AppRouteRecordRaw)
148   }
149   return res
150 }
151 export const getRedirect = (parentPath: string, children: AppCustomRouteRecordRaw[]) => {
152   if (!children || children.length == 0) {
153     return parentPath
154   }
155   const path = generateRoutePath(parentPath, children[0].path)
156   // 递归子节点
157   if (children[0].children) return getRedirect(path, children[0].children)
158 }
159 const generateRoutePath = (parentPath: string, path: string) => {
160   if (parentPath.endsWith('/')) {
161     parentPath = parentPath.slice(0, -1) // 移除默认的 /
162   }
163   if (!path.startsWith('/')) {
164     path = '/' + path
165   }
166   return parentPath + path
167 }
168 export const pathResolve = (parentPath: string, path: string) => {
169   if (isUrl(path)) return path
170   const childPath = path.startsWith('/') || !path ? path : `/${path}`
171   return `${parentPath}${childPath}`.replace(/\/\//g, '/')
172 }
173
174 // 路由降级
175 export const flatMultiLevelRoutes = (routes: AppRouteRecordRaw[]) => {
176   const modules: AppRouteRecordRaw[] = cloneDeep(routes)
177   for (let index = 0; index < modules.length; index++) {
178     const route = modules[index]
179     if (!isMultipleRoute(route)) {
180       continue
181     }
182     promoteRouteLevel(route)
183   }
184   return modules
185 }
186
187 // 层级是否大于2
188 const isMultipleRoute = (route: AppRouteRecordRaw) => {
189   if (!route || !Reflect.has(route, 'children') || !route.children?.length) {
190     return false
191   }
192
193   const children = route.children
194
195   let flag = false
196   for (let index = 0; index < children.length; index++) {
197     const child = children[index]
198     if (child.children?.length) {
199       flag = true
200       break
201     }
202   }
203   return flag
204 }
205
206 // 生成二级路由
207 const promoteRouteLevel = (route: AppRouteRecordRaw) => {
208   let router: Router | null = createRouter({
209     routes: [route as RouteRecordRaw],
210     history: createWebHashHistory()
211   })
212
213   const routes = router.getRoutes()
214   addToChildren(routes, route.children || [], route)
215   router = null
216
217   route.children = route.children?.map((item) => omit(item, 'children'))
218 }
219
220 // 添加所有子菜单
221 const addToChildren = (
222   routes: RouteRecordNormalized[],
223   children: AppRouteRecordRaw[],
224   routeModule: AppRouteRecordRaw
225 ) => {
226   for (let index = 0; index < children.length; index++) {
227     const child = children[index]
228     const route = routes.find((item) => item.name === child.name)
229     if (!route) {
230       continue
231     }
232     routeModule.children = routeModule.children || []
233     if (!routeModule.children.find((item) => item.name === route.name)) {
234       routeModule.children?.push(route as unknown as AppRouteRecordRaw)
235     }
236     if (child.children?.length) {
237       addToChildren(routes, child.children, routeModule)
238     }
239   }
240 }
241 const toCamelCase = (str: string, upperCaseFirst: boolean) => {
242   str = (str || '')
243     .replace(/-(.)/g, function (group1: string) {
244       return group1.toUpperCase()
245     })
246     .replaceAll('-', '')
247
248   if (upperCaseFirst && str) {
249     str = str.charAt(0).toUpperCase() + str.slice(1)
250   }
251
252   return str
253 }