mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-07 18:52:54 +00:00
64 lines
2.3 KiB
Vue
64 lines
2.3 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>
|
|
<Dashboard v-if="dashboardStore.currentDashboard" />
|
|
<div v-else class="no-root"> {{ t("noRoot") }} {{ dashboardStore.layerId }} </div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import { EntityType } from "./dashboard/data";
|
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
|
import Dashboard from "./dashboard/Edit.vue";
|
|
import { useI18n } from "vue-i18n";
|
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
|
|
|
const route = useRoute();
|
|
const { t } = useI18n();
|
|
const appStore = useAppStoreWithOut();
|
|
const dashboardStore = useDashboardStore();
|
|
const layer = ref<string>("GENERAL");
|
|
|
|
getDashboard();
|
|
|
|
async function getDashboard() {
|
|
layer.value = String(route.meta.layer);
|
|
dashboardStore.setLayer(layer.value);
|
|
dashboardStore.setMode(false);
|
|
await dashboardStore.setDashboards();
|
|
const item = dashboardStore.dashboards.find(
|
|
(d: { name: string; isRoot: boolean; layer: string; entity: string }) =>
|
|
d.layer === dashboardStore.layerId && [EntityType[0].value, EntityType[1].value].includes(d.entity) && d.isRoot,
|
|
);
|
|
if (!item) {
|
|
appStore.setPageTitle(dashboardStore.layer);
|
|
dashboardStore.setCurrentDashboard(null);
|
|
dashboardStore.setEntity(EntityType[1].value);
|
|
return;
|
|
}
|
|
dashboardStore.setEntity(item.entity);
|
|
dashboardStore.setCurrentDashboard(item);
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.no-root {
|
|
padding: 15px;
|
|
width: 100%;
|
|
text-align: center;
|
|
color: #888;
|
|
}
|
|
</style>
|