mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-07 02:22:55 +00:00
feat: create table, pie
This commit is contained in:
parent
54e76b649f
commit
5ac55b5e09
26849
package-lock.json
generated
26849
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -18,15 +18,15 @@ export const ChartTypes = [
|
|||||||
{ label: "Bar", value: "bar" },
|
{ label: "Bar", value: "bar" },
|
||||||
{ label: "Line", value: "line" },
|
{ label: "Line", value: "line" },
|
||||||
{ label: "Area", value: "area" },
|
{ label: "Area", value: "area" },
|
||||||
{ label: "Heat Map", value: "heatMap" },
|
{ label: "Heatmap", value: "heatmap" },
|
||||||
{ label: "Pie", value: "pie" },
|
{ label: "Pie", value: "pie" },
|
||||||
{ label: "Sankey", value: "sankey" },
|
|
||||||
{ label: "Gauge", value: "gauge" },
|
|
||||||
{ label: "Card", value: "card" },
|
{ label: "Card", value: "card" },
|
||||||
{ label: "Table", value: "table" },
|
|
||||||
{ label: "Progress Bar", value: "progressBar" },
|
{ label: "Progress Bar", value: "progressBar" },
|
||||||
|
{ label: "Table", value: "table" },
|
||||||
|
{ label: "Image", value: "image" },
|
||||||
{ label: "Endpoint List", value: "endpointList" },
|
{ label: "Endpoint List", value: "endpointList" },
|
||||||
{ label: "Instance List", value: "instanceList" },
|
{ label: "Instance List", value: "instanceList" },
|
||||||
|
{ label: "Tab", value: "tab" },
|
||||||
];
|
];
|
||||||
export enum MetricQueryTypes {
|
export enum MetricQueryTypes {
|
||||||
ReadMetricsValue = "readMetricsValue",
|
ReadMetricsValue = "readMetricsValue",
|
||||||
|
@ -31,9 +31,7 @@ const props = defineProps({
|
|||||||
});
|
});
|
||||||
const chart = ref<any>(null);
|
const chart = ref<any>(null);
|
||||||
const option = computed(() => getOption());
|
const option = computed(() => getOption());
|
||||||
function resize() {
|
|
||||||
chart.value.myChart.resize();
|
|
||||||
}
|
|
||||||
function getOption() {
|
function getOption() {
|
||||||
const keys = Object.keys(props.data || {}).filter(
|
const keys = Object.keys(props.data || {}).filter(
|
||||||
(i: any) => Array.isArray(props.data[i]) && props.data[i].length
|
(i: any) => Array.isArray(props.data[i]) && props.data[i].length
|
||||||
@ -66,7 +64,7 @@ function getOption() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
data: props.data[i].map((item: any, itemIndex: any) => [
|
data: props.data[i].map((item: number, itemIndex: number) => [
|
||||||
props.intervalTime[itemIndex],
|
props.intervalTime[itemIndex],
|
||||||
item,
|
item,
|
||||||
]),
|
]),
|
||||||
|
63
src/views/dashboard/graphs/Pie.vue
Normal file
63
src/views/dashboard/graphs/Pie.vue
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<!-- 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>
|
||||||
|
<Graph ref="chart" :option="option" :autoResize="true" />
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { defineProps, ref, computed } from "vue";
|
||||||
|
import type { PropType } from "vue";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
data: {
|
||||||
|
type: Array as PropType<{ name: string; value: number }[]>,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
theme: { type: String, default: "dark" },
|
||||||
|
});
|
||||||
|
const chart = ref<any>(null);
|
||||||
|
const option = computed(() => getOption());
|
||||||
|
function getOption() {
|
||||||
|
return {
|
||||||
|
tooltip: {
|
||||||
|
trigger: "item",
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
type: "scroll",
|
||||||
|
show: props.data.length === 1 ? false : true,
|
||||||
|
icon: "circle",
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
itemWidth: 12,
|
||||||
|
textStyle: {
|
||||||
|
color: props.theme === "dark" ? "#fff" : "#333",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
type: "pie",
|
||||||
|
radius: "50%",
|
||||||
|
data: props.data,
|
||||||
|
emphasis: {
|
||||||
|
itemStyle: {
|
||||||
|
shadowBlur: 10,
|
||||||
|
shadowOffsetX: 0,
|
||||||
|
shadowColor: "rgba(0, 0, 0, 0.5)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
@ -40,7 +40,9 @@ import { ElProgress } from "element-plus";
|
|||||||
import copy from "@/utils/copy";
|
import copy from "@/utils/copy";
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
data: {
|
data: {
|
||||||
type: Array as PropType<{ [key: string]: number | string }[]>,
|
type: Array as PropType<
|
||||||
|
{ name: string; value: number; traceIds: string[] }[]
|
||||||
|
>,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
theme: { type: String, default: "" },
|
theme: { type: String, default: "" },
|
||||||
|
163
src/views/dashboard/graphs/Table.vue
Normal file
163
src/views/dashboard/graphs/Table.vue
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
<!-- 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="chart-table">
|
||||||
|
<div ref="chartTable">
|
||||||
|
<div
|
||||||
|
class="row header flex-h"
|
||||||
|
:style="`width: ${nameWidth + initWidth}px`"
|
||||||
|
:class="{ dark: theme === 'dark' }"
|
||||||
|
>
|
||||||
|
<div class="name" :style="`width: ${nameWidth}px`">
|
||||||
|
{{ item.tableHeaderCol1 || $t("name") }}
|
||||||
|
<i class="r cp" ref="draggerName"
|
||||||
|
><rk-icon icon="settings_ethernet"
|
||||||
|
/></i>
|
||||||
|
</div>
|
||||||
|
<div class="value-col" v-if="showTableValues">
|
||||||
|
{{ item.tableHeaderCol2 || $t("value") }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="row flex-h"
|
||||||
|
:class="{ dark: theme === 'dark' }"
|
||||||
|
v-for="key in dataKeys"
|
||||||
|
:key="key"
|
||||||
|
:style="`width: ${nameWidth + initWidth}px`"
|
||||||
|
>
|
||||||
|
<div :style="`width: ${nameWidth}px`">{{ key }}</div>
|
||||||
|
<div class="value-col" v-if="showTableValues">
|
||||||
|
{{ data[key][dataLength(data[key])] }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { defineProps, computed, ref, onMounted } from "vue";
|
||||||
|
import type { PropType } from "vue";
|
||||||
|
const props = defineProps({
|
||||||
|
data: {
|
||||||
|
type: Object as PropType<{ [key: string]: number[][] }>,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
theme: { type: String, default: "dark" },
|
||||||
|
itemConfig: {
|
||||||
|
type: Object as PropType<{ showTableValues: string | boolean }>,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const chartTable = ref<any>(null);
|
||||||
|
const initWidth = ref<number>(0);
|
||||||
|
const nameWidth = ref<number>(0);
|
||||||
|
const draggerName = ref<any>(0);
|
||||||
|
onMounted(() => {
|
||||||
|
if (!chartTable.value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const width = showTableValues.value
|
||||||
|
? chartTable.value.offsetWidth / 2
|
||||||
|
: chartTable.value.offsetWidth;
|
||||||
|
initWidth.value = showTableValues.value
|
||||||
|
? chartTable.value.offsetWidth / 2
|
||||||
|
: 0;
|
||||||
|
nameWidth.value = width - 5;
|
||||||
|
if (!draggerName.value) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
draggerName.value.onmousedown = (event: MouseEvent) => {
|
||||||
|
const diffX = event.clientX;
|
||||||
|
const copy = nameWidth;
|
||||||
|
document.onmousemove = (documentEvent) => {
|
||||||
|
const moveX = documentEvent.clientX - diffX;
|
||||||
|
nameWidth.value = Number(copy) + Number(moveX);
|
||||||
|
};
|
||||||
|
document.onmouseup = () => {
|
||||||
|
document.onmousemove = null;
|
||||||
|
document.onmouseup = null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
const dataKeys = computed(() => {
|
||||||
|
const keys = Object.keys(props.data || {}).filter(
|
||||||
|
(i: any) => Array.isArray(props.data[i]) && props.data[i].length
|
||||||
|
);
|
||||||
|
return keys;
|
||||||
|
});
|
||||||
|
const showTableValues = computed(() => {
|
||||||
|
return props.itemConfig.showTableValues === "true" ||
|
||||||
|
props.itemConfig.showTableValues === true
|
||||||
|
? true
|
||||||
|
: false;
|
||||||
|
});
|
||||||
|
const dataLength = computed((param: number[]) => {
|
||||||
|
return param.length - 1 || 0;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.chart-table {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.name {
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
border-left: 1px solid #ccc;
|
||||||
|
height: 20px;
|
||||||
|
|
||||||
|
div {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
border-right: 1px solid #ccc;
|
||||||
|
text-align: center;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div:last-child {
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
div:nth-last-child(2) {
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark {
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row:first-child {
|
||||||
|
div {
|
||||||
|
border-top: 1px solid #ccc;
|
||||||
|
background: #eee;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
color: #000;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value-col {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user