-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathMultiInputAction.vue
More file actions
2706 lines (2371 loc) · 72.9 KB
/
MultiInputAction.vue
File metadata and controls
2706 lines (2371 loc) · 72.9 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
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<template>
<ActionDialog
:visible="visible"
:title="config.title"
:width="config.width || 600"
:height="config.height"
:canceled-on-touch-outside="!config.keep"
:module="module"
:extend="extend"
:api-url="apiUrl"
@close="handleCancel"
@toast="(message, type) => emit('toast', message, type)"
@reset="() => emit('reset')"
>
<div class="multi-input-action-modern">
<!-- 消息区域 -->
<div v-if="config.msg" class="message-section">
<div class="message-content">
<div class="message-icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd"/>
</svg>
</div>
<p class="message-text">{{ currentMessage }}</p>
</div>
</div>
<!-- 图片区域 -->
<div v-if="config.imageUrl" class="media-section">
<div class="image-container">
<img
:src="config.imageUrl"
:style="{ height: config.imageHeight ? `${config.imageHeight}px` : 'auto' }"
class="action-image-modern"
alt="配置图片"
/>
</div>
</div>
<!-- 输入项列表 -->
<div class="inputs-section">
<div class="inputs-container">
<div
v-for="(input, index) in inputItems"
:key="input.id || index"
class="input-item"
>
<!-- 输入项标签 -->
<div v-if="input.name" class="input-label-container">
<label class="input-label">
{{ input.name }}
<span v-if="input.required" class="required-indicator">*</span>
<button
v-if="input.help"
class="help-button"
@click="showHelpPopup(input.help)"
title="查看帮助信息"
>
?
</button>
</label>
</div>
<!-- 输入区域 -->
<div class="input-group">
<!-- 快速选择 - 在输入框上方,只显示非特殊选择器,且非多选模式 -->
<div v-if="input.selectData && hasNonSpecialOptions(input.selectData) && !input.multiSelect" class="quick-select">
<div class="quick-select-options">
<button
v-for="option in getNonSpecialOptions(input.selectData)"
:key="option.value"
class="quick-select-tag"
:class="{ 'selected': isOptionSelected(index, option) }"
@click="selectQuickOption(index, option)"
>
{{ option.name }}
</button>
</div>
</div>
<!-- 日期选择器 (当selectData为[calendar]且inputType为0时) -->
<div v-if="(!input.multiLine || input.multiLine <= 1) && !input.onlyQuickSelect && input.selectData === '[calendar]' && input.inputType === 0" class="input-container">
<div class="input-wrapper-modern">
<DatePicker
v-model="inputValues[index]"
:placeholder="input.tip || input.name"
class="date-picker-modern"
style="width: 100%;"
:class="{
error: inputErrors[index],
success: !inputErrors[index] && inputValues[index] && input.required
}"
format="YYYY-MM-DD"
@change="handleDateChange(index, $event)"
/>
</div>
</div>
<!-- 单行输入 -->
<div v-else-if="(!input.multiLine || input.multiLine <= 1) && !input.onlyQuickSelect" class="input-container">
<div class="input-wrapper-modern">
<input
v-model="inputValues[index]"
:type="getInputType(input)"
:placeholder="input.tip || input.name"
class="input-field-modern"
:class="{
error: inputErrors[index],
success: !inputErrors[index] && inputValues[index] && input.required
}"
:readonly="input.inputType === 0"
@input="handleInputChange(index, $event)"
@blur="validateInput(index)"
/>
<div class="input-actions">
<!-- 特殊输入框图标按钮 -->
<button
v-if="getSpecialInputType(input)"
class="special-input-btn"
:class="`special-${getSpecialInputType(input)}`"
@click="handleSpecialInput(index, getSpecialInputType(input))"
:title="getSpecialInputTitle(getSpecialInputType(input))"
>
<!-- 日历图标 -->
<svg v-if="getSpecialInputType(input) === 'calendar'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zM4 7h12v9H4V7z"/>
</svg>
<!-- 文件图标 -->
<svg v-else-if="getSpecialInputType(input) === 'file'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm0 2h12v10H4V5z"/>
</svg>
<!-- 文件夹图标 -->
<svg v-else-if="getSpecialInputType(input) === 'folder'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
</svg>
<!-- 图像图标 -->
<svg v-else-if="getSpecialInputType(input) === 'image'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm12 12H4l4-8 3 6 2-4 3 6z"/>
</svg>
</button>
<!-- 展开选项按钮 (inputType为0时) -->
<button
v-else-if="input.inputType === 0 && input.selectData"
class="expand-options-btn"
@click="openSelectOptions(index)"
title="展开选项"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
<path d="M7 10l5 5 5-5z"/>
</svg>
</button>
<!-- 普通展开按钮 -->
<button
v-else
class="expand-btn"
@click="openTextEditor(index)"
title="打开大文本编辑器"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
<path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 7h14v2H5zm0 4h14v2H5zm0 4h10v2H5z"/>
</svg>
</button>
</div>
</div>
</div>
<!-- 多行输入 -->
<div v-else-if="!input.onlyQuickSelect" class="textarea-container">
<div class="textarea-wrapper-modern">
<textarea
v-model="inputValues[index]"
:placeholder="input.tip || input.name"
:rows="Math.min(input.multiLine || 3, 4)"
class="textarea-field-modern"
:class="{
error: inputErrors[index],
success: !inputErrors[index] && inputValues[index] && input.required
}"
:readonly="input.inputType === 0"
@input="handleInputChange(index, $event)"
@blur="validateInput(index)"
></textarea>
<!-- 特殊输入框图标按钮 -->
<button
v-if="getSpecialInputType(input)"
class="special-input-btn textarea-expand"
:class="`special-${getSpecialInputType(input)}`"
@click="handleSpecialInput(index, getSpecialInputType(input))"
:title="getSpecialInputTitle(getSpecialInputType(input))"
>
<!-- 日历图标 -->
<svg v-if="getSpecialInputType(input) === 'calendar'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zM4 7h12v9H4V7z"/>
</svg>
<!-- 文件图标 -->
<svg v-else-if="getSpecialInputType(input) === 'file'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm0 2h12v10H4V5z"/>
</svg>
<!-- 文件夹图标 -->
<svg v-else-if="getSpecialInputType(input) === 'folder'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
</svg>
<!-- 图像图标 -->
<svg v-else-if="getSpecialInputType(input) === 'image'" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm12 12H4l4-8 3 6 2-4 3 6z"/>
</svg>
</button>
<!-- 普通展开按钮 -->
<button
v-else
class="expand-btn textarea-expand"
@click="openTextEditor(index)"
title="打开大文本编辑器"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
<path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 7h14v2H5zm0 4h14v2H5zm0 4h10v2H5z"/>
</svg>
</button>
</div>
</div>
<!-- 状态指示器 -->
<div class="input-status">
<!-- 错误提示 -->
<div v-if="inputErrors[index]" class="error-message">
<svg width="14" height="14" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293-1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd"/>
</svg>
<span>{{ inputErrors[index] }}</span>
</div>
<!-- 字符计数 -->
<div v-if="inputValues[index] && inputValues[index].length > 0" class="char-count">
{{ inputValues[index].length }} 字符
</div>
</div>
</div>
<!-- 删除按钮(仅增强模式且可删除时显示) -->
<button
v-if="isEnhanced && inputItems.length > 1"
class="remove-btn"
@click="removeInputItem(index)"
title="删除此项"
>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 6L6 18" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 6l12 12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
</div>
</div>
<!-- 增强功能区域 -->
<div v-if="isEnhanced" class="enhanced-section">
<div class="enhanced-controls">
<!-- 添加新输入项 -->
<button
v-if="config.allowAdd"
class="btn-modern btn-secondary"
@click="addInputItem"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="12" y1="5" x2="12" y2="19" stroke="currentColor" stroke-width="2"/>
<line x1="5" y1="12" x2="19" y2="12" stroke="currentColor" stroke-width="2"/>
</svg>
添加项目
</button>
<!-- 批量操作 -->
<div v-if="config.allowBatch" class="batch-controls">
<button
class="btn-modern btn-secondary"
@click="clearAll"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<polyline points="3,6 5,6 21,6" stroke="currentColor" stroke-width="2"/>
<path d="m19,6v14a2,2 0 0,1 -2,2H7a2,2 0 0,1 -2,-2V6m3,0V4a2,2 0 0,1 2,-2h4a2,2 0 0,1 2,2v2" stroke="currentColor" stroke-width="2"/>
</svg>
清空全部
</button>
<button
class="btn-modern btn-secondary"
@click="fillExample"
>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" stroke="currentColor" stroke-width="2"/>
<polyline points="14,2 14,8 20,8" stroke="currentColor" stroke-width="2"/>
<line x1="16" y1="13" x2="8" y2="13" stroke="currentColor" stroke-width="2"/>
<line x1="16" y1="17" x2="8" y2="17" stroke="currentColor" stroke-width="2"/>
<polyline points="10,9 9,9 8,9" stroke="currentColor" stroke-width="2"/>
</svg>
填充示例
</button>
</div>
</div>
</div>
<!-- 超时提示 -->
<div v-if="config.timeout && timeLeft > 0" class="timeout-section">
<div class="timeout-indicator">
<div class="timeout-icon">
<svg width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z" clip-rule="evenodd"/>
</svg>
</div>
<span class="timeout-text">{{ timeLeft }}秒后自动关闭</span>
<div class="timeout-progress">
<div
class="timeout-progress-bar"
:style="{ width: `${(timeLeft / config.timeout) * 100}%` }"
></div>
</div>
</div>
</div>
</div>
<template #footer>
<div class="modern-footer">
<!-- 取消按钮 -->
<button
v-if="showCancelButton"
class="btn-modern btn-secondary"
@click="handleCancel"
>
<span>取消</span>
</button>
<!-- 重置按钮 - 仅在 button=3 时显示 -->
<button
v-if="showResetButton"
class="btn-modern btn-secondary"
@click="handleReset"
>
<span>重置</span>
</button>
<!-- 确定按钮 -->
<button
v-if="showOkButton"
class="btn-modern btn-primary"
:class="{ disabled: !isValid }"
:disabled="!isValid"
@click="handleSubmit"
>
<span>确定</span>
<svg v-if="isValid" width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
</svg>
</button>
</div>
</template>
</ActionDialog>
<!-- 大文本编辑器弹窗 -->
<ActionDialog
:visible="showTextEditor"
title="大文本编辑器"
:width="800"
@close="closeTextEditor"
>
<div class="text-editor">
<textarea
ref="textEditorRef"
v-model="editorText"
class="text-editor-textarea"
placeholder="请输入文本内容..."
></textarea>
</div>
<template #footer>
<div class="modern-footer">
<button class="btn-modern btn-secondary" @click="closeTextEditor">
取消
</button>
<button class="btn-modern btn-primary" @click="saveEditorText">
确定
</button>
</div>
</template>
</ActionDialog>
<!-- 日期选择器弹窗 -->
<ActionDialog
:visible="showDatePicker"
title="选择日期"
:width="400"
@close="handleDateCancel"
>
<div class="date-picker-container">
<DatePicker
v-model="selectedDate"
:style="{ width: '100%' }"
placeholder="请选择日期"
format="YYYY-MM-DD"
@change="handleDateConfirm"
/>
</div>
<template #footer>
<div class="modern-footer">
<button class="btn-modern btn-secondary" @click="handleDateCancel">
取消
</button>
</div>
</template>
</ActionDialog>
<!-- 帮助信息弹窗 -->
<ActionDialog
:visible="showHelpDialog"
title="帮助信息"
:width="500"
@close="closeHelpDialog"
>
<div class="help-content" v-html="helpContent"></div>
<template #footer>
<div class="modern-footer">
<button class="btn-modern btn-primary" @click="closeHelpDialog">
确定
</button>
</div>
</template>
</ActionDialog>
<!-- 选项弹窗 -->
<ActionDialog
:visible="showSelectOptions"
:title="isMultiSelectMode ? '请选择字母' : '请选择'"
:width="isMultiSelectMode ? (currentSelectColumn * 160 + 200) : 400"
@close="showSelectOptions = false"
>
<div class="select-options-content">
<!-- 单选模式 -->
<div v-if="!isMultiSelectMode" class="radio-container">
<a-radio-group
v-model="selectedRadioValue"
@change="handleRadioChange"
direction="vertical"
class="radio-options-list"
>
<a-radio
v-for="option in currentSelectOptions"
:key="option.value"
:value="option.value"
class="radio-option-item"
>
{{ option.name }}
</a-radio>
</a-radio-group>
</div>
<!-- 多选模式 -->
<div v-else class="multiselect-container">
<div class="multiselect-main">
<a-checkbox-group
v-model="selectedCheckboxValues"
class="checkbox-grid"
:style="{ gridTemplateColumns: `repeat(${currentSelectColumn}, 1fr)` }"
>
<a-checkbox
v-for="option in currentSelectOptions"
:key="option.value"
:value="option.value"
class="checkbox-option-item"
>
{{ option.name }}
</a-checkbox>
</a-checkbox-group>
</div>
<div class="multiselect-actions">
<button class="btn-modern btn-secondary btn-small" @click="selectAll">
全选
</button>
<button class="btn-modern btn-secondary btn-small" @click="clearSelection">
全清
</button>
<button class="btn-modern btn-secondary btn-small" @click="invertSelection">
反选
</button>
<button class="btn-modern btn-primary btn-small" @click="confirmMultiSelection">
确定
</button>
</div>
</div>
</div>
<template #footer v-if="!isMultiSelectMode">
<div class="modern-footer">
<button class="btn-modern btn-secondary" @click="showSelectOptions = false">
取消
</button>
<button class="btn-modern btn-primary" @click="confirmRadioSelection">
确认
</button>
</div>
</template>
</ActionDialog>
</template>
<script>
import { ref, computed, watch, reactive, nextTick, onMounted, onUnmounted } from 'vue'
import ActionDialog from './ActionDialog.vue'
import {
ButtonType,
parseSelectData,
debounce,
normalizeButtonType
} from './types.js'
import { executeAction } from '@/api/modules/module.js'
import { showToast } from '@/stores/toast.js'
import siteService from '@/api/services/site'
import { useRouter } from 'vue-router'
import { DatePicker, Radio, RadioGroup, Checkbox, CheckboxGroup } from '@arco-design/web-vue'
export default {
name: 'MultiInputAction',
components: {
ActionDialog,
DatePicker,
'a-radio': Radio,
'a-radio-group': RadioGroup,
'a-checkbox': Checkbox,
'a-checkbox-group': CheckboxGroup
},
props: {
config: {
type: Object,
required: true
},
visible: {
type: Boolean,
default: true
},
// T4接口调用相关属性
module: {
type: String,
default: ''
},
extend: {
type: [Object, String],
default: () => ({})
},
apiUrl: {
type: String,
default: ''
}
},
emits: ['submit', 'cancel', 'close', 'action', 'toast', 'reset', 'special-action'],
setup(props, { emit }) {
const router = useRouter()
const inputValues = ref([])
const inputErrors = ref([])
const inputItems = ref([])
const timeLeft = ref(0)
const timer = ref(null)
const currentMessage = ref(props.config.msg || '')
// 大文本编辑器相关
const textEditorRef = ref(null)
const showTextEditor = ref(false)
const editorText = ref('')
const currentEditIndex = ref(-1)
// 日期选择器相关
const showDatePicker = ref(false)
const currentDateIndex = ref(-1)
const selectedDate = ref('')
// 选项弹窗相关
const showSelectOptions = ref(false)
const currentSelectIndex = ref(-1)
const currentSelectOptions = ref([])
const selectedRadioValue = ref('')
// 多选相关
const selectedCheckboxValues = ref([])
const isMultiSelectMode = ref(false)
const currentSelectColumn = ref(4)
// 帮助弹窗相关
const showHelpDialog = ref(false)
const helpContent = ref('')
// 计算属性
const isEnhanced = computed(() => {
return props.config.type === 'multiInputEnhanced'
})
// 按钮显示逻辑,与InputAction.vue保持一致
const showOkButton = computed(() => {
const button = normalizeButtonType(props.config.button)
return button === ButtonType.OK_CANCEL || button === ButtonType.OK_ONLY || button === ButtonType.CUSTOM
})
const showCancelButton = computed(() => {
const button = normalizeButtonType(props.config.button)
return button === ButtonType.OK_CANCEL || button === ButtonType.CANCEL_ONLY || button === ButtonType.CUSTOM
})
const showResetButton = computed(() => {
const button = normalizeButtonType(props.config.button)
return button === ButtonType.CUSTOM
})
const isValid = computed(() => {
// 检查是否有错误
if (inputErrors.value.some(error => error)) return false
// 检查必填项
for (let i = 0; i < inputItems.value.length; i++) {
const item = inputItems.value[i]
const value = inputValues.value[i]
if (item.required && (!value || !value.trim())) {
return false
}
}
return true
})
// 初始化输入项
const initializeInputs = () => {
const inputs = props.config.input || []
inputItems.value = Array.isArray(inputs) ? inputs : [inputs]
// 初始化输入值和错误状态
inputValues.value = inputItems.value.map(item => item.value || '')
inputErrors.value = inputItems.value.map(() => '')
}
// 获取输入类型
const getInputType = (input) => {
const { inputType = 0 } = input
const typeMap = {
0: 'text',
1: 'password',
2: 'number',
3: 'email',
4: 'url'
}
return typeMap[inputType] || 'text'
}
// 验证单个输入
const validateInput = (index) => {
const item = inputItems.value[index]
const value = inputValues.value[index]
inputErrors.value[index] = ''
// 必填验证
if (item.required && (!value || !value.trim())) {
inputErrors.value[index] = `${item.name || '此字段'}为必填项`
return false
}
// 自定义验证
if (item.validation && value) {
try {
const regex = new RegExp(item.validation)
if (!regex.test(value)) {
inputErrors.value[index] = `${item.name || '输入'}格式不正确`
return false
}
} catch (err) {
console.warn('验证正则表达式错误:', err)
}
}
// 类型验证
const inputType = getInputType(item)
if (inputType === 'email' && value) {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
if (!emailRegex.test(value)) {
inputErrors.value[index] = '请输入有效的邮箱地址'
return false
}
}
if (inputType === 'url' && value) {
try {
new URL(value)
} catch {
inputErrors.value[index] = '请输入有效的URL地址'
return false
}
}
return true
}
// 防抖验证
const debouncedValidate = debounce((index) => {
validateInput(index)
}, 300)
// T4接口调用
const callT4Action = async (actionId, inputData) => {
if (!props.module && !props.apiUrl) {
console.warn('未提供module或apiUrl,无法调用T4接口')
return null
}
try {
const actionData = {
action:actionId,
value: JSON.stringify(inputData)
}
// 添加扩展参数
if (props.extend && props.extend.ext) {
actionData.extend = props.extend.ext
}
// 添加API URL
if (props.apiUrl) {
actionData.apiUrl = props.apiUrl
}
console.log('InputAction调用T4接口:', {
module: props.module,
actionData,
apiUrl: props.apiUrl
})
const response = await executeAction(props.module, actionData)
return response
} catch (error) {
console.error('T4接口调用失败:', error)
throw error
}
}
// 专项动作处理函数
const handleDetailAction = async (actionData) => {
try {
const { skey, ids } = actionData
if (!skey || !ids) {
showToast('详情页跳转参数不完整', 'error')
return
}
const site = siteService.getSiteByKey(skey)
if (!site) {
showToast(`未找到站源: ${skey}`, 'error')
return
}
router.push({
name: 'VideoDetail',
params: { id: ids },
query: {
tempSiteName: site.name,
tempSiteApi: site.api,
tempSiteKey: site.key,
tempSiteExt: site.ext,
fromSpecialAction: 'true',
actionType: '__detail__',
sourcePic: ''
}
})
showToast(`正在加载 ${site.name} 的详情...`, 'info')
} catch (error) {
console.error('详情页跳转失败:', error)
showToast('详情页跳转失败', 'error')
}
}
const handleCopyAction = async (actionData, toastData) => {
try {
const { content } = actionData
if (!content) {
showToast('没有可复制的内容', 'error')
return
}
await navigator.clipboard.writeText(content)
if (!toastData) {
showToast('已复制到剪切板', 'success')
}
} catch (error) {
console.error('复制失败:', error)
showToast('复制失败', 'error')
}
}
const handleSelfSearchAction = async (actionData) => {
try {
const { skey, name, tid, flag, folder } = actionData
const searchParams = {
name: name || '搜索',
tid: tid || '',
flag: flag || '',
folder: folder || ''
}
if (skey) {
const site = siteService.getSiteByKey(skey)
if (site) {
siteService.setCurrentSite(skey)
showToast(`已切换到 ${site.name}`, 'info')
}
}
console.log('执行源内搜索:', searchParams)
showToast('正在执行源内搜索...', 'info')
// 触发special-action事件,传递给父组件处理
emit('special-action', '__self_search__', {
tid: searchParams.tid,
name: searchParams.name,
type_id: searchParams.tid,
type_name: searchParams.name,
actionData: searchParams
})
} catch (error) {
console.error('源内搜索失败:', error)
showToast('源内搜索失败', 'error')
}
}
const handleRefreshListAction = async (actionData) => {
try {
console.log('执行刷新列表:', actionData)
const currentRoute = router.currentRoute.value
const routeName = currentRoute.name
switch (routeName) {
case 'Video':
window.dispatchEvent(new CustomEvent('refreshVideoList', {
detail: actionData
}))
showToast('视频列表已刷新', 'success')
break
case 'Live':
window.dispatchEvent(new CustomEvent('refreshLiveList', {
detail: actionData
}))
showToast('直播列表已刷新', 'success')
break
default:
showToast('列表已刷新', 'success')
break
}
} catch (error) {
console.error('刷新列表失败:', error)
showToast('刷新列表失败', 'error')
}
}
const handleKtvPlayerAction = async (actionData) => {
try {
console.log('执行KTV播放:', actionData)
showToast('正在启动KTV播放...', 'info')
} catch (error) {
console.error('KTV播放失败:', error)
showToast('KTV播放失败', 'error')
}
}
// 事件处理
const handleInputChange = (index, event) => {
const value = event.target.value
inputValues.value[index] = value
debouncedValidate(index)
}
// 处理日期选择器变化
const handleDateChange = (index, value) => {
inputValues.value[index] = value
validateInput(index)
}
const handleSubmit = async () => {
// 验证所有输入
let allValid = true
for (let i = 0; i < inputItems.value.length; i++) {
if (!validateInput(i)) {
allValid = false
}
}
if (!allValid) return
// 构建结果
const result = {}
inputItems.value.forEach((item, index) => {
const key = item.id || item.name || `input_${index}`
result[key] = inputValues.value[index]
})
// 调用T4接口
if (props.config.actionId) {
try {
console.log('多输入框T4接口调用:', props.config.actionId, result)
const response = await callT4Action(props.config.actionId, result)
// 检查响应是否为普通文本
if (typeof response === 'string') {
showToast(response, 'success')
emit('close')
return
}
// 处理JSON格式的专项动作响应
if (response && response.action) {
const actionData = response.action
const toastData = response.toast
if (toastData) {
showToast(toastData, 'success')
}
switch (actionData.actionId) {
case '__keep__':
if (actionData.msg) {
currentMessage.value = actionData.msg
}
if (actionData.reset) {
inputValues.value = inputValues.value.map(() => '')
inputErrors.value = inputErrors.value.map(() => '')
emit('reset')
}
return
case '__detail__':
await handleDetailAction(actionData)
emit('close')
return
case '__copy__':
await handleCopyAction(actionData, toastData)
emit('close')
return
case '__self_search__':
await handleSelfSearchAction(actionData)
emit('close')
return
case '__refresh_list__':
await handleRefreshListAction(actionData)
emit('close')
return
case '__ktvplayer__':
await handleKtvPlayerAction(actionData)
emit('close')
return
default:
if (actionData.type) {
console.log('检测到普通动作,触发新的ActionRenderer:', actionData)
emit('action', actionData)
return
} else {
console.warn('未知的专项动作:', actionData.actionId)
}
break
}
}
} catch (error) {
console.error('多输入框T4接口调用失败:', error)
showToast('操作失败,请重试', 'error')
return
}
}
emit('submit', result)
}
const handleCancel = () => {
emit('cancel')
emit('close')
}
const handleReset = () => {
inputValues.value = inputValues.value.map(() => '')
inputErrors.value = inputErrors.value.map(() => '')
emit('reset')
}
// 大文本编辑器方法
const openTextEditor = (index) => {