|
|
@@ -0,0 +1,72 @@
|
|
|
+<template>
|
|
|
+ <v-chart
|
|
|
+ ref="vChartRef"
|
|
|
+ :theme="themeColor"
|
|
|
+ :option="option"
|
|
|
+ :manual-update="isPreview()"
|
|
|
+ :update-options="{ replaceMerge: replaceMergeArr }"
|
|
|
+ autoresize
|
|
|
+ >
|
|
|
+ </v-chart>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import { PropType, computed, watch, ref, nextTick } from 'vue'
|
|
|
+import VChart from 'vue-echarts'
|
|
|
+import { use } from 'echarts/core'
|
|
|
+import { CanvasRenderer } from 'echarts/renderers'
|
|
|
+import { ScatterChart } from 'echarts/charts'
|
|
|
+import config, { includes, seriesItem } from './config'
|
|
|
+import { mergeTheme } from '@/packages/public/chart'
|
|
|
+import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
|
|
+import { useChartDataFetch } from '@/hooks'
|
|
|
+import { isPreview } from '@/utils'
|
|
|
+import { DatasetComponent, GridComponent, TooltipComponent, LegendComponent } from 'echarts/components'
|
|
|
+
|
|
|
+const props = defineProps({
|
|
|
+ themeSetting: {
|
|
|
+ type: Object,
|
|
|
+ required: true
|
|
|
+ },
|
|
|
+ themeColor: {
|
|
|
+ type: Object,
|
|
|
+ required: true
|
|
|
+ },
|
|
|
+ chartConfig: {
|
|
|
+ type: Object as PropType<config>,
|
|
|
+ required: true
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+use([DatasetComponent, CanvasRenderer, ScatterChart, GridComponent, TooltipComponent, LegendComponent])
|
|
|
+
|
|
|
+const replaceMergeArr = ref<string[]>()
|
|
|
+
|
|
|
+const option = computed(() => {
|
|
|
+ return mergeTheme(props.chartConfig.option, props.themeSetting, includes)
|
|
|
+})
|
|
|
+
|
|
|
+// dataset 无法变更条数的补丁
|
|
|
+watch(
|
|
|
+ () => props.chartConfig.option.dataset,
|
|
|
+ (newData, oldData) => {
|
|
|
+ if (newData?.length !== oldData?.length) {
|
|
|
+ replaceMergeArr.value = ['series']
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
+ props.chartConfig.option.series = newData.map((item: { dimensions: any[] }, index: number) => ({
|
|
|
+ ...seriesItem,
|
|
|
+ name: item.dimensions[0],
|
|
|
+ datasetIndex: index
|
|
|
+ }))
|
|
|
+ nextTick(() => {
|
|
|
+ replaceMergeArr.value = []
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ deep: false
|
|
|
+ }
|
|
|
+)
|
|
|
+
|
|
|
+const { vChartRef } = useChartDataFetch(props.chartConfig, useChartEditStore)
|
|
|
+</script>
|