permission.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import router, { asyncRoutes } from '@/router'
  2. import settings from './settings'
  3. import { getToken, setToken, TokenKey } from '@/utils/auth'
  4. import NProgress from 'nprogress'
  5. NProgress.configure({ showSpinner: false }) // NProgress Configuration
  6. import 'nprogress/nprogress.css'
  7. import getPageTitle from '@/utils/getPageTitle'
  8. import { RouterRowTy } from '~/router'
  9. import { useUserStore } from '@/store/user'
  10. import { usePermissionStore } from '@/store/permission'
  11. const whiteList = ['/login', '/404', '/401'] // no redirect whitelist
  12. router.beforeEach(async (to: any, from, next: any) => {
  13. // start progress bar
  14. if (settings.isNeedNprogress) NProgress.start()
  15. // set page title
  16. document.title = getPageTitle(to.meta.title)
  17. if (!settings.isNeedLogin) setToken(TokenKey, settings.tmpToken)
  18. const hasToken: string | null = getToken(TokenKey)
  19. const userStore = useUserStore()
  20. const permissionStore = usePermissionStore()
  21. if (hasToken) {
  22. if (to.path === '/login') {
  23. // if is logged in, redirect to the home page
  24. next({ path: '/' })
  25. } else {
  26. //judge isGetUserInfo
  27. const isGetUserInfo: boolean = permissionStore.isGetUserInfo
  28. if (isGetUserInfo) {
  29. next()
  30. } else {
  31. try {
  32. let accessRoutes: any = []
  33. if (settings.isNeedLogin) {
  34. // get user info
  35. // note: roles must be a object array! such as: ['admin'] or ,['developer','editor']
  36. const { roles }: any = await userStore.getInfo()
  37. accessRoutes = await permissionStore.generateRoutes(roles)
  38. } else {
  39. accessRoutes = asyncRoutes
  40. }
  41. // setting constRouters and accessRoutes to vuex , in order to sideBar for using
  42. permissionStore.M_routes(accessRoutes)
  43. // dynamically add accessible routes
  44. //router4 addRoutes destroyed
  45. accessRoutes.forEach((route: RouterRowTy) => {
  46. if (route.path === '/dashboard') {
  47. const childRoute = route.children![0]
  48. childRoute.redirect = childRoute.children?.length
  49. ? childRoute.children[0].path
  50. : '/404'
  51. }
  52. router.addRoute(route)
  53. })
  54. //already get userInfo
  55. permissionStore.M_isGetUserInfo(true)
  56. // hack method to ensure that addRoutes is complete
  57. // set the replace: true, so the navigation will not leave a history record
  58. next({ ...to, replace: true })
  59. } catch (err) {
  60. await userStore.resetState()
  61. next(`/login?redirect=${to.path}`)
  62. if (settings.isNeedNprogress) NProgress.done()
  63. }
  64. }
  65. }
  66. } else {
  67. if (whiteList.indexOf(to.path) !== -1) {
  68. next()
  69. } else {
  70. next(`/login?redirect=${to.path}`)
  71. if (settings.isNeedNprogress) NProgress.done()
  72. }
  73. }
  74. })
  75. router.afterEach(() => {
  76. if (settings.isNeedNprogress) NProgress.done()
  77. })