getMenu.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. import router from './router'
  2. import store from './store'
  3. import { Message } from 'element-ui'
  4. import NProgress from 'nprogress' // progress bar
  5. import 'nprogress/nprogress.css' // progress bar style
  6. import { getToken } from '@/utils/auth' // get token from cookie
  7. import getPageTitle from '@/utils/get-page-title'
  8. import Layout from '@/layout'
  9. import { setTree, listToTree } from '@/utils/validate'
  10. import * as _ from 'lodash'
  11. NProgress.configure({ showSpinner: false }) // NProgress Configuration
  12. const whiteList = ['/login'] // no redirect whitelist
  13. function setStaticRoutes (menus, staticRoutes) {
  14. staticRoutes.forEach(route => {
  15. const routeIndex = menus.findIndex(
  16. permissionRoute => permissionRoute.name === route.name
  17. )
  18. if (routeIndex > -1) {
  19. menus[routeIndex] = {
  20. ...menus[routeIndex],
  21. component: route.component,
  22. children: route.children,
  23. }
  24. }
  25. })
  26. }
  27. router.beforeEach(async (to, from, next) => {
  28. // start progress bar
  29. NProgress.start()
  30. // set page title
  31. document.title = getPageTitle(to.meta.title)
  32. // determine whether the user has logged in
  33. const hasToken = getToken()
  34. if (hasToken) {
  35. if (to.path === '/login') {
  36. // if is logged in, redirect to the home page
  37. next({ path: '/' })
  38. NProgress.done()
  39. } else {
  40. const hasRoles = store.getters.roles && store.getters.roles.length > 0
  41. if (hasRoles) {
  42. next()
  43. } else {
  44. try {
  45. const treeData = await store.dispatch('user/getMenuInfo')
  46. const nd = treeData.filter(item => item.auth_id)
  47. store.dispatch('auth/changeAuthArrs', nd)
  48. // const typeData = setType(treeData, 'up_auth_id', 'auth_id')
  49. const menusArray = parseMenuItem(nd)
  50. const treeMenu = listToTree(menusArray, 'up_auth_id', 'auth_id')
  51. const dataMenu = _.unionBy(treeMenu, 'auth_id')
  52. const ndatamenu = dataMenu.filter(item => item.auth_id == 212)
  53. if (ndatamenu?.length) {
  54. const nitemchild = ndatamenu[0].children || []
  55. nitemchild.map(item => {
  56. item.meta.keepAlive = true
  57. })
  58. }
  59. const menus = parseMenu(dataMenu)
  60. if (PLATFROM_CONFIG.hasStaticRoutes) {
  61. const staticRoutes = await (await import('@/router/routes/routes-file-temp')).default
  62. setStaticRoutes(menus, staticRoutes)
  63. }
  64. store.dispatch('permission/setRoutes', menus)
  65. router.addRoutes(menus)
  66. next({ ...to, replace: true })
  67. } catch (error) {
  68. // remove token and go to login page to re-login
  69. await store.dispatch('user/resetToken')
  70. Message.error(error || 'Has Error')
  71. next(`/login?redirect=${to.path}`)
  72. NProgress.done()
  73. }
  74. }
  75. }
  76. } else {
  77. /* has no token*/
  78. if (whiteList.indexOf(to.path) !== -1) {
  79. // in the free login whitelist, go directly
  80. next()
  81. } else {
  82. // other pages that do not have permission to access are redirected to the login page.
  83. next(`/login?redirect=${to.path}`)
  84. NProgress.done()
  85. }
  86. }
  87. })
  88. function parseMenuItem (arr) {
  89. const menus = []
  90. const data = _.cloneDeep(arr)
  91. data.map(item => {
  92. if (item.auth_type == 1) {
  93. const routeParm = {
  94. auth_id: item.auth_id,
  95. up_auth_id: item.up_auth_id,
  96. path: item.route_info,
  97. name: item.auth_ident,
  98. meta: {
  99. title: item.auth_name,
  100. elSvgIcon: item.show_icon ?? 'Fold',
  101. show_index: item.show_index,
  102. qid: item.queryTemplateID,
  103. keepAlive: true
  104. },
  105. component: Layout,
  106. hidden: !item.is_show,
  107. }
  108. menus.push(routeParm)
  109. } else if (item.auth_type == 2) {
  110. const routeParm = {
  111. auth_id: item.auth_id,
  112. up_auth_id: item.up_auth_id,
  113. path: item.route_info,
  114. name: item.auth_ident,
  115. meta: {
  116. title: item.auth_name,
  117. elSvgIcon: item.show_icon ?? 'Fold',
  118. show_index: item.show_index,
  119. qid: item.queryTemplateID,
  120. auth_id: item.auth_id,
  121. up_auth_id: item.up_auth_id
  122. },
  123. component: resolve => require(['@/views' + item.file_link], resolve),
  124. // component: () => import('./views/table/index.vue'),
  125. hidden: !item.is_show,
  126. }
  127. if (item.auth_ident == 'search_page') {
  128. routeParm.meta['keepAlive'] = true
  129. }
  130. menus.push(routeParm)
  131. }
  132. })
  133. return menus
  134. }
  135. function setType (arr, parentKey, key) {
  136. const datas = []
  137. for (let i = 0; i < arr.length; i++) {
  138. for (let j = 0; j < arr.length; j++) {
  139. if (arr[i][key] == arr[j][parentKey]) {
  140. if (arr[j].auth_type == 3) {
  141. datas.push(arr[j])
  142. arr[i].other = datas
  143. }
  144. }
  145. }
  146. }
  147. return arr
  148. }
  149. function parseMenu (arr) {
  150. const menus = arr
  151. const newMenus = menus.flat()
  152. const allMenus = newMenus.length
  153. ? newMenus.sort((a, b) => a.meta.show_index - b.meta.show_index)
  154. : []
  155. // allMenus.map(item => {
  156. // item.children = (item.children && item.children.length) ? item.children.sort((a, b) => a.meta.show_index - b.meta.show_index) : item.children
  157. // })
  158. allMenus.push({
  159. path: '/:pathMatch(.*)',
  160. redirect: '/404',
  161. hidden: true,
  162. })
  163. // if (allMenus[0].children && allMenus[0].children.length) {
  164. // allMenus[0].redirect = allMenus[0].children[0].path
  165. // allMenus[0].path = '/'
  166. // } else {
  167. // allMenus[0].redirect = allMenus[0].path
  168. // allMenus[0].path = '/'
  169. // }
  170. return allMenus
  171. }
  172. router.afterEach(() => {
  173. // finish progress bar
  174. NProgress.done()
  175. })