admin-vben5/apps/web-antd/src/views/monitor/cache/components/CommandChart.vue

80 lines
1.6 KiB
Vue
Raw Normal View History

2024-08-07 08:57:56 +08:00
<script lang="ts">
import type { EChartsOption } from 'echarts';
import { defineComponent, onMounted, ref, watch } from 'vue';
2024-08-07 08:57:56 +08:00
import { EchartsUI, type EchartsUIType, useEcharts } from '@vben/chart-ui';
2024-08-07 08:57:56 +08:00
import { preferences } from '@vben/preferences';
export default defineComponent({
components: { EchartsUI },
2024-08-07 08:57:56 +08:00
name: 'CommandChart',
props: {
data: {
default: () => [],
type: Array,
},
},
setup(props, { expose }) {
expose({});
const chartRef = ref<EchartsUIType>();
const { renderEcharts } = useEcharts(chartRef);
2024-08-07 08:57:56 +08:00
watch(
() => props.data,
() => {
if (!chartRef.value) return;
2024-08-07 08:57:56 +08:00
setEchartsOption(props.data);
},
{ immediate: true },
);
onMounted(() => {
setEchartsOption(props.data);
});
watch(
() => preferences.theme.mode,
() => {
2024-08-07 08:57:56 +08:00
setEchartsOption(props.data);
},
);
function setEchartsOption(data: any[]) {
const option: EChartsOption = {
series: [
{
animationDuration: 1000,
animationEasing: 'cubicInOut',
center: ['50%', '50%'],
2024-08-07 08:57:56 +08:00
data,
name: '命令',
radius: [15, 95],
roseType: 'radius',
type: 'pie',
},
],
tooltip: {
formatter: '{a} <br/>{b} : {c} ({d}%)',
trigger: 'item',
},
};
renderEcharts(option);
2024-08-07 08:57:56 +08:00
}
return {
chartRef,
2024-08-07 08:57:56 +08:00
};
},
});
</script>
<template>
<div class="flex h-[400px] w-full items-center justify-center">
<EchartsUI ref="chartRef" />
</div>
2024-08-07 08:57:56 +08:00
</template>
<style scoped></style>