gaoluyang
2026-06-24 bfdc0e0e6d5e47aa501f9b6fadd143d9c97cf00a
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<script lang="ts" setup>
import type { Dayjs } from 'dayjs';
 
import type { Ref } from 'vue';
 
import { computed, nextTick, onMounted, ref, toRaw, watch } from 'vue';
 
import { useVbenModal } from '../../../../../../../packages/effects/common-ui/src';
import { IconifyIcon } from '../../../../../../../packages/icons/src';
 
import { Button, DatePicker, Input, Tooltip } from 'ant-design-vue';
 
import CycleConfig from './CycleConfig.vue';
import DurationConfig from './DurationConfig.vue';
 
const props = defineProps({
  businessObject: {
    type: Object,
    default: () => ({}),
  },
});
 
const bpmnInstances = () => (window as any).bpmnInstances;
const type: Ref<string> = ref('time');
const condition: Ref<string> = ref('');
const valid: Ref<boolean> = ref(false);
const dateValue = ref<Dayjs>();
 
const placeholder = computed<string>(() => {
  if (type.value === 'time') return '请输入时间';
  if (type.value === 'duration') return '请输入持续时长';
  if (type.value === 'cycle') return '请输入循环表达式';
  return '';
});
const helpText = computed<string>(() => {
  if (type.value === 'time') return '选择具体时间';
  if (type.value === 'duration') return 'ISO 8601格式,如PT1H';
  if (type.value === 'cycle') return 'CRON表达式或ISO 8601周期';
  return '';
});
const helpHtml = computed<string>(() => {
  if (type.value === 'duration') {
    return `指定定时器之前要等待多长时间。S表示秒,M表示分,D表示天;P表示时间段,T表示精确到时间的时间段。<br>
    时间格式依然为ISO 8601格式,一年两个月三天四小时五分六秒内,可以写成P1Y2M3DT4H5M6S。<br>
    P是开始标记,T是时间和日期分割标记,没有日期只有时间T是不能省去的,比如1小时执行一次应写成PT1H。`;
  }
  if (type.value === 'cycle') {
    return `支持CRON表达式(如0 0/30 * * * ?)或ISO 8601周期(如R3/PT10M)。`;
  }
  if (type.value === 'time') {
    return `支持ISO 8601格式的时间(如2024-12-12T12:12:12)`;
  }
  return '';
});
 
// 初始化和监听
function syncFromBusinessObject(): void {
  if (props.businessObject) {
    const timerDef = (props.businessObject.eventDefinitions || [])[0];
    if (timerDef) {
      if (timerDef.timeDate) {
        type.value = 'time';
        condition.value = timerDef.timeDate.body;
      } else if (timerDef.timeDuration) {
        type.value = 'duration';
        condition.value = timerDef.timeDuration.body;
      } else if (timerDef.timeCycle) {
        type.value = 'cycle';
        condition.value = timerDef.timeCycle.body;
      }
    }
  }
}
onMounted(syncFromBusinessObject);
 
// 切换类型
function setType(t: string) {
  type.value = t;
  condition.value = '';
  updateNode();
}
 
// 输入校验
watch([type, condition], () => {
  valid.value = validate();
});
 
function validate(): boolean {
  if (type.value === 'time') {
    return !!condition.value && !Number.isNaN(Date.parse(condition.value));
  }
  if (type.value === 'duration') {
    return /^P.*$/.test(condition.value);
  }
  if (type.value === 'cycle') {
    // 支持CRON表达式或ISO 8601周期格式:R{n}/P... 或 R{n}/{date}/P...
    return /^(?:[0-9*/?, ]+|R\d+(?:\/[^/]+)*\/P.*)$/.test(condition.value);
  }
  return true;
}
 
// 选择时间 Modal
const [DateModal, dateModalApi] = useVbenModal({
  title: '选择时间',
  class: 'w-[400px]',
  onConfirm: onDateConfirm,
});
 
function onDateChange(val: any) {
  dateValue.value = val || undefined;
}
function onDateConfirm(): void {
  if (dateValue.value) {
    condition.value = dateValue.value.toISOString();
    dateModalApi.close();
    updateNode();
  }
}
 
// 持续时长 Modal
const [DurationModal, durationModalApi] = useVbenModal({
  title: '时间配置',
  class: 'w-[600px]',
  onConfirm: onDurationConfirm,
});
 
function onDurationChange(val: string) {
  condition.value = val;
}
function onDurationConfirm(): void {
  durationModalApi.close();
  updateNode();
}
 
// 循环配置 Modal
const [CycleModal, cycleModalApi] = useVbenModal({
  title: '时间配置',
  class: 'w-[800px]',
  onConfirm: onCycleConfirm,
});
 
function onCycleChange(val: string) {
  condition.value = val;
}
function onCycleConfirm(): void {
  cycleModalApi.close();
  updateNode();
}
 
// 帮助说明 Modal
const [HelpModal, helpModalApi] = useVbenModal({
  class: 'w-[600px]',
  title: '格式说明',
  showCancelButton: false,
  confirmText: '关闭',
  onConfirm: () => helpModalApi.close(),
});
 
// 点击输入框时弹窗
function handleInputClick(): void {
  if (type.value === 'time') dateModalApi.open();
  if (type.value === 'duration') durationModalApi.open();
  if (type.value === 'cycle') cycleModalApi.open();
}
 
// 同步到节点
function updateNode(): void {
  const moddle = (window.bpmnInstances as any)?.moddle;
  const modeling = (window.bpmnInstances as any)?.modeling;
  const elementRegistry = (window.bpmnInstances as any)?.elementRegistry;
  if (!moddle || !modeling || !elementRegistry) return;
 
  // 获取元素
  if (!props.businessObject || !props.businessObject.id) return;
  const element = elementRegistry.get(props.businessObject.id);
  if (!element) return;
 
  // 1. 复用原有 timerDef,或新建
  let timerDef =
    element.businessObject.eventDefinitions &&
    element.businessObject.eventDefinitions[0];
  if (!timerDef) {
    timerDef = bpmnInstances().bpmnFactory.create(
      'bpmn:TimerEventDefinition',
      {},
    );
    modeling.updateProperties(element, {
      eventDefinitions: [timerDef],
    });
  }
 
  // 2. 清空原有
  delete timerDef.timeDate;
  delete timerDef.timeDuration;
  delete timerDef.timeCycle;
 
  // 3. 设置新的
  if (type.value === 'time' && condition.value) {
    timerDef.timeDate = bpmnInstances().bpmnFactory.create(
      'bpmn:FormalExpression',
      {
        body: condition.value,
      },
    );
  } else if (type.value === 'duration' && condition.value) {
    timerDef.timeDuration = bpmnInstances().bpmnFactory.create(
      'bpmn:FormalExpression',
      {
        body: condition.value,
      },
    );
  } else if (type.value === 'cycle' && condition.value) {
    timerDef.timeCycle = bpmnInstances().bpmnFactory.create(
      'bpmn:FormalExpression',
      {
        body: condition.value,
      },
    );
  }
 
  bpmnInstances().modeling.updateProperties(toRaw(element), {
    eventDefinitions: [timerDef],
  });
}
 
watch(
  () => props.businessObject,
  (val) => {
    if (val) {
      nextTick(() => {
        syncFromBusinessObject();
      });
    }
  },
  { immediate: true },
);
</script>
 
<template>
  <div class="panel-tab__content">
    <div class="mt-2 flex items-center">
      <span class="w-14">类型:</span>
      <Button.Group>
        <Button
          size="small"
          :type="type === 'time' ? 'primary' : 'default'"
          @click="setType('time')"
        >
          时间
        </Button>
        <Button
          size="small"
          :type="type === 'duration' ? 'primary' : 'default'"
          @click="setType('duration')"
        >
          持续
        </Button>
        <Button
          size="small"
          :type="type === 'cycle' ? 'primary' : 'default'"
          @click="setType('cycle')"
        >
          循环
        </Button>
      </Button.Group>
      <IconifyIcon
        icon="ant-design:check-circle-filled"
        v-if="valid"
        class="ml-2 text-green-500"
      />
    </div>
    <div class="mt-2 flex items-center gap-1">
      <span class="w-14">条件:</span>
      <Input
        v-model:value="condition"
        :placeholder="placeholder"
        class="w-full"
        :readonly="type !== 'duration' && type !== 'cycle'"
        @click="handleInputClick"
        @blur="updateNode"
      >
        <template #suffix>
          <Tooltip v-if="!valid" title="格式错误" placement="top">
            <IconifyIcon
              icon="ant-design:exclamation-circle-filled"
              class="text-orange-400"
            />
          </Tooltip>
          <Tooltip :title="helpText" placement="top">
            <IconifyIcon
              icon="ant-design:question-circle-filled"
              class="cursor-pointer text-[#409eff]"
              @click="helpModalApi.open()"
            />
          </Tooltip>
          <Button
            v-if="type === 'time'"
            @click="dateModalApi.open()"
            class="ml-1 flex items-center justify-center"
            shape="circle"
            size="small"
          >
            <IconifyIcon icon="ep:calendar" />
          </Button>
          <Button
            v-if="type === 'duration'"
            @click="durationModalApi.open()"
            class="ml-1 flex items-center justify-center"
            shape="circle"
            size="small"
          >
            <IconifyIcon icon="ep:timer" />
          </Button>
          <Button
            v-if="type === 'cycle'"
            @click="cycleModalApi.open()"
            class="ml-1 flex items-center justify-center"
            shape="circle"
            size="small"
          >
            <IconifyIcon icon="ep:setting" />
          </Button>
        </template>
      </Input>
    </div>
 
    <!-- 时间选择器 -->
    <DateModal>
      <DatePicker
        v-model:value="dateValue"
        show-time
        placeholder="选择日期时间"
        class="w-full"
        @change="onDateChange"
      />
    </DateModal>
 
    <!-- 持续时长选择器 -->
    <DurationModal>
      <DurationConfig :value="condition" @change="onDurationChange" />
    </DurationModal>
 
    <!-- 循环配置器 -->
    <CycleModal>
      <CycleConfig :value="condition" @change="onCycleChange" />
    </CycleModal>
 
    <!-- 帮助说明 -->
    <HelpModal>
      <!-- eslint-disable-next-line vue/no-v-html -->
      <div v-html="helpHtml"></div>
    </HelpModal>
  </div>
</template>