222
schangxiang@126.com
2025-04-30 9bec4dcae002f36aa23231da11cb03a156b40110
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import { defineComponent, computed, ref, nextTick } from 'vue'
import styles from './ConditionDialog.module.scss'
import BaseDialog from '@/components/BaseDialog/index.vue'
import DyForm from '@/components/DyForm/DyForm'
import { CirclePlus, Delete } from '@element-plus/icons-vue'
import NodeDialog from '../NodeDialog/NodeDialog'
import {
  ConditionType,
  CompositeCondition,
  ConditionItemType,
} from '../../core/enum'
import { Condition } from '../../type'
import { v4 as uuidv4 } from 'uuid'
import { cloneDeep } from 'lodash'
import { _t } from '@/libs/Language/Language'
interface CompositeCondition {
  Expression: string
  Label: string
  NOT: boolean
  Operator: string
  Property: string
  Value: string
  // Value: {
  //   '@_xsi:type': string
  //   '#text': string | number // Assuming "#text" can be either string or number
  // }
}
export default defineComponent({
  name: '条件集',
  props: {
    formItemProps: {
      type: Array,
      default: [],
    },
    conditionOptions: {
      type: Array,
      default: [],
    },
    formData: {
      type: Object,
      default: () => ({}),
    },
    onConditionChange: {
      type: Function,
      default: () => null,
    },
    getCondition: {
      type: Function,
      default: () => null,
    },
  },
  emits: ['update:modelValue', 'update:formData', 'updateFormData'],
 
  setup(props, ctx) {
    const edgeType = ref('')
    const visible = ref(false)
    const formRef = ref(null)
    const dataSource = ref([])
    const treeRef = ref()
    const nodeVisible = ref(false)
    const currentFormData = ref({})
    const formItemProps = ref<any[]>([])
    const currentNode = ref<{
      nodeData: {
        children?: any[]
        [key: string]: any
      } | null
    }>({
      nodeData: null,
    })
    const formData = ref<Condition | Record<string, any>>({})
 
    const currentCondition = computed(() => {
      const type = edgeType.value
      return props.getCondition(type, currentFormData.value)
    })
    /**
     * 是否是复合类型
     */
    const onOpenCondition = () => {
      const nodeId = uuidv4()
      formData.value = cloneDeep(props.formData)
      formData.value.nodeId = nodeId
      formData.value.root = true
      visible.value = true
      nextTick(async () => {
        await handleNodeClick(formData.value as Condition)
        treeRef.value.setCurrentKey(nodeId)
      })
    }
 
    const onConfirmBtn = () => {
      ctx.emit('updateFormData', formData.value)
      visible.value = false
    }
 
    const onAddNode = (data: Condition) => {
      currentNode.value.nodeData = data
      nodeVisible.value = true
    }
 
    const onDeleteNode = (node: any, data: Condition) => {
      const nodeId = data.nodeId
      if (node.parent) {
        node.parent.data.children = node.parent.data.children.filter(
          (data: Condition) => {
            data.nodeId !== nodeId
          }
        )
        nextTick(async () => {
          await handleNodeClick(formData.value as Condition)
        })
      }
    }
 
    const handleNodeClick = async (data: Condition | any) => {
      const formItems = await props.onConditionChange(
        data[ConditionType],
        false
      )
      formItemProps.value = [
        {
          label: _t('条件'),
          prop: ConditionType,
          clearable: true,
          el: 'select',
          placeholder: _t('请选择'),
          options: props.conditionOptions,
          disabled: true,
        },
        ...formItems,
      ]
      currentFormData.value = data
      edgeType.value = data[ConditionType]
      setCurrentKey(data.nodeId)
    }
    // 节点类型弹窗
 
    const onConditionDialog = async (data: Condition) => {
      const nodeData = currentNode.value.nodeData
      if (nodeData) {
        data.nodeId = uuidv4()
        nodeData.children = nodeData.children || []
        nodeData.children.push(data)
        await handleNodeClick(data)
        setCurrentKey(data.nodeId)
      }
    }
 
    const setCurrentKey = (nodeId: string) => {
      nextTick(() => {
        treeRef.value.setCurrentKey(nodeId)
      })
    }
 
    return () => {
      return (
        <div class={styles.conditionDialog}>
          {/* <el-input
            readonly
            placeholder="请选择条件集"
            v-model={condition.value}
            onClick={onOpenCondition}
          /> */}
          <el-button
            onClick={onOpenCondition}
            style="width: 200px;"
            size="small"
          >
            {_t('集合')}
          </el-button>
          <NodeDialog
            options={props.conditionOptions}
            v-model:visible={nodeVisible.value}
            onConfirm={onConditionDialog}
          ></NodeDialog>
 
          <BaseDialog
            width="800px"
            title={_t('条件集')}
            v-model={visible.value}
            onClose={() => (visible.value = false)}
            onConfirm={onConfirmBtn}
            destroy-on-close
          >
            {formData.value.nodeId ? (
              <div class={styles.dialog}>
                <div class={styles.leftBar}>
                  <el-tree
                    style="max-width: 200px"
                    ref={treeRef}
                    class={styles.tree}
                    data={[formData.value]}
                    node-key="nodeId"
                    onNodeClick={handleNodeClick}
                    default-expand-all
                    highlight-current
                    expand-on-click-node={false}
                    v-slots={{
                      default: ({ node, data }: any) => {
                        return (
                          <div class={styles.nodeStyle}>
                            <span class={styles.label}>
                              {data.Label || data.label || _t('请输入标签内容')}
                            </span>
                            <div class={styles.tools}>
                              {data[ConditionType] === CompositeCondition ? (
                                <el-button
                                  onClick={() => onAddNode(data)}
                                  type="primary"
                                  link
                                >
                                  <el-icon>
                                    <CirclePlus />
                                  </el-icon>
                                </el-button>
                              ) : null}
                              <el-button
                                onClick={() => onDeleteNode(node, data)}
                                class={styles.box}
                                type="primary"
                                link
                                disabled={data.root}
                              >
                                <el-icon>
                                  <Delete />
                                </el-icon>
                              </el-button>
                            </div>
                          </div>
                        )
                      },
                    }}
                  ></el-tree>
                </div>
                <div class={styles.content}>
                  <DyForm
                    // ref={formConditionRef}
                    isLine={true}
                    formItemProps={formItemProps.value}
                    v-model:formData={currentFormData.value}
                    labelWidth="140px"
                  ></DyForm>
                  <div class={styles.condition}>{currentCondition.value}</div>
                </div>
              </div>
            ) : null}
          </BaseDialog>
        </div>
      )
    }
  },
})