wujingjing
2024-11-12 91fbe6ea41b0451a17aa1f6654faa9806b7f1817
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
import * as echarts from 'echarts';
import type { Ref } from 'vue';
import { onMounted, shallowRef } from 'vue';
import { debounce } from '/@/utils/util';
 
export type UseDrawChatChartOption = {
    chartRef: Ref<HTMLDivElement>;
    drawChart: () => void;
};
export const useDrawChatChart = (option: UseDrawChatChartOption) => {
    const { chartRef, drawChart } = option;
    const chartInstance = shallowRef<echarts.ECharts>(null);
 
    let resizeChart = null;
    const chartContainerResize = ({ width, height }) => {
        resizeChart?.(width, height);
    };
 
    const initChart = () => {
        setTimeout(() => {
            const instance = echarts.getInstanceByDom(chartRef.value);
            if (!instance) {
                const parent = chartRef.value.parentElement;
                const parentBound = parent.getBoundingClientRect();
 
                chartInstance.value = echarts.init(chartRef.value, undefined, {
                    width: parentBound.width,
                    height: parentBound.height,
                    locale: 'ZH',
                });
 
                resizeChart = debounce((width, height) => {
                    chartInstance.value.resize({
                        width: width,
                        height: height,
                    });
                });
            }
 
            drawChart();
        }, 100);
    };
 
    onMounted(() => {
        initChart();
    });
 
    return {
        chartContainerResize,
        chartInstance,
        
    };
};