mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-15 04:09:14 +00:00
feat: implement a breadcrumb component as navigation (#313)
This commit is contained in:
@@ -14,7 +14,26 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License. -->
|
||||
<template>
|
||||
<div class="nav-bar flex-h">
|
||||
<div class="title">{{ route.name === "ViewWidget" ? "" : appStore.pageTitle || pageName }}</div>
|
||||
<el-breadcrumb separator=">" class="title flex-h" v-if="pathNames.length">
|
||||
<el-breadcrumb-item
|
||||
v-for="(path, index) in pathNames"
|
||||
:key="index"
|
||||
:replace="true"
|
||||
:to="{ path: getName(path).path || '' }"
|
||||
>
|
||||
<el-dropdown size="small" placement="bottom" :persistent="false">
|
||||
<span class="cp name">{{ getName(path).name }}</span>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item @click="setName(p)" v-for="(p, index) in path" :key="index">
|
||||
<span>{{ p.name }}</span>
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</el-breadcrumb-item>
|
||||
</el-breadcrumb>
|
||||
<div class="title" v-else>{{ pageTitle }}</div>
|
||||
<div class="app-config">
|
||||
<span class="red" v-show="timeRange">{{ t("timeTips") }}</span>
|
||||
<TimePicker
|
||||
@@ -45,20 +64,46 @@ limitations under the License. -->
|
||||
import { useI18n } from "vue-i18n";
|
||||
import timeFormat from "@/utils/timeFormat";
|
||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||
import { ElMessage } from "element-plus";
|
||||
import { MetricCatalog } from "@/views/dashboard/data";
|
||||
import type { DashboardItem } from "@/types/dashboard";
|
||||
import router from "@/router";
|
||||
|
||||
/*global Indexable */
|
||||
const { t } = useI18n();
|
||||
const { t, te } = useI18n();
|
||||
const appStore = useAppStoreWithOut();
|
||||
const dashboardStore = useDashboardStore();
|
||||
const route = useRoute();
|
||||
const pageName = ref<string>("");
|
||||
const pathNames = ref<{ path?: string; name: string; selected: boolean }[][]>([]);
|
||||
const timeRange = ref<number>(0);
|
||||
const pageTitle = ref<string>("");
|
||||
|
||||
resetDuration();
|
||||
getVersion();
|
||||
const setConfig = (value: string) => {
|
||||
pageName.value = value || "";
|
||||
};
|
||||
getNavPaths();
|
||||
|
||||
function getName(list: any[]) {
|
||||
return list.find((d: any) => d.selected) || {};
|
||||
}
|
||||
|
||||
function setName(item: any) {
|
||||
pathNames.value = pathNames.value.map((list: { path?: string; name: string; selected: boolean }[]) => {
|
||||
const p = list.find((i: any) => i.entity === item.entity && item.layer === i.layer && i.name === item.name);
|
||||
if (p) {
|
||||
list = list.map((d: any) => {
|
||||
d.selected = false;
|
||||
if (d.entity === item.entity && item.layer === d.layer && d.name === item.name) {
|
||||
d.selected = true;
|
||||
}
|
||||
return d;
|
||||
});
|
||||
}
|
||||
|
||||
return list;
|
||||
});
|
||||
item.path && router.push(item.path);
|
||||
}
|
||||
|
||||
function handleReload() {
|
||||
const gap = appStore.duration.end.getTime() - appStore.duration.start.getTime();
|
||||
@@ -73,19 +118,138 @@ limitations under the License. -->
|
||||
}
|
||||
appStore.setDuration(timeFormat(val));
|
||||
}
|
||||
setConfig(String(route.meta.title));
|
||||
watch(
|
||||
() => route.meta.title,
|
||||
(title: unknown) => {
|
||||
setConfig(String(title));
|
||||
},
|
||||
);
|
||||
|
||||
function getNavPaths() {
|
||||
pathNames.value = [];
|
||||
pageTitle.value = "";
|
||||
const dashboard = dashboardStore.currentDashboard;
|
||||
|
||||
if (!(dashboard && dashboard.name)) {
|
||||
updateNavTitle();
|
||||
return;
|
||||
}
|
||||
const root =
|
||||
dashboardStore.dashboards.filter((d: DashboardItem) => d.isRoot && dashboard.layer === d.layer)[0] || {};
|
||||
for (const item of appStore.allMenus) {
|
||||
if (item.subItems && item.subItems.length) {
|
||||
for (const subItem of item.subItems) {
|
||||
if (subItem.layer === root.layer) {
|
||||
root.path = subItem.path;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (item.layer === root.layer) {
|
||||
root.path = item.path;
|
||||
}
|
||||
}
|
||||
}
|
||||
pathNames.value.push([{ ...root, selected: true }]);
|
||||
if (dashboard.entity === MetricCatalog.ALL) {
|
||||
return;
|
||||
}
|
||||
if (dashboard.entity === MetricCatalog.SERVICE) {
|
||||
pathNames.value.push([
|
||||
{
|
||||
name: dashboard.name,
|
||||
selected: true,
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
const serviceDashboards = dashboardStore.dashboards.filter(
|
||||
(d: DashboardItem) => MetricCatalog.SERVICE === d.entity && dashboard.layer === d.layer,
|
||||
);
|
||||
if (!serviceDashboards.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
const serviceId = route.params.serviceId;
|
||||
const list = serviceDashboards.map((d: { path: string } & DashboardItem, index: number) => {
|
||||
let path = `/dashboard/${d.layer}/${d.entity}/${d.name}`;
|
||||
if (serviceId) {
|
||||
path = `/dashboard/${d.layer}/${d.entity}/${serviceId}/${d.name}`;
|
||||
}
|
||||
const selected = index === 0;
|
||||
return {
|
||||
...d,
|
||||
path,
|
||||
selected,
|
||||
};
|
||||
});
|
||||
pathNames.value.push(list);
|
||||
const podId = route.params.podId;
|
||||
if (dashboard.entity === MetricCatalog.ENDPOINT_RELATION) {
|
||||
const endpointDashboards = dashboardStore.dashboards.filter(
|
||||
(d: DashboardItem) => MetricCatalog.ENDPOINT === d.entity && dashboard.layer === d.layer,
|
||||
);
|
||||
const list = endpointDashboards.map((d: { path: string } & DashboardItem, index: number) => {
|
||||
let path = `/dashboard/${d.layer}/${d.entity}/${d.name}`;
|
||||
if (podId) {
|
||||
path = `/dashboard/${d.layer}/${d.entity}/${serviceId}/${podId}/${d.name}`;
|
||||
}
|
||||
const selected = index === 0;
|
||||
return {
|
||||
...d,
|
||||
path,
|
||||
selected,
|
||||
};
|
||||
});
|
||||
|
||||
pathNames.value.push(list);
|
||||
}
|
||||
const destServiceId = route.params.destServiceId;
|
||||
if (dashboard.entity === MetricCatalog.SERVICE_INSTANCE_RELATION) {
|
||||
const serviceRelationDashboards = dashboardStore.dashboards.filter(
|
||||
(d: DashboardItem) => MetricCatalog.SERVICE_RELATION === d.entity && dashboard.layer === d.layer,
|
||||
);
|
||||
const list = serviceRelationDashboards.map((d: { path: string } & DashboardItem, index: number) => {
|
||||
let path = `/dashboard/related/${d.layer}/${d.entity}/${serviceId}/${destServiceId}/${d.name}`;
|
||||
if (destServiceId) {
|
||||
path = `/dashboard/related/${d.layer}/${d.entity}/${serviceId}/${destServiceId}/${d.name}`;
|
||||
}
|
||||
const selected = index === 0;
|
||||
return {
|
||||
...d,
|
||||
path,
|
||||
selected,
|
||||
};
|
||||
});
|
||||
pathNames.value.push(list);
|
||||
}
|
||||
if ([MetricCatalog.Process, MetricCatalog.PROCESS_RELATION].includes(dashboard.entity)) {
|
||||
const InstanceDashboards = dashboardStore.dashboards.filter(
|
||||
(d: DashboardItem) => MetricCatalog.SERVICE_INSTANCE === d.entity && dashboard.layer === d.layer,
|
||||
);
|
||||
const list = InstanceDashboards.map((d: { path: string } & DashboardItem, index: number) => {
|
||||
let path = `/dashboard/${d.layer}/${d.entity}/${d.name}`;
|
||||
if (podId) {
|
||||
path = `/dashboard/${d.layer}/${d.entity}/${serviceId}/${podId}/${d.name}`;
|
||||
}
|
||||
const selected = index === 0;
|
||||
return {
|
||||
...d,
|
||||
path,
|
||||
selected,
|
||||
};
|
||||
});
|
||||
|
||||
pathNames.value.push(list);
|
||||
}
|
||||
pathNames.value.push([
|
||||
{
|
||||
name: dashboard.name,
|
||||
selected: true,
|
||||
},
|
||||
]);
|
||||
}
|
||||
|
||||
async function getVersion() {
|
||||
const res = await appStore.fetchVersion();
|
||||
if (res.errors) {
|
||||
ElMessage.error(res.errors);
|
||||
}
|
||||
}
|
||||
|
||||
function resetDuration() {
|
||||
const { duration }: Indexable = route.params;
|
||||
if (duration) {
|
||||
@@ -99,10 +263,22 @@ limitations under the License. -->
|
||||
appStore.updateUTC(d.utc);
|
||||
}
|
||||
}
|
||||
|
||||
function updateNavTitle() {
|
||||
const key = String(route.meta.i18nKey);
|
||||
pageTitle.value = te(key) ? t(key) : String(route.meta.title);
|
||||
}
|
||||
|
||||
watch(
|
||||
() => [dashboardStore.currentDashboard, route.name],
|
||||
() => {
|
||||
getNavPaths();
|
||||
},
|
||||
);
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.nav-bar {
|
||||
padding: 5px 10px;
|
||||
padding: 5px;
|
||||
text-align: left;
|
||||
justify-content: space-between;
|
||||
background-color: #fafbfc;
|
||||
@@ -121,10 +297,17 @@ limitations under the License. -->
|
||||
font-size: $font-size-normal;
|
||||
font-weight: 500;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.nav-tabs {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.name {
|
||||
display: inline-block;
|
||||
max-width: 250px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user