|
@@ -1,79 +1,89 @@
|
|
|
-import router from './router'
|
|
|
-import store from './store'
|
|
|
-// import { Message } from 'element-ui'
|
|
|
-import NProgress from 'nprogress' // progress bar
|
|
|
-import 'nprogress/nprogress.css' // progress bar style
|
|
|
-import { getToken } from '@/utils/auth' // get token from cookie
|
|
|
-import getPageTitle from '@/utils/get-page-title'
|
|
|
+import router from "./router";
|
|
|
+import store from "./store";
|
|
|
+import { Message } from "element-ui";
|
|
|
+import NProgress from "nprogress"; // progress bar
|
|
|
+import "nprogress/nprogress.css"; // progress bar style
|
|
|
+import { getToken } from "@/utils/auth"; // get token from cookie
|
|
|
+import getPageTitle from "@/utils/get-page-title";
|
|
|
|
|
|
-NProgress.configure({ showSpinner: false }) // NProgress Configuration
|
|
|
+NProgress.configure({ showSpinner: false }); // NProgress Configuration
|
|
|
|
|
|
-const whiteList = ['/login', '/auth-redirect'] // no redirect whitelist
|
|
|
+const whiteList = ["/login"]; // no redirect whitelist
|
|
|
|
|
|
-router.beforeEach(async(to, from, next) => {
|
|
|
+function initRedirect(routes,curPath){
|
|
|
+ for(let item of routes){
|
|
|
+ console.log(item.path);
|
|
|
+ if(item.redirect !==null){
|
|
|
+ if(item.children && item.children.length>0)
|
|
|
+ item.redirect = curPath === "" ? item.path+"/"+ item.children[0].path : curPath+"/"+item.path+"/"+ item.children[0].path;
|
|
|
+ }
|
|
|
+ if(item.children)
|
|
|
+ initRedirect(item.children,curPath === "" ? item.path : curPath+"/"+item.path);
|
|
|
+ }
|
|
|
+ return routes;
|
|
|
+}
|
|
|
+
|
|
|
+router.beforeEach(async (to, from, next) => {
|
|
|
// start progress bar
|
|
|
- NProgress.start()
|
|
|
+ NProgress.start();
|
|
|
|
|
|
// set page title
|
|
|
- document.title = getPageTitle(to.meta.title)
|
|
|
+ document.title = getPageTitle(to.meta.title);
|
|
|
|
|
|
// determine whether the user has logged in
|
|
|
- const hasToken = getToken()
|
|
|
+ const hasToken = getToken();
|
|
|
|
|
|
if (hasToken) {
|
|
|
- if (to.path === '/login') {
|
|
|
+ if (to.path === "/login") {
|
|
|
// if is logged in, redirect to the home page
|
|
|
- next({ path: '/' })
|
|
|
- NProgress.done()
|
|
|
+ next({ path: "/" });
|
|
|
+ NProgress.done();
|
|
|
} else {
|
|
|
- // 这里敲重点
|
|
|
- const accessRoutes = await store.dispatch('permission/generateRoutes', [])
|
|
|
- router.addRoutes(accessRoutes)
|
|
|
- next()
|
|
|
- // determine whether the user has obtained his permission roles through getInfo
|
|
|
- // const hasRoles = store.getters.roles && store.getters.roles.length > 0
|
|
|
- // next()
|
|
|
- // if (hasRoles) {
|
|
|
- // next()
|
|
|
- // } else {
|
|
|
- // try {
|
|
|
- // // get user info
|
|
|
- // // note: roles must be a object array! such as: ['admin'] or ,['developer','editor']
|
|
|
- // const { roles } = await store.dispatch('user/getRoles')
|
|
|
+ // const hasUserId = store.getters.userId;
|
|
|
+ // const hasGetUserInfo = store.getters.name;
|
|
|
+ const hasPermissions =
|
|
|
+ store.getters.permissions && store.getters.permissions.length > 0;
|
|
|
+ if (hasPermissions) {
|
|
|
+ next();
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ if (!hasPermissions) {
|
|
|
+ const permissions = await store.dispatch("user/getPermissions");
|
|
|
+ let accessRoutes = await store.dispatch(
|
|
|
+ "permission/generateRoutes",
|
|
|
+ permissions
|
|
|
+ );
|
|
|
+ router.addRoutes(accessRoutes);
|
|
|
+ next({ ...to, replace: true });
|
|
|
+ } else {
|
|
|
+ next();
|
|
|
+ }
|
|
|
|
|
|
- // // generate accessible routes map based on roles
|
|
|
- // const accessRoutes = await store.dispatch('permission/generateRoutes', roles)
|
|
|
-
|
|
|
- // // dynamically add accessible routes
|
|
|
- // router.addRoutes(accessRoutes)
|
|
|
-
|
|
|
- // // hack method to ensure that addRoutes is complete
|
|
|
- // // set the replace: true, so the navigation will not leave a history record
|
|
|
- // next({ ...to, replace: true })
|
|
|
- // } catch (error) {
|
|
|
- // // remove token and go to login page to re-login
|
|
|
- // await store.dispatch('user/resetToken')
|
|
|
- // Message.error(error || 'Has Error')
|
|
|
- // next(`/login?redirect=${to.path}`)
|
|
|
- // NProgress.done()
|
|
|
- // }
|
|
|
- // }
|
|
|
+ NProgress.done();
|
|
|
+ } catch (error) {
|
|
|
+ // remove token and go to login page to re-login
|
|
|
+ await store.dispatch("user/resetToken");
|
|
|
+ Message.error(error || "Has Error");
|
|
|
+ next(`/login?redirect=${to.path}`);
|
|
|
+ NProgress.done();
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
/* has no token*/
|
|
|
-
|
|
|
if (whiteList.indexOf(to.path) !== -1) {
|
|
|
// in the free login whitelist, go directly
|
|
|
- next()
|
|
|
+ next();
|
|
|
} else {
|
|
|
// other pages that do not have permission to access are redirected to the login page.
|
|
|
- next(`/login?redirect=${to.path}`)
|
|
|
- NProgress.done()
|
|
|
+ next(`/login?redirect=${to.path}`);
|
|
|
+ // next();
|
|
|
+ NProgress.done();
|
|
|
}
|
|
|
}
|
|
|
-})
|
|
|
+});
|
|
|
|
|
|
router.afterEach(() => {
|
|
|
// finish progress bar
|
|
|
- NProgress.done()
|
|
|
-})
|
|
|
+ NProgress.done();
|
|
|
+});
|