mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 22:23:15 +00:00
feat: Implement independent mode for widgets (#221)
This commit is contained in:
parent
ca38366a60
commit
224053c0f4
10
package.json
10
package.json
@ -85,10 +85,14 @@
|
|||||||
"not dead"
|
"not dead"
|
||||||
],
|
],
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{js,jsx,ts,tsx,vue,scss,less}": [
|
"*.{js,jsx,ts,tsx,vue}": [
|
||||||
"eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
"eslint . --ext .vue,.js,.jsx,.ts,.tsx --fix --ignore-path .gitignore",
|
||||||
"prettier --write \"src/**/*.{js,tsx,css,less,scss,vue,html,md}\"",
|
"prettier --write \"src/**/*.{js,tsx,css,less,scss,vue,html,md}\"",
|
||||||
"stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/"
|
"stylelint --cache --fix \"**/*.{vue}\" --cache --cache-location node_modules/.cache/stylelint/"
|
||||||
|
],
|
||||||
|
"*.{scss,less}": [
|
||||||
|
"prettier --write \"src/**/*.{js,tsx,css,less,scss,vue,html,md}\"",
|
||||||
|
"stylelint --cache --fix \"**/*.{less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/"
|
||||||
],
|
],
|
||||||
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
|
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
|
||||||
"prettier --write"
|
"prettier --write"
|
||||||
|
13
src/App.vue
13
src/App.vue
@ -15,11 +15,22 @@ limitations under the License. -->
|
|||||||
<template>
|
<template>
|
||||||
<router-view />
|
<router-view />
|
||||||
</template>
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { useRoute } from "vue-router";
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
if (route.name === "ViewWidget") {
|
||||||
|
(document.querySelector("#app") as any).style.minWidth = "120px";
|
||||||
|
} else {
|
||||||
|
(document.querySelector("#app") as any).style.minWidth = "1024px";
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
</script>
|
||||||
<style>
|
<style>
|
||||||
#app {
|
#app {
|
||||||
color: #2c3e50;
|
color: #2c3e50;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-width: 1024px;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License. -->
|
limitations under the License. -->
|
||||||
<template>
|
<template>
|
||||||
<div class="nav-bar flex-h">
|
<div class="nav-bar flex-h">
|
||||||
<div class="title">{{ appStore.pageTitle || t(pageName) }}</div>
|
<div class="title">{{ route.name === "ViewWidget" ? "" : appStore.pageTitle || t(pageName) }}</div>
|
||||||
<div class="app-config">
|
<div class="app-config">
|
||||||
<span class="red" v-show="timeRange">{{ t("timeTips") }}</span>
|
<span class="red" v-show="timeRange">{{ t("timeTips") }}</span>
|
||||||
<TimePicker
|
<TimePicker
|
||||||
|
@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License. -->
|
limitations under the License. -->
|
||||||
<template>
|
<template>
|
||||||
<div class="side-bar">
|
<div class="side-bar" v-if="showMenu">
|
||||||
<div :class="isCollapse ? 'logo-icon-collapse' : 'logo-icon'">
|
<div :class="isCollapse ? 'logo-icon-collapse' : 'logo-icon'">
|
||||||
<Icon :size="isCollapse ? 'xl' : 'logo'" :iconName="isCollapse ? 'logo' : 'logo-sw'" />
|
<Icon :size="isCollapse ? 'xl' : 'logo'" :iconName="isCollapse ? 'logo' : 'logo-sw'" />
|
||||||
</div>
|
</div>
|
||||||
@ -76,7 +76,7 @@ limitations under the License. -->
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
import type { RouteRecordRaw } from "vue-router";
|
import type { RouteRecordRaw } from "vue-router";
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter, useRoute } from "vue-router";
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import Icon from "@/components/Icon.vue";
|
import Icon from "@/components/Icon.vue";
|
||||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||||
@ -86,12 +86,18 @@ limitations under the License. -->
|
|||||||
const name = ref<string>(String(useRouter().currentRoute.value.name));
|
const name = ref<string>(String(useRouter().currentRoute.value.name));
|
||||||
const theme = ["VirtualMachine", "Kubernetes"].includes(name.value || "") ? ref("light") : ref("black");
|
const theme = ["VirtualMachine", "Kubernetes"].includes(name.value || "") ? ref("light") : ref("black");
|
||||||
const routes = ref<RouteRecordRaw[] | any>(useRouter().options.routes);
|
const routes = ref<RouteRecordRaw[] | any>(useRouter().options.routes);
|
||||||
|
const route = useRoute();
|
||||||
|
const isCollapse = ref(false);
|
||||||
|
const showMenu = ref(true);
|
||||||
|
|
||||||
if (/Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent)) {
|
if (/Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent)) {
|
||||||
appStore.setIsMobile(true);
|
appStore.setIsMobile(true);
|
||||||
} else {
|
} else {
|
||||||
appStore.setIsMobile(false);
|
appStore.setIsMobile(false);
|
||||||
}
|
}
|
||||||
const isCollapse = ref(false);
|
if (route.name === "ViewWidget") {
|
||||||
|
showMenu.value = false;
|
||||||
|
}
|
||||||
const controlMenu = () => {
|
const controlMenu = () => {
|
||||||
isCollapse.value = !isCollapse.value;
|
isCollapse.value = !isCollapse.value;
|
||||||
};
|
};
|
||||||
@ -119,7 +125,7 @@ limitations under the License. -->
|
|||||||
|
|
||||||
.logo-icon-collapse {
|
.logo-icon-collapse {
|
||||||
width: 65px;
|
width: 65px;
|
||||||
margin: 15px 0 10px 0;
|
margin: 5px 0 10px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,6 +181,8 @@ const msg = {
|
|||||||
taskTitle: "HTTP request and response collecting rules",
|
taskTitle: "HTTP request and response collecting rules",
|
||||||
iframeWidgetTip: "Add a link to a widget",
|
iframeWidgetTip: "Add a link to a widget",
|
||||||
iframeSrc: "Iframe Link",
|
iframeSrc: "Iframe Link",
|
||||||
|
generateLink: "Generate Link",
|
||||||
|
setDuration: "Set Duration",
|
||||||
seconds: "Seconds",
|
seconds: "Seconds",
|
||||||
hourTip: "Select Hour",
|
hourTip: "Select Hour",
|
||||||
minuteTip: "Select Minute",
|
minuteTip: "Select Minute",
|
||||||
|
@ -164,6 +164,8 @@ const msg = {
|
|||||||
legendValues: "Valor de la leyenda",
|
legendValues: "Valor de la leyenda",
|
||||||
iframeWidgetTip: "Añadir enlaces a los gadgets",
|
iframeWidgetTip: "Añadir enlaces a los gadgets",
|
||||||
iframeSrc: "Enlace Iframe",
|
iframeSrc: "Enlace Iframe",
|
||||||
|
generateLink: "Generar enlaces",
|
||||||
|
setDuration: "Establecer la duración",
|
||||||
seconds: "Segundos",
|
seconds: "Segundos",
|
||||||
hourTip: "Seleccione Hora",
|
hourTip: "Seleccione Hora",
|
||||||
minuteTip: "Seleccione Minuto",
|
minuteTip: "Seleccione Minuto",
|
||||||
|
@ -178,6 +178,8 @@ const msg = {
|
|||||||
taskTitle: "HTTP请求和响应收集规则",
|
taskTitle: "HTTP请求和响应收集规则",
|
||||||
iframeWidgetTip: "添加widget的链接",
|
iframeWidgetTip: "添加widget的链接",
|
||||||
iframeSrc: "Iframe链接",
|
iframeSrc: "Iframe链接",
|
||||||
|
generateLink: "生成链接",
|
||||||
|
setDuration: "设置时间区间",
|
||||||
seconds: "秒",
|
seconds: "秒",
|
||||||
hourTip: "选择小时",
|
hourTip: "选择小时",
|
||||||
minuteTip: "选择分钟",
|
minuteTip: "选择分钟",
|
||||||
|
@ -176,6 +176,21 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "",
|
||||||
|
name: "Widget",
|
||||||
|
component: () => import("@/views/dashboard/Widget.vue"),
|
||||||
|
meta: {
|
||||||
|
notShow: true,
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: "/page/:layer/:entity/:serviceId/:podId/:processId/:destServiceId/:destPodId/:destProcessId/:config/:duration?",
|
||||||
|
component: () => import("@/views/dashboard/Widget.vue"),
|
||||||
|
name: "ViewWidget",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -40,6 +40,7 @@ interface DashboardState {
|
|||||||
currentDashboard: Nullable<DashboardItem>;
|
currentDashboard: Nullable<DashboardItem>;
|
||||||
editMode: boolean;
|
editMode: boolean;
|
||||||
currentTabIndex: number;
|
currentTabIndex: number;
|
||||||
|
showLinkConfig: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const dashboardStore = defineStore({
|
export const dashboardStore = defineStore({
|
||||||
@ -58,6 +59,7 @@ export const dashboardStore = defineStore({
|
|||||||
currentDashboard: null,
|
currentDashboard: null,
|
||||||
editMode: false,
|
editMode: false,
|
||||||
currentTabIndex: 0,
|
currentTabIndex: 0,
|
||||||
|
showLinkConfig: false,
|
||||||
}),
|
}),
|
||||||
actions: {
|
actions: {
|
||||||
setLayout(data: LayoutConfig[]) {
|
setLayout(data: LayoutConfig[]) {
|
||||||
@ -66,6 +68,9 @@ export const dashboardStore = defineStore({
|
|||||||
setMode(mode: boolean) {
|
setMode(mode: boolean) {
|
||||||
this.editMode = mode;
|
this.editMode = mode;
|
||||||
},
|
},
|
||||||
|
setWidgetLink(show: boolean) {
|
||||||
|
this.showLinkConfig = show;
|
||||||
|
},
|
||||||
resetDashboards(list: DashboardItem[]) {
|
resetDashboards(list: DashboardItem[]) {
|
||||||
this.dashboards = list;
|
this.dashboards = list;
|
||||||
sessionStorage.setItem("dashboards", JSON.stringify(list));
|
sessionStorage.setItem("dashboards", JSON.stringify(list));
|
||||||
|
@ -211,12 +211,12 @@ export const selectorStore = defineStore({
|
|||||||
|
|
||||||
return res.data;
|
return res.data;
|
||||||
},
|
},
|
||||||
async getProcess(instanceId: string, isRelation?: boolean) {
|
async getProcess(processId: string, isRelation?: boolean) {
|
||||||
if (!instanceId) {
|
if (!processId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const res: AxiosResponse = await graphql.query("queryProcess").params({
|
const res: AxiosResponse = await graphql.query("queryProcess").params({
|
||||||
instanceId,
|
processId,
|
||||||
});
|
});
|
||||||
if (!res.data.errors) {
|
if (!res.data.errors) {
|
||||||
if (isRelation) {
|
if (isRelation) {
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.flex-v {
|
.flex-v {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -102,6 +103,13 @@
|
|||||||
.mt-0 {
|
.mt-0 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
.mt-10 {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-20 {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.mb-5 {
|
.mb-5 {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
@ -30,6 +30,13 @@ limitations under the License. -->
|
|||||||
>
|
>
|
||||||
<component :is="dashboardStore.selectedGrid.type" />
|
<component :is="dashboardStore.selectedGrid.type" />
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
<el-dialog
|
||||||
|
v-model="dashboardStore.showLinkConfig"
|
||||||
|
:destroy-on-close="true"
|
||||||
|
@closed="dashboardStore.setWidgetLink(false)"
|
||||||
|
>
|
||||||
|
<WidgetLink />
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@ -42,16 +49,18 @@ limitations under the License. -->
|
|||||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||||
import Configuration from "./configuration";
|
import Configuration from "./configuration";
|
||||||
import type { LayoutConfig } from "@/types/dashboard";
|
import type { LayoutConfig } from "@/types/dashboard";
|
||||||
|
import WidgetLink from "./components/WidgetLink.vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "Dashboard",
|
name: "Dashboard",
|
||||||
components: { ...Configuration, GridLayout, Tool },
|
components: { ...Configuration, GridLayout, Tool, WidgetLink },
|
||||||
setup() {
|
setup() {
|
||||||
const dashboardStore = useDashboardStore();
|
const dashboardStore = useDashboardStore();
|
||||||
const appStore = useAppStoreWithOut();
|
const appStore = useAppStoreWithOut();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const p = useRoute().params;
|
const p = useRoute().params;
|
||||||
const layoutKey = ref<string>(`${p.layerId}_${p.entity}_${p.name}`);
|
const layoutKey = ref<string>(`${p.layerId}_${p.entity}_${p.name}`);
|
||||||
|
|
||||||
setTemplate();
|
setTemplate();
|
||||||
async function setTemplate() {
|
async function setTemplate() {
|
||||||
await dashboardStore.setDashboards();
|
await dashboardStore.setDashboards();
|
||||||
|
@ -226,6 +226,7 @@ limitations under the License. -->
|
|||||||
standard?: unknown;
|
standard?: unknown;
|
||||||
label?: string;
|
label?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
|
filters?: unknown;
|
||||||
})[],
|
})[],
|
||||||
) {
|
) {
|
||||||
for (const child of children || []) {
|
for (const child of children || []) {
|
||||||
@ -235,6 +236,7 @@ limitations under the License. -->
|
|||||||
delete child.id;
|
delete child.id;
|
||||||
delete child.label;
|
delete child.label;
|
||||||
delete child.value;
|
delete child.value;
|
||||||
|
delete child.filters;
|
||||||
if (isEmptyObject(child.graph)) {
|
if (isEmptyObject(child.graph)) {
|
||||||
delete child.graph;
|
delete child.graph;
|
||||||
}
|
}
|
||||||
|
188
src/views/dashboard/Widget.vue
Normal file
188
src/views/dashboard/Widget.vue
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
<!-- 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="content">
|
||||||
|
<div class="header">
|
||||||
|
<span>{{ decodeURIComponent(title) }}</span>
|
||||||
|
<div class="tips" v-show="tips">
|
||||||
|
<el-tooltip :content="decodeURIComponent(tips) || ''">
|
||||||
|
<span>
|
||||||
|
<Icon iconName="info_outline" size="sm" />
|
||||||
|
</span>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="widget-chart" :style="{ height: config.height - 60 + 'px' }">
|
||||||
|
<component
|
||||||
|
:is="graph.type"
|
||||||
|
:intervalTime="appStoreWithOut.intervalTime"
|
||||||
|
:data="source"
|
||||||
|
:config="{
|
||||||
|
i: 0,
|
||||||
|
...graph,
|
||||||
|
metrics: config.metrics,
|
||||||
|
metricTypes: config.metricTypes,
|
||||||
|
metricConfig: config.metricConfig,
|
||||||
|
}"
|
||||||
|
:needQuery="true"
|
||||||
|
/>
|
||||||
|
<div v-show="!config.type" class="no-data">
|
||||||
|
{{ t("noData") }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts">
|
||||||
|
import { computed, ref, defineComponent, watch } from "vue";
|
||||||
|
import { useI18n } from "vue-i18n";
|
||||||
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||||
|
import { useRoute } from "vue-router";
|
||||||
|
import { useSelectorStore } from "@/store/modules/selectors";
|
||||||
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||||
|
import { useQueryProcessor, useSourceProcessor, useGetMetricEntity } from "@/hooks/useMetricsProcessor";
|
||||||
|
import graphs from "./graphs";
|
||||||
|
import { EntityType } from "./data";
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: "WidgetPage",
|
||||||
|
components: {
|
||||||
|
...graphs,
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const appStoreWithOut = useAppStoreWithOut();
|
||||||
|
const selectorStore = useSelectorStore();
|
||||||
|
const route = useRoute();
|
||||||
|
const config = computed<any>(() => JSON.parse(decodeURIComponent(route.params.config as string) as string));
|
||||||
|
const graph = computed(() => config.value.graph || {});
|
||||||
|
const source = ref<unknown>({});
|
||||||
|
const loading = ref<boolean>(false);
|
||||||
|
const dashboardStore = useDashboardStore();
|
||||||
|
const title = computed(() => (config.value.widget && config.value.widget.title) || "");
|
||||||
|
const tips = computed(() => (config.value.widget && config.value.widget.tips) || "");
|
||||||
|
|
||||||
|
init();
|
||||||
|
async function init() {
|
||||||
|
dashboardStore.setLayer(route.params.layer);
|
||||||
|
dashboardStore.setEntity(route.params.entity);
|
||||||
|
await setSelector();
|
||||||
|
await queryMetrics();
|
||||||
|
}
|
||||||
|
async function setSelector() {
|
||||||
|
const { serviceId, podId, processId, destServiceId, destPodId, destProcessId, entity } = route.params;
|
||||||
|
if (serviceId) {
|
||||||
|
await selectorStore.getService(serviceId);
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
[EntityType[4].value, EntityType[5].value, EntityType[6].value, EntityType[7].value].includes(
|
||||||
|
entity as string,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
await selectorStore.getService(destServiceId, true);
|
||||||
|
}
|
||||||
|
if ([EntityType[3].value, EntityType[5].value, EntityType[7].value].includes(entity as string)) {
|
||||||
|
await selectorStore.getInstance(podId);
|
||||||
|
}
|
||||||
|
if ([EntityType[2].value, EntityType[6].value].includes(entity as string)) {
|
||||||
|
await selectorStore.getEndpoint(podId);
|
||||||
|
}
|
||||||
|
if (EntityType[6].value === entity) {
|
||||||
|
await selectorStore.getEndpoint(destPodId, true);
|
||||||
|
}
|
||||||
|
if ([EntityType[5].value, EntityType[7].value].includes(entity as string)) {
|
||||||
|
await selectorStore.getInstance(destPodId, true);
|
||||||
|
}
|
||||||
|
if (EntityType[7].value === entity) {
|
||||||
|
selectorStore.getProcess(processId);
|
||||||
|
selectorStore.getProcess(destProcessId, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function queryMetrics() {
|
||||||
|
const metricTypes = config.value.metricTypes || [];
|
||||||
|
const metrics = config.value.metrics || [];
|
||||||
|
const catalog = await useGetMetricEntity(metrics[0], metricTypes[0]);
|
||||||
|
const params = await useQueryProcessor({ ...config.value, catalog });
|
||||||
|
if (!params) {
|
||||||
|
source.value = {};
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
loading.value = true;
|
||||||
|
const json = await dashboardStore.fetchMetricValue(params);
|
||||||
|
loading.value = false;
|
||||||
|
if (!json) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const d = {
|
||||||
|
metrics: config.value.metrics || [],
|
||||||
|
metricTypes: config.value.metricTypes || [],
|
||||||
|
metricConfig: config.value.metricConfig || [],
|
||||||
|
};
|
||||||
|
source.value = useSourceProcessor(json, d);
|
||||||
|
}
|
||||||
|
watch(
|
||||||
|
() => appStoreWithOut.durationTime,
|
||||||
|
() => {
|
||||||
|
queryMetrics();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
t,
|
||||||
|
graph,
|
||||||
|
source,
|
||||||
|
appStoreWithOut,
|
||||||
|
config,
|
||||||
|
title,
|
||||||
|
tips,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.content {
|
||||||
|
min-width: 100px;
|
||||||
|
border: 1px solid #eee;
|
||||||
|
background-color: #fff;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-chart {
|
||||||
|
background: #fff;
|
||||||
|
box-shadow: 0px 1px 4px 0px #00000029;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 5px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-data {
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
height: 25px;
|
||||||
|
line-height: 25px;
|
||||||
|
text-align: center;
|
||||||
|
background-color: aliceblue;
|
||||||
|
font-size: 12px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tips {
|
||||||
|
position: absolute;
|
||||||
|
right: 5px;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
</style>
|
125
src/views/dashboard/components/WidgetLink.vue
Normal file
125
src/views/dashboard/components/WidgetLink.vue
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
<!-- 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="link-content">
|
||||||
|
<div>
|
||||||
|
<label class="mr-5">{{ t("setDuration") }}</label>
|
||||||
|
<el-switch v-model="hasDuration" />
|
||||||
|
</div>
|
||||||
|
<div v-if="hasDuration">
|
||||||
|
<label class="mr-20">{{ t("duration") }}</label>
|
||||||
|
<TimePicker
|
||||||
|
:value="[appStore.durationRow.start, appStore.durationRow.end]"
|
||||||
|
position="bottom"
|
||||||
|
format="YYYY-MM-DD HH:mm"
|
||||||
|
@input="changeTimeRange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<el-button size="small" type="primary" class="mt-20" @click="getLink">{{ t("generateLink") }}</el-button>
|
||||||
|
<div v-show="widgetLink" class="mt-10">
|
||||||
|
<span @click="viewPage" class="link">
|
||||||
|
{{ host + widgetLink }}
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<Icon class="cp ml-10" iconName="copy" @click="copyLink" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from "vue";
|
||||||
|
import { useI18n } from "vue-i18n";
|
||||||
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||||
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||||
|
import { useSelectorStore } from "@/store/modules/selectors";
|
||||||
|
import router from "@/router";
|
||||||
|
import copy from "@/utils/copy";
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const appStore = useAppStoreWithOut();
|
||||||
|
const dashboardStore = useDashboardStore();
|
||||||
|
const selectorStore = useSelectorStore();
|
||||||
|
const hasDuration = ref<boolean>(true);
|
||||||
|
const widgetLink = ref<string>("");
|
||||||
|
const dates = ref<Date[]>([]);
|
||||||
|
const host = window.location.host;
|
||||||
|
|
||||||
|
function changeTimeRange(val: Date[] | any) {
|
||||||
|
dates.value = val;
|
||||||
|
}
|
||||||
|
function getLink() {
|
||||||
|
if (!dashboardStore.selectedGrid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const serviceId = selectorStore.currentService ? selectorStore.currentService.id : null;
|
||||||
|
const podId = selectorStore.currentPod ? selectorStore.currentPod.id : null;
|
||||||
|
const processId = selectorStore.currentProcess ? selectorStore.currentProcess.id : null;
|
||||||
|
const destServiceId = selectorStore.currentDestService ? selectorStore.currentDestService.id : null;
|
||||||
|
const destPodId = selectorStore.currentDestPod ? selectorStore.currentDestPod.id : null;
|
||||||
|
const destProcessId = selectorStore.currentDestProcess ? selectorStore.currentDestProcess.id : null;
|
||||||
|
const duration = JSON.stringify({
|
||||||
|
start: dates.value[0] ? new Date(dates.value[0]).getTime() : appStore.durationRow.start.getTime(),
|
||||||
|
end: dates.value[1] ? new Date(dates.value[1]).getTime() : appStore.durationRow.end.getTime(),
|
||||||
|
step: appStore.durationRow.step,
|
||||||
|
utc: appStore.utc,
|
||||||
|
});
|
||||||
|
const w = {
|
||||||
|
title: encodeURIComponent(dashboardStore.selectedGrid.widget.title || ""),
|
||||||
|
tips: encodeURIComponent(dashboardStore.selectedGrid.widget.tips || ""),
|
||||||
|
};
|
||||||
|
const metricConfig = (dashboardStore.selectedGrid.metricConfig || []).map((d: any) => {
|
||||||
|
if (d.label) {
|
||||||
|
d.label = encodeURIComponent(d.label);
|
||||||
|
}
|
||||||
|
if (d.unit) {
|
||||||
|
d.unit = encodeURIComponent(d.unit);
|
||||||
|
}
|
||||||
|
return d;
|
||||||
|
});
|
||||||
|
const config = JSON.stringify({
|
||||||
|
type: dashboardStore.selectedGrid.type,
|
||||||
|
widget: w,
|
||||||
|
graph: dashboardStore.selectedGrid.graph,
|
||||||
|
metrics: dashboardStore.selectedGrid.metrics,
|
||||||
|
metricTypes: dashboardStore.selectedGrid.metricTypes,
|
||||||
|
metricConfig: metricConfig,
|
||||||
|
height: dashboardStore.selectedGrid.h * 20 + 60,
|
||||||
|
});
|
||||||
|
const path = `/page/${dashboardStore.layerId}/${
|
||||||
|
dashboardStore.entity
|
||||||
|
}/${serviceId}/${podId}/${processId}/${destServiceId}/${destPodId}/${destProcessId}/${encodeURIComponent(config)}`;
|
||||||
|
widgetLink.value = hasDuration.value ? `${path}/${encodeURIComponent(duration)}` : path;
|
||||||
|
}
|
||||||
|
function viewPage() {
|
||||||
|
const routeUrl = router.resolve({ path: widgetLink.value });
|
||||||
|
window.open(routeUrl.href, "_blank");
|
||||||
|
}
|
||||||
|
function copyLink() {
|
||||||
|
copy(host + widgetLink.value);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.link {
|
||||||
|
color: #409eff;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-content {
|
||||||
|
height: 300px;
|
||||||
|
font-size: 12px;
|
||||||
|
overflow: auto;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -26,18 +26,21 @@ limitations under the License. -->
|
|||||||
<Icon iconName="info_outline" size="sm" class="operation" v-show="widget.tips" />
|
<Icon iconName="info_outline" size="sm" class="operation" v-show="widget.tips" />
|
||||||
</span>
|
</span>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-popover placement="bottom" trigger="click" :width="100" v-if="dashboardStore.editMode">
|
<el-popover placement="bottom" trigger="click" :width="100">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<span>
|
<span>
|
||||||
<Icon iconName="ellipsis_v" size="middle" class="operation" />
|
<Icon iconName="ellipsis_v" size="middle" class="operation" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<div class="tools" @click="editConfig">
|
<div class="tools" @click="editConfig" v-if="dashboardStore.editMode">
|
||||||
<span>{{ t("edit") }}</span>
|
<span>{{ t("edit") }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="tools" @click="removeWidget">
|
<div class="tools" @click="removeWidget" v-if="dashboardStore.editMode">
|
||||||
<span>{{ t("delete") }}</span>
|
<span>{{ t("delete") }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="tools" @click="generateLink">
|
||||||
|
<span>{{ t("generateLink") }}</span>
|
||||||
|
</div>
|
||||||
</el-popover>
|
</el-popover>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -161,6 +164,10 @@ limitations under the License. -->
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
function generateLink() {
|
||||||
|
dashboardStore.setWidgetLink(true);
|
||||||
|
dashboardStore.selectWidget(props.data);
|
||||||
|
}
|
||||||
watch(
|
watch(
|
||||||
() => [props.data.metricTypes, props.data.metrics],
|
() => [props.data.metricTypes, props.data.metrics],
|
||||||
() => {
|
() => {
|
||||||
@ -227,6 +234,7 @@ limitations under the License. -->
|
|||||||
state,
|
state,
|
||||||
appStore,
|
appStore,
|
||||||
removeWidget,
|
removeWidget,
|
||||||
|
generateLink,
|
||||||
editConfig,
|
editConfig,
|
||||||
data,
|
data,
|
||||||
loading,
|
loading,
|
||||||
|
Loading…
Reference in New Issue
Block a user