2021-08-11 15:44:50 +08:00
|
|
|
import router from './router'
|
|
|
|
import store from './store'
|
|
|
|
import storage from 'store'
|
|
|
|
import NProgress from 'nprogress' // progress bar
|
|
|
|
import '@/components/NProgress/nprogress.less' // progress bar custom style
|
|
|
|
import { setDocumentTitle, domTitle } from '@/utils/domUtil'
|
2021-08-19 09:01:06 +08:00
|
|
|
import { LOGIN_TOKEN } from '@/store/mutation-types'
|
2021-08-11 15:44:50 +08:00
|
|
|
import { i18nRender } from '@/locales'
|
|
|
|
|
|
|
|
NProgress.configure({ showSpinner: false }) // NProgress Configuration
|
|
|
|
|
2021-08-19 09:01:06 +08:00
|
|
|
const whiteList = ['login'] // no redirect whitelist
|
2021-08-11 15:44:50 +08:00
|
|
|
const loginRoutePath = '/user/login'
|
|
|
|
const defaultRoutePath = '/dashboard/workplace'
|
|
|
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
NProgress.start() // start progress bar
|
|
|
|
to.meta && (typeof to.meta.title !== 'undefined' && setDocumentTitle(`${i18nRender(to.meta.title)} - ${domTitle}`))
|
2021-08-19 09:01:06 +08:00
|
|
|
if (storage.get(LOGIN_TOKEN)) {
|
2021-08-11 15:44:50 +08:00
|
|
|
if (to.path === loginRoutePath) {
|
|
|
|
next({ path: defaultRoutePath })
|
|
|
|
NProgress.done()
|
|
|
|
} else {
|
2021-08-19 09:01:06 +08:00
|
|
|
if (store.getters.addRouters.length === 0) {
|
|
|
|
store.dispatch('GenerateRoutes').then(() => {
|
|
|
|
router.addRoutes(store.getters.addRouters)
|
|
|
|
const redirect = decodeURIComponent(from.query.redirect || to.path)
|
|
|
|
if (to.path === redirect) {
|
|
|
|
next({ ...to, replace: true })
|
|
|
|
} else {
|
|
|
|
next({ path: redirect })
|
|
|
|
}
|
|
|
|
}, () => {
|
|
|
|
NProgress.done()
|
|
|
|
})
|
2021-08-11 15:44:50 +08:00
|
|
|
} else {
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (whiteList.includes(to.name)) {
|
|
|
|
next()
|
|
|
|
} else {
|
|
|
|
next({ path: loginRoutePath, query: { redirect: to.fullPath } })
|
|
|
|
NProgress.done() // if current page is login will not trigger afterEach hook, so manually handle it
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
router.afterEach(() => {
|
|
|
|
NProgress.done() // finish progress bar
|
|
|
|
})
|