feat(components): 变更面包屑动态生成

BREAKING CHANGE:
动态生成+动态路径
This commit is contained in:
Coffee-crocodile 2022-08-18 14:39:33 +08:00
parent 8a24e76d00
commit b2a9425a45
3 changed files with 36 additions and 26 deletions

View File

@ -1,6 +1,6 @@
<template>
<n-layout has-sider class="wh-full">
<n-layout-sider bordered :collapsed="appStore.collapsed" :collapsed-width="64" collapse-mode="width">
<n-layout-sider bordered :collapsed="appStore.collapsed" :collapsed-width="64" collapse-mode="width" :width="220">
<Logo />
<Menu />
</n-layout-sider>

View File

@ -1,6 +1,6 @@
<template>
<n-breadcrumb class="px-4">
<n-breadcrumb-item v-for="(item, index) in routes" :key="index">
<n-breadcrumb-item v-for="(item, index) in routes" :key="index" @click="routerPush(item.path)">
<e-icon :icon="item.meta.icon" />
{{ item.meta.title }}
</n-breadcrumb-item>
@ -10,15 +10,14 @@
<script setup lang="ts">
import { computed } from 'vue';
import { useRouter } from 'vue-router';
import { useRouteStore } from '~/src/store';
import { useRouteStore } from '@/store';
import { useAppRouter } from '@/hook';
const router = useRouter();
const routeStore = useRouteStore();
const { routerPush } = useAppRouter();
const routes = computed(() => {
// return routeStore.createBreadcrumbInRoutes(router.currentRoute.value.name, routeStore.userRoutes);
return router.currentRoute.value.matched.filter((item) => {
return item.meta.title;
});
return routeStore.createBreadcrumbFromRoutes(router.currentRoute.value.name as string, routeStore.userRoutes);
});
</script>

View File

@ -30,26 +30,37 @@ export const useRouteStore = defineStore('route-store', {
router.removeRoute('appRoot');
},
/* 根据当前路由的name生成面包屑数据 */
createBreadcrumbInRoutes(name = '/', userRoutes: AppRoute.Route[]) {
return userRoutes.filter((item) => {
if (item.name === name) {
return true;
}
if (item.children) {
return this.hasNameInBreadcrumbsChildren(name, item.children);
}
});
createBreadcrumbFromRoutes(routeName = '/', userRoutes: AppRoute.Route[]) {
const path: AppRoute.Route[] = [];
// 筛选所有包含目标的各级路由组合成一维数组
const getPathfromRoutes = (routeName: string, userRoutes: AppRoute.Route[]) => {
userRoutes.forEach((item) => {
if (this.hasPathinAllPath(routeName, item)) {
path.push(item);
if (item.children && item.children.length !== 0) {
getPathfromRoutes(routeName, item.children);
}
}
});
};
getPathfromRoutes(routeName, userRoutes);
return path;
},
/* 判断子路由中是否存在为name的路由 */
hasNameInBreadcrumbsChildren(name: string, userRoutes: AppRoute.Route[]): boolean {
return userRoutes.some((item) => {
if (item.name === name) {
return true;
}
if (item.children) {
return this.hasNameInBreadcrumbsChildren(name, item.children);
}
});
/* 判断当前路由和子路由中是否存在为routeName的路由 */
hasPathinAllPath(routeName: string, userRoutes: AppRoute.Route) {
if (userRoutes.name === routeName) {
return true;
}
if (userRoutes.children && userRoutes.children.length !== 0) {
const arr: boolean[] = [];
userRoutes.children.forEach((item) => {
arr.push(this.hasPathinAllPath(routeName, item));
});
return arr.some((item) => {
return item;
});
}
return false;
},
/* 设置当前高亮的菜单key */
setActiveMenu(key: string) {