mirror of
https://github.com/silenty4ng/k5web
synced 2025-04-02 13:44:57 +00:00
43 lines
1,014 B
TypeScript
43 lines
1,014 B
TypeScript
import type { Router, LocationQueryRaw } from 'vue-router';
|
|
import NProgress from 'nprogress'; // progress bar
|
|
|
|
import { useUserStore } from '@/store';
|
|
import { isLogin } from '@/utils/auth';
|
|
|
|
export default function setupUserLoginInfoGuard(router: Router) {
|
|
router.beforeEach(async (to, from, next) => {
|
|
NProgress.start();
|
|
const userStore = useUserStore();
|
|
if (isLogin()) {
|
|
if (userStore.role) {
|
|
next();
|
|
} else {
|
|
try {
|
|
await userStore.info();
|
|
next();
|
|
} catch (error) {
|
|
await userStore.logout();
|
|
next({
|
|
name: 'login',
|
|
query: {
|
|
redirect: to.name,
|
|
...to.query,
|
|
} as LocationQueryRaw,
|
|
});
|
|
}
|
|
}
|
|
} else {
|
|
if (to.name === 'login') {
|
|
next();
|
|
return;
|
|
}
|
|
next({
|
|
name: 'login',
|
|
query: {
|
|
redirect: to.name,
|
|
...to.query,
|
|
} as LocationQueryRaw,
|
|
});
|
|
}
|
|
});
|
|
}
|