You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import type { Router } from 'vue-router'
import { useUserStore } from '@/stores/user'
import { removeTabChangeListener, setRouteChange } from '@/logics/mitt/routeChange'
import { useMultipleTabStore } from '@/stores/multiTabs'
// Don't change the order of creation
export function setupRouterGuard(router: Router) {
createLoginGuard(router);
createPageGuard(router);
}
function createLoginGuard(router: Router) {
const tabStore = useMultipleTabStore();
const webUser = useUserStore();
router.beforeEach((to, from, next) => {
if (webUser.getToken && to.path === '/login') {
tabStore.resetState();
webUser.resetState();
removeTabChangeListener();
next('/')
return
}
if(!webUser.getToken && to.path !== '/login') {
tabStore.resetState();
webUser.resetState();
removeTabChangeListener();
next("/login");
return;
}
next();
})
}
/**
* Hooks for handling page state
*/
function createPageGuard(router: Router) {
const loadedPageMap = new Map<string, boolean>();
router.beforeEach(async (to) => {
// The page has already been loaded, it will be faster to open it again, you dont need to do loading and other processing
to.meta.loaded = !!loadedPageMap.get(to.path);
// Notify routing changes
setRouteChange(to);
return true;
});
router.afterEach((to) => {
loadedPageMap.set(to.path, true);
});
}