utils.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. import {
  2. RouterHistory,
  3. RouteRecordRaw,
  4. RouteComponent,
  5. createWebHistory,
  6. createWebHashHistory,
  7. RouteRecordNormalized
  8. } from "vue-router";
  9. import { router } from "./index";
  10. import { isProxy, toRaw } from "vue";
  11. import { loadEnv } from "../../build";
  12. import { useTimeoutFn } from "@vueuse/core";
  13. import { RouteConfigs } from "@/layout/types";
  14. import {
  15. isString,
  16. cloneDeep,
  17. isAllEmpty,
  18. intersection,
  19. storageSession,
  20. isIncludeAllChildren
  21. } from "@pureadmin/utils";
  22. import { getConfig } from "@/config";
  23. import { buildHierarchyTree } from "@/utils/tree";
  24. import { sessionKey, type DataInfo } from "@/utils/auth";
  25. import { usePermissionStoreHook } from "@/store/modules/permission";
  26. const IFrame = () => import("@/layout/frameView.vue");
  27. // https://cn.vitejs.dev/guide/features.html#glob-import
  28. const modulesRoutes = import.meta.glob("/src/views/**/*.{vue,tsx}");
  29. // 动态路由
  30. import { getAsyncRoutes } from "@/api/routes";
  31. function handRank(routeInfo: any) {
  32. const { name, path, parentId, meta } = routeInfo;
  33. return isAllEmpty(parentId)
  34. ? isAllEmpty(meta?.rank) ||
  35. (meta?.rank === 0 && name !== "Home" && path !== "/")
  36. ? true
  37. : false
  38. : false;
  39. }
  40. /** 按照路由中meta下的rank等级升序来排序路由 */
  41. function ascending(arr: any[]) {
  42. arr.forEach((v, index) => {
  43. // 当rank不存在时,根据顺序自动创建,首页路由永远在第一位
  44. if (handRank(v)) v.meta.rank = index + 2;
  45. });
  46. return arr.sort(
  47. (a: { meta: { rank: number } }, b: { meta: { rank: number } }) => {
  48. return a?.meta.rank - b?.meta.rank;
  49. }
  50. );
  51. }
  52. /** 过滤meta中showLink为false的菜单 */
  53. function filterTree(data: RouteComponent[]) {
  54. const newTree = cloneDeep(data).filter(
  55. (v: { meta: { showLink: boolean } }) => v.meta?.showLink !== false
  56. );
  57. newTree.forEach(
  58. (v: { children }) => v.children && (v.children = filterTree(v.children))
  59. );
  60. return newTree;
  61. }
  62. /** 过滤children长度为0的的目录,当目录下没有菜单时,会过滤此目录,目录没有赋予roles权限,当目录下只要有一个菜单有显示权限,那么此目录就会显示 */
  63. function filterChildrenTree(data: RouteComponent[]) {
  64. const newTree = cloneDeep(data).filter((v: any) => v?.children?.length !== 0);
  65. newTree.forEach(
  66. (v: { children }) => v.children && (v.children = filterTree(v.children))
  67. );
  68. return newTree;
  69. }
  70. /** 判断两个数组彼此是否存在相同值 */
  71. function isOneOfArray(a: Array<string>, b: Array<string>) {
  72. return Array.isArray(a) && Array.isArray(b)
  73. ? intersection(a, b).length > 0
  74. ? true
  75. : false
  76. : true;
  77. }
  78. /** 从sessionStorage里取出当前登陆用户的角色roles,过滤无权限的菜单 */
  79. function filterNoPermissionTree(data: RouteComponent[]) {
  80. const currentRoles =
  81. storageSession().getItem<DataInfo<number>>(sessionKey)?.roles ?? [];
  82. const newTree = cloneDeep(data).filter((v: any) =>
  83. isOneOfArray(v.meta?.roles, currentRoles)
  84. );
  85. newTree.forEach(
  86. (v: any) => v.children && (v.children = filterNoPermissionTree(v.children))
  87. );
  88. return filterChildrenTree(newTree);
  89. }
  90. /** 批量删除缓存路由(keepalive) */
  91. function delAliveRoutes(delAliveRouteList: Array<RouteConfigs>) {
  92. delAliveRouteList.forEach(route => {
  93. usePermissionStoreHook().cacheOperate({
  94. mode: "delete",
  95. name: route?.name
  96. });
  97. });
  98. }
  99. /** 通过path获取父级路径 */
  100. function getParentPaths(path: string, routes: RouteRecordRaw[]) {
  101. // 深度遍历查找
  102. function dfs(routes: RouteRecordRaw[], path: string, parents: string[]) {
  103. for (let i = 0; i < routes.length; i++) {
  104. const item = routes[i];
  105. // 找到path则返回父级path
  106. if (item.path === path) return parents;
  107. // children不存在或为空则不递归
  108. if (!item.children || !item.children.length) continue;
  109. // 往下查找时将当前path入栈
  110. parents.push(item.path);
  111. if (dfs(item.children, path, parents).length) return parents;
  112. // 深度遍历查找未找到时当前path 出栈
  113. parents.pop();
  114. }
  115. // 未找到时返回空数组
  116. return [];
  117. }
  118. return dfs(routes, path, []);
  119. }
  120. /** 查找对应path的路由信息 */
  121. function findRouteByPath(path: string, routes: RouteRecordRaw[]) {
  122. let res = routes.find((item: { path: string }) => item.path == path);
  123. if (res) {
  124. return isProxy(res) ? toRaw(res) : res;
  125. } else {
  126. for (let i = 0; i < routes.length; i++) {
  127. if (
  128. routes[i].children instanceof Array &&
  129. routes[i].children.length > 0
  130. ) {
  131. res = findRouteByPath(path, routes[i].children);
  132. if (res) {
  133. return isProxy(res) ? toRaw(res) : res;
  134. }
  135. }
  136. }
  137. return null;
  138. }
  139. }
  140. function addPathMatch() {
  141. if (!router.hasRoute("pathMatch")) {
  142. router.addRoute({
  143. path: "/:pathMatch(.*)",
  144. name: "pathMatch",
  145. redirect: "/error/404"
  146. });
  147. }
  148. }
  149. /** 处理动态路由(后端返回的路由) */
  150. function handleAsyncRoutes(routeList) {
  151. if (routeList.length === 0) {
  152. usePermissionStoreHook().handleWholeMenus(routeList);
  153. } else {
  154. formatFlatteningRoutes(addAsyncRoutes(routeList)).map(
  155. (v: RouteRecordRaw) => {
  156. // 防止重复添加路由
  157. if (
  158. router.options.routes[0].children.findIndex(
  159. value => value.path === v.path
  160. ) !== -1
  161. ) {
  162. return;
  163. } else {
  164. // 切记将路由push到routes后还需要使用addRoute,这样路由才能正常跳转
  165. router.options.routes[0].children.push(v);
  166. // 最终路由进行升序
  167. ascending(router.options.routes[0].children);
  168. if (!router.hasRoute(v?.name)) router.addRoute(v);
  169. const flattenRouters: any = router
  170. .getRoutes()
  171. .find(n => n.path === "/");
  172. router.addRoute(flattenRouters);
  173. }
  174. }
  175. );
  176. usePermissionStoreHook().handleWholeMenus(routeList);
  177. }
  178. addPathMatch();
  179. }
  180. /** 初始化路由(`new Promise` 写法防止在异步请求中造成无限循环)*/
  181. function initRouter() {
  182. if (getConfig()?.CachingAsyncRoutes) {
  183. // 开启动态路由缓存本地sessionStorage
  184. const key = "async-routes";
  185. const asyncRouteList = storageSession().getItem(key) as any;
  186. if (asyncRouteList && asyncRouteList?.length > 0) {
  187. return new Promise(resolve => {
  188. handleAsyncRoutes(asyncRouteList);
  189. resolve(router);
  190. });
  191. } else {
  192. return new Promise(resolve => {
  193. getAsyncRoutes().then(({ data }) => {
  194. handleAsyncRoutes(cloneDeep(data));
  195. storageSession().setItem(key, data);
  196. resolve(router);
  197. });
  198. });
  199. }
  200. } else {
  201. return new Promise(resolve => {
  202. getAsyncRoutes().then(({ data }) => {
  203. handleAsyncRoutes(cloneDeep(data));
  204. resolve(router);
  205. });
  206. });
  207. }
  208. }
  209. /**
  210. * 将多级嵌套路由处理成一维数组
  211. * @param routesList 传入路由
  212. * @returns 返回处理后的一维路由
  213. */
  214. function formatFlatteningRoutes(routesList: RouteRecordRaw[]) {
  215. if (routesList.length === 0) return routesList;
  216. let hierarchyList = buildHierarchyTree(routesList);
  217. for (let i = 0; i < hierarchyList.length; i++) {
  218. if (hierarchyList[i].children) {
  219. hierarchyList = hierarchyList
  220. .slice(0, i + 1)
  221. .concat(hierarchyList[i].children, hierarchyList.slice(i + 1));
  222. }
  223. }
  224. return hierarchyList;
  225. }
  226. /**
  227. * 一维数组处理成多级嵌套数组(三级及以上的路由全部拍成二级,keep-alive 只支持到二级缓存)
  228. * https://github.com/xiaoxian521/vue-pure-admin/issues/67
  229. * @param routesList 处理后的一维路由菜单数组
  230. * @returns 返回将一维数组重新处理成规定路由的格式
  231. */
  232. function formatTwoStageRoutes(routesList: RouteRecordRaw[]) {
  233. if (routesList.length === 0) return routesList;
  234. const newRoutesList: RouteRecordRaw[] = [];
  235. routesList.forEach((v: RouteRecordRaw) => {
  236. if (v.path === "/") {
  237. newRoutesList.push({
  238. component: v.component,
  239. name: v.name,
  240. path: v.path,
  241. redirect: v.redirect,
  242. meta: v.meta,
  243. children: []
  244. });
  245. } else {
  246. newRoutesList[0]?.children.push({ ...v });
  247. }
  248. });
  249. return newRoutesList;
  250. }
  251. /** 处理缓存路由(添加、删除、刷新) */
  252. function handleAliveRoute(matched: RouteRecordNormalized[], mode?: string) {
  253. switch (mode) {
  254. case "add":
  255. matched.forEach(v => {
  256. usePermissionStoreHook().cacheOperate({ mode: "add", name: v.name });
  257. });
  258. break;
  259. case "delete":
  260. usePermissionStoreHook().cacheOperate({
  261. mode: "delete",
  262. name: matched[matched.length - 1].name
  263. });
  264. break;
  265. default:
  266. usePermissionStoreHook().cacheOperate({
  267. mode: "delete",
  268. name: matched[matched.length - 1].name
  269. });
  270. useTimeoutFn(() => {
  271. matched.forEach(v => {
  272. usePermissionStoreHook().cacheOperate({ mode: "add", name: v.name });
  273. });
  274. }, 100);
  275. }
  276. }
  277. /** 过滤后端传来的动态路由 重新生成规范路由 */
  278. function addAsyncRoutes(arrRoutes: Array<RouteRecordRaw>) {
  279. if (!arrRoutes || !arrRoutes.length) return;
  280. const modulesRoutesKeys = Object.keys(modulesRoutes);
  281. arrRoutes.forEach((v: RouteRecordRaw) => {
  282. // 将backstage属性加入meta,标识此路由为后端返回路由
  283. v.meta.backstage = true;
  284. // 父级的redirect属性取值:如果子级存在且父级的redirect属性不存在,默认取第一个子级的path;如果子级存在且父级的redirect属性存在,取存在的redirect属性,会覆盖默认值
  285. if (v?.children && v.children.length && !v.redirect)
  286. v.redirect = v.children[0].path;
  287. // 父级的name属性取值:如果子级存在且父级的name属性不存在,默认取第一个子级的name;如果子级存在且父级的name属性存在,取存在的name属性,会覆盖默认值(注意:测试中发现父级的name不能和子级name重复,如果重复会造成重定向无效(跳转404),所以这里给父级的name起名的时候后面会自动加上`Parent`,避免重复)
  288. if (v?.children && v.children.length && !v.name)
  289. v.name = (v.children[0].name as string) + "Parent";
  290. if (v.meta?.frameSrc) {
  291. v.component = IFrame;
  292. } else {
  293. // 对后端传component组件路径和不传做兼容(如果后端传component组件路径,那么path可以随便写,如果不传,component组件路径会跟path保持一致)
  294. const index = v?.component
  295. ? modulesRoutesKeys.findIndex(ev => ev.includes(v.component as any))
  296. : modulesRoutesKeys.findIndex(ev => ev.includes(v.path));
  297. v.component = modulesRoutes[modulesRoutesKeys[index]];
  298. }
  299. if (v?.children && v.children.length) {
  300. addAsyncRoutes(v.children);
  301. }
  302. });
  303. return arrRoutes;
  304. }
  305. /** 获取路由历史模式 https://next.router.vuejs.org/zh/guide/essentials/history-mode.html */
  306. function getHistoryMode(): RouterHistory {
  307. const routerHistory = loadEnv().VITE_ROUTER_HISTORY;
  308. // len为1 代表只有历史模式 为2 代表历史模式中存在base参数 https://next.router.vuejs.org/zh/api/#%E5%8F%82%E6%95%B0-1
  309. const historyMode = routerHistory.split(",");
  310. const leftMode = historyMode[0];
  311. const rightMode = historyMode[1];
  312. // no param
  313. if (historyMode.length === 1) {
  314. if (leftMode === "hash") {
  315. return createWebHashHistory("");
  316. } else if (leftMode === "h5") {
  317. return createWebHistory("");
  318. }
  319. } //has param
  320. else if (historyMode.length === 2) {
  321. if (leftMode === "hash") {
  322. return createWebHashHistory(rightMode);
  323. } else if (leftMode === "h5") {
  324. return createWebHistory(rightMode);
  325. }
  326. }
  327. }
  328. /** 获取当前页面按钮级别的权限 */
  329. function getAuths(): Array<string> {
  330. return router.currentRoute.value.meta.auths as Array<string>;
  331. }
  332. /** 是否有按钮级别的权限 */
  333. function hasAuth(value: string | Array<string>): boolean {
  334. if (!value) return false;
  335. /** 从当前路由的`meta`字段里获取按钮级别的所有自定义`code`值 */
  336. const metaAuths = getAuths();
  337. if (!metaAuths) return false;
  338. const isAuths = isString(value)
  339. ? metaAuths.includes(value)
  340. : isIncludeAllChildren(value, metaAuths);
  341. return isAuths ? true : false;
  342. }
  343. export {
  344. hasAuth,
  345. getAuths,
  346. ascending,
  347. filterTree,
  348. initRouter,
  349. isOneOfArray,
  350. getHistoryMode,
  351. addAsyncRoutes,
  352. delAliveRoutes,
  353. getParentPaths,
  354. findRouteByPath,
  355. handleAliveRoute,
  356. formatTwoStageRoutes,
  357. formatFlatteningRoutes,
  358. filterNoPermissionTree
  359. };