mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-13 08:17:33 +00:00
179 lines
5.5 KiB
Vue
179 lines
5.5 KiB
Vue
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. -->
|
|
<template>
|
|
<div class="nav-bar flex-h">
|
|
<el-breadcrumb separator="/" class="title">
|
|
<el-breadcrumb-item v-for="(p, index) in pathNames" :to="{ path: p.path }" :key="index" :replace="true">
|
|
{{ p.name }}
|
|
</el-breadcrumb-item>
|
|
</el-breadcrumb>
|
|
<!-- <div class="title">{{ route.name === "ViewWidget" ? "" : appStore.pageTitle || pageName }}</div> -->
|
|
<div class="app-config">
|
|
<span class="red" v-show="timeRange">{{ t("timeTips") }}</span>
|
|
<TimePicker
|
|
:value="[appStore.durationRow.start, appStore.durationRow.end]"
|
|
position="bottom"
|
|
format="YYYY-MM-DD HH:mm"
|
|
@input="changeTimeRange"
|
|
/>
|
|
<span> UTC{{ appStore.utcHour >= 0 ? "+" : "" }}{{ `${appStore.utcHour}:${appStore.utcMin}` }} </span>
|
|
<span title="refresh" class="ghost ml-5 cp" @click="handleReload">
|
|
<Icon iconName="retry" :loading="appStore.autoRefresh" class="middle" />
|
|
</span>
|
|
<span class="version ml-5 cp">
|
|
<el-popover trigger="hover" width="250" placement="bottom" effect="light" :content="appStore.version">
|
|
<template #reference>
|
|
<span>
|
|
<Icon iconName="info_outline" size="middle" />
|
|
</span>
|
|
</template>
|
|
</el-popover>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import { useI18n } from "vue-i18n";
|
|
import timeFormat from "@/utils/timeFormat";
|
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
import { useSelectorStore } from "@/store/modules/selectors";
|
|
import { ElMessage } from "element-plus";
|
|
import { MetricCatalog } from "@/views/dashboard/data";
|
|
import type { DashboardItem } from "@/types/dashboard";
|
|
|
|
/*global Indexable */
|
|
const { t } = useI18n();
|
|
const appStore = useAppStoreWithOut();
|
|
const dashboardStore = useDashboardStore();
|
|
const selectorStore = useSelectorStore();
|
|
const route = useRoute();
|
|
const pageName = ref<string>("");
|
|
const pathNames = ref<any[]>([]);
|
|
const timeRange = ref<number>(0);
|
|
|
|
resetDuration();
|
|
getVersion();
|
|
// getPathNames();
|
|
|
|
function handleReload() {
|
|
const gap = appStore.duration.end.getTime() - appStore.duration.start.getTime();
|
|
const dates: Date[] = [new Date(new Date().getTime() - gap), new Date()];
|
|
appStore.setDuration(timeFormat(dates));
|
|
}
|
|
|
|
function changeTimeRange(val: Date[]) {
|
|
timeRange.value = val[1].getTime() - val[0].getTime() > 60 * 24 * 60 * 60 * 1000 ? 1 : 0;
|
|
if (timeRange.value) {
|
|
return;
|
|
}
|
|
appStore.setDuration(timeFormat(val));
|
|
}
|
|
|
|
function setConfig(value: string) {
|
|
pageName.value = value || "";
|
|
}
|
|
|
|
function getPathNames() {
|
|
const dashboard = dashboardStore.currentDashboard;
|
|
pathNames.value = [];
|
|
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);
|
|
if (dashboard.entity !== MetricCatalog.ALL) {
|
|
const d = dashboardStore.dashboards.filter(
|
|
(d: DashboardItem) => dashboard.entity === d.entity && dashboard.layer === d.layer,
|
|
)[0];
|
|
const id = route.params.id;
|
|
const path = `/dashboard/${dashboard.layer}/${dashboard.entity}/${id}/${dashboard.name}`;
|
|
pathNames.value.push({
|
|
...d,
|
|
path,
|
|
});
|
|
}
|
|
}
|
|
|
|
async function getVersion() {
|
|
const res = await appStore.fetchVersion();
|
|
if (res.errors) {
|
|
ElMessage.error(res.errors);
|
|
}
|
|
}
|
|
|
|
function resetDuration() {
|
|
const { duration }: Indexable = route.params;
|
|
if (duration) {
|
|
const d = JSON.parse(duration);
|
|
|
|
appStore.updateDurationRow({
|
|
start: new Date(d.start),
|
|
end: new Date(d.end),
|
|
step: d.step,
|
|
});
|
|
appStore.updateUTC(d.utc);
|
|
}
|
|
}
|
|
|
|
watch(
|
|
() => dashboardStore.currentDashboard,
|
|
() => {
|
|
getPathNames();
|
|
},
|
|
);
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.nav-bar {
|
|
padding: 5px;
|
|
text-align: left;
|
|
justify-content: space-between;
|
|
background-color: #fafbfc;
|
|
border-bottom: 1px solid #dfe4e8;
|
|
color: #222;
|
|
font-size: $font-size-smaller;
|
|
}
|
|
|
|
.nav-bar.dark {
|
|
background-color: #333840;
|
|
border-bottom: 1px solid #252a2f;
|
|
color: #fafbfc;
|
|
}
|
|
|
|
.title {
|
|
font-size: $font-size-normal;
|
|
font-weight: 500;
|
|
height: 28px;
|
|
line-height: 28px;
|
|
}
|
|
|
|
.nav-tabs {
|
|
padding: 10px;
|
|
}
|
|
</style>
|