mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-25 16:16:20 +08:00
75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import type { RouteRecordNormalized } from 'vue-router';
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
import { isHttpUrl, openRouteInNewWindow, openWindow } from '@vben/utils';
|
|
|
|
function useNavigation() {
|
|
const router = useRouter();
|
|
const routeMetaMap = new Map<string, RouteRecordNormalized>();
|
|
|
|
// 初始化路由映射
|
|
const initRouteMetaMap = () => {
|
|
const routes = router.getRoutes();
|
|
routes.forEach((route) => {
|
|
routeMetaMap.set(route.path, route);
|
|
});
|
|
};
|
|
|
|
initRouteMetaMap();
|
|
|
|
// 监听路由变化
|
|
router.afterEach(() => {
|
|
initRouteMetaMap();
|
|
});
|
|
|
|
// 检查是否应该在新窗口打开
|
|
const shouldOpenInNewWindow = (path: string): boolean => {
|
|
if (isHttpUrl(path)) {
|
|
return true;
|
|
}
|
|
const route = routeMetaMap.get(path);
|
|
// 如果有外链或者设置了在新窗口打开,返回 true
|
|
return !!(route?.meta?.link || route?.meta?.openInNewWindow);
|
|
};
|
|
|
|
const resolveHref = (path: string): string => {
|
|
return router.resolve(path).href;
|
|
};
|
|
|
|
const navigation = async (path: string) => {
|
|
try {
|
|
const route = routeMetaMap.get(path);
|
|
const { openInNewWindow = false, query = {}, link } = route?.meta ?? {};
|
|
|
|
// 检查是否有外链
|
|
if (link && typeof link === 'string') {
|
|
openWindow(link, { target: '_blank' });
|
|
return;
|
|
}
|
|
|
|
if (isHttpUrl(path)) {
|
|
openWindow(path, { target: '_blank' });
|
|
} else if (openInNewWindow) {
|
|
openRouteInNewWindow(resolveHref(path));
|
|
} else {
|
|
await router.push({
|
|
path,
|
|
query,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
console.error('Navigation failed:', error);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
const willOpenedByWindow = (path: string) => {
|
|
return shouldOpenInNewWindow(path);
|
|
};
|
|
|
|
return { navigation, willOpenedByWindow };
|
|
}
|
|
|
|
export { useNavigation };
|