mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-17 17:35:24 +00:00
124 lines
3.2 KiB
Vue
124 lines
3.2 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>
|
|
<Edit v-if="dashboardStore.currentDashboard" />
|
|
<div class="no-root" v-else>{{ t("noRoot") }} {{ layer }}</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import { useI18n } from "vue-i18n";
|
|
import { EntityType } from "./dashboard/data";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
|
import Edit from "./dashboard/Edit.vue";
|
|
|
|
const { t } = useI18n();
|
|
const route = useRoute();
|
|
const dashboardStore = useDashboardStore();
|
|
const appStore = useAppStoreWithOut();
|
|
const routeNames = [
|
|
"GeneralServices",
|
|
"Database",
|
|
"MeshServices",
|
|
"ControlPanel",
|
|
"DataPanel",
|
|
"Linux",
|
|
"SkyWalkingServer",
|
|
"Satellite",
|
|
"Functions",
|
|
"Browser",
|
|
];
|
|
const layer = ref<string>("GENERAL");
|
|
getDashboard();
|
|
|
|
async function getDashboard() {
|
|
dashboardStore.setCurrentDashboard(null);
|
|
setLayer(String(route.name));
|
|
await dashboardStore.setDashboards();
|
|
const index = dashboardStore.dashboards.findIndex(
|
|
(d: { name: string; isRoot: boolean; layer: string; entity: string }) =>
|
|
d.layer === layer.value && d.entity === EntityType[1].value && d.isRoot
|
|
);
|
|
if (index < 0) {
|
|
return;
|
|
}
|
|
const d = dashboardStore.dashboards[index];
|
|
dashboardStore.setCurrentDashboard(d);
|
|
appStore.setPageTitle(d.name);
|
|
}
|
|
function setLayer(n: string) {
|
|
switch (n) {
|
|
case routeNames[0]:
|
|
layer.value = "GENERAL";
|
|
break;
|
|
case routeNames[1]:
|
|
layer.value = "VIRTUAL_DATABASE";
|
|
break;
|
|
case routeNames[2]:
|
|
layer.value = "MESH";
|
|
break;
|
|
case routeNames[3]:
|
|
layer.value = "MESH_CP";
|
|
break;
|
|
case routeNames[4]:
|
|
layer.value = "MESH_DP";
|
|
break;
|
|
case routeNames[5]:
|
|
layer.value = "OS_LINUX";
|
|
break;
|
|
case routeNames[6]:
|
|
layer.value = "SO11Y_OAP";
|
|
break;
|
|
case routeNames[7]:
|
|
layer.value = "SO11Y_SATELLITE";
|
|
break;
|
|
case routeNames[8]:
|
|
layer.value = "FAAS";
|
|
break;
|
|
case routeNames[9]:
|
|
layer.value = "BROWSER";
|
|
break;
|
|
default:
|
|
layer.value = "GENERAL";
|
|
break;
|
|
}
|
|
dashboardStore.setLayer(layer.value);
|
|
dashboardStore.setEntity(EntityType[1].value);
|
|
}
|
|
watch(
|
|
() => route.name,
|
|
(name: unknown) => {
|
|
if (!name) {
|
|
return;
|
|
}
|
|
getDashboard();
|
|
}
|
|
);
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.no-root {
|
|
padding: 15px;
|
|
width: 100%;
|
|
text-align: center;
|
|
color: #888;
|
|
}
|
|
|
|
.layer {
|
|
height: 100%;
|
|
}
|
|
</style>
|