index.vue
2.18 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
<template>
<n-select
multiple
v-model:value="option.value.selectValue"
:options="option.value.dataset"
:style="`width:${w}px;`"
:to="false"
@update:value="onChange"
/>
</template>
<script setup lang="ts">
import { PropType, toRefs, shallowReactive, watch } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
import { useChartInteract } from '@/hooks/external/useChartSelectInteract.hook'
import { InteractEventOn } from '@/enums/eventEnum'
import { ComponentInteractParamsEnum } from './interact'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const { w, h } = toRefs(props.chartConfig.attr)
const {
textColor,
textBackgroundColor,
iconColor,
textBackgroundColorAlpha,
textSelectModalBackgroundColor,
textSelectModalTextColor
} = toRefs(props.chartConfig.option.selectStyleOptions) as any
const option = shallowReactive({
value: {
selectValue: props.chartConfig.option.selectValue,
dataset: props.chartConfig.option.dataset
}
})
// 监听事件改变
const onChange = (v: string[]) => {
// 存储到联动数据
useChartInteract(
props.chartConfig,
useChartEditStore,
{ [ComponentInteractParamsEnum.DATA]: v },
InteractEventOn.CHANGE
)
}
// 手动更新
watch(
() => props.chartConfig.option,
(newData: any) => {
option.value = newData
onChange(newData.selectValue)
},
{
immediate: true,
deep: true
}
)
</script>
<style lang="css"></style>
<style lang="scss" scoped>
@include deep() {
.n-base-selection-label {
height: v-bind('h + "px"');
display: flex;
align-items: center;
background: v-bind('textBackgroundColor') !important;
opacity: v-bind('textBackgroundColorAlpha') !important;
}
.n-base-selection-input__content {
color: v-bind('textColor');
}
.n-base-icon {
color: v-bind('iconColor') !important;
}
.n-select-menu {
background: v-bind('textSelectModalBackgroundColor') !important;
}
.n-base-select-option__content {
color: v-bind('textSelectModalTextColor') !important;
}
}
</style>