TimeLineChart.vue
3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<script setup lang="ts">
import { ref, Ref, onMounted, computed, watch } from 'vue';
import { useECharts } from '/@/hooks/web/useECharts';
import { useAppStore } from '/@/store/modules/app';
import { useI18n } from '/@/hooks/web/useI18n';
import { Empty } from 'ant-design-vue';
import { EChartsOption, SeriesOption } from 'echarts';
const { t } = useI18n();
const props = withDefaults(
defineProps<{
timeType: string;
chartsData?: Partial<EChartsOption>;
}>(),
{
timeType: 'week',
chartsData: () => ({}),
}
);
const emits = defineEmits(['emitTimeRange']);
const appStore = useAppStore();
const timeRange = ref('week');
const timeRangeList = ref([
{ label: `1${t('home.index.timeUnit.hour')}`, value: 'hour', interval: 1000 * 60 * 5 },
{ label: `1${t('home.index.timeUnit.day')}`, value: 'day', interval: 1000 * 60 * 60 * 1 },
{
label: `7${t('home.index.timeUnit.day')}`,
value: 'week',
interval: 1000 * 60 * 60 * 1,
},
{
label: `30${t('home.index.timeUnit.day')}`,
value: 'month',
interval: 1000 * 60 * 60 * 24,
},
]);
const skinName = computed(() => {
return appStore.getDarkMode === 'light' ? '#ffffff' : '#151515';
});
const chartRef = ref<HTMLDivElement | null>(null);
const { setOptions, resize } = useECharts(chartRef as Ref<HTMLDivElement>);
const getOptions = (): EChartsOption => {
const { xAxis, series } = props.chartsData || {};
return {
backgroundColor: skinName.value,
tooltip: {
trigger: 'axis',
},
grid: {
left: '1%',
right: '2%',
bottom: '1%',
containLabel: true,
},
xAxis,
yAxis: {
type: 'value',
axisLabel: { formatter: '{value}' },
},
series,
};
};
watch(
() => appStore.getDarkMode,
(target) => {
const backgroundColor = target === 'light' ? '#ffffff' : '#151515';
setOptions &&
setOptions({
...getOptions(),
backgroundColor,
});
}
);
watch(
() => props.chartsData,
() => {
setOptions(getOptions());
},
{
deep: true,
immediate: true,
}
);
onMounted(() => {
setOptions(getOptions());
//自适应
window.addEventListener('resize', () => {
resize();
setOptions(getOptions());
});
});
const handleTimeRangeChange = (e: any) => {
const startTs = Date.now() - e.target.value;
const endTs = Date.now();
emits('emitTimeRange', e.target.value, startTs, endTs);
};
</script>
<template>
<a-card :title="t('application.record.text.timeLineTitle')" class="w-full h-120">
<template #extra>
<a-radio-group @change="handleTimeRangeChange" v-model:value="timeRange" button-style="solid">
<template v-for="(timeItem, index) in timeRangeList" :key="timeItem.value">
<div style="display: none">{{ index }}</div>
<a-radio-button :value="timeItem.value">
{{ timeItem.label }}
</a-radio-button>
</template>
</a-radio-group>
</template>
<div
v-show="(chartsData?.series as SeriesOption[])?.length"
ref="chartRef"
class="w-full h-80"
></div>
<div
v-show="!(chartsData?.series as SeriesOption[])?.length"
class="w-full h-72 flex justify-center items-center"
>
<Empty :image="Empty.PRESENTED_IMAGE_SIMPLE" />
</div>
</a-card>
</template>
<style scoped></style>