-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathInputAction.vue
More file actions
1692 lines (1474 loc) · 44 KB
/
InputAction.vue
File metadata and controls
1692 lines (1474 loc) · 44 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 || 420"
: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="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"
:class="{ 'clickable': config.imageClickCoord }"
@click="handleImageClick"
@load="onImageLoad"
@error="onImageError"
/>
<div v-if="imageCoords" class="coords-display">
<span class="coords-label">点击坐标:</span>
<span class="coords-value">{{ imageCoords.x }}, {{ imageCoords.y }}</span>
</div>
</div>
</div>
<!-- 二维码显示 -->
<div v-if="config.qrcode" class="media-section">
<div class="qrcode-container">
<div class="qrcode-wrapper">
<img
:src="qrcodeUrl"
:alt="config.qrcode"
class="qrcode-image"
@error="onQrcodeError"
/>
</div>
<p class="qrcode-text">{{ config.qrcode }}</p>
</div>
</div>
<!-- 输入区域 fixme 有二维码也要显示这个输入框-->
<div v-if="!config.qrcode" class="input-section">
<!-- 快速选择 - 在输入框上方 -->
<div v-if="quickSelectOptions.length > 0" class="quick-select">
<div class="quick-select-options">
<a-tag
v-for="option in quickSelectOptions"
:key="option.value"
class="quick-select-tag"
@click="selectQuickOption(option)"
>
{{ option.name }}
</a-tag>
</div>
</div>
<div class="input-group">
<label v-if="config.tip" class="input-label">
{{ config.tip }}
</label>
<!-- 单行输入 -->
<div v-if="!isMultiLine" class="input-container">
<div class="input-wrapper-modern">
<input
ref="inputRef"
v-model="inputValue"
:type="inputType"
:placeholder="config.tip || '请输入内容...'"
class="input-field-modern"
:class="{
'error': hasError,
'success': !hasError && inputValue.length > 0
}"
@keyup.enter="handleSubmit"
@input="handleInput"
/>
<div class="input-actions">
<button
class="expand-btn"
@click="openTextEditor"
title="打开大文本编辑器"
>
<svg width="18" height="18" 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 class="textarea-container">
<div class="textarea-wrapper-modern">
<textarea
ref="inputRef"
v-model="inputValue"
:placeholder="config.tip || '请输入内容...'"
:rows="config.multiLine || 4"
class="textarea-field-modern"
:class="{
'error': hasError,
'success': !hasError && inputValue.length > 0
}"
@input="handleInput"
></textarea>
<button
class="expand-btn textarea-expand"
@click="openTextEditor"
title="打开大文本编辑器"
>
<svg width="18" height="18" 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="errorMessage" class="error-message">
<svg width="16" height="16" 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>{{ errorMessage }}</span>
</div>
<!-- 帮助文本 -->
<div v-else-if="config.help" class="help-message">
<svg width="16" height="16" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"/>
</svg>
<span>{{ config.help }}</span>
</div>
<!-- 字符计数 -->
<div v-if="inputValue.length > 0" class="char-count">
{{ inputValue.length }} 字符
</div>
</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>
</template>
<script>
import { ref, computed, watch, nextTick, onMounted, onUnmounted } from 'vue'
import ActionDialog from './ActionDialog.vue'
import {
ButtonType,
parseSelectData,
generateQRCodeUrl,
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 { getActionTimeout } from '@/api/config'
export default {
name: 'InputAction',
components: {
ActionDialog
},
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 inputRef = ref(null)
const textEditorRef = ref(null)
const inputValue = ref('')
const errorMessage = ref('')
const imageCoords = ref(null)
const timeLeft = ref(0)
const timer = ref(null)
const showTextEditor = ref(false)
const editorText = ref('')
const currentMessage = ref(props.config.msg || '')
// 计算属性
const isMultiLine = computed(() => {
return props.config.type === 'edit' || props.config.multiLine > 1
})
const inputType = computed(() => {
const { inputType = 0 } = props.config
const typeMap = {
0: 'text',
1: 'password',
2: 'number',
3: 'email',
4: 'url'
}
return typeMap[inputType] || 'text'
})
const quickSelectOptions = computed(() => {
return parseSelectData(props.config.selectData || '')
})
const qrcodeUrl = computed(() => {
if (!props.config.qrcode) return ''
return generateQRCodeUrl(props.config.qrcode, props.config.qrcodeSize)
})
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 hasError = computed(() => {
return !!errorMessage.value
})
const isValid = computed(() => {
if (hasError.value) return false
if (props.config.required && !inputValue.value.trim()) return false
return true
})
// 验证输入
const validateInput = debounce((value) => {
errorMessage.value = ''
// 必填验证
if (props.config.required && !value.trim()) {
errorMessage.value = '此字段为必填项'
return false
}
// 自定义验证
if (props.config.validation) {
try {
const regex = new RegExp(props.config.validation)
if (!regex.test(value)) {
errorMessage.value = '输入格式不正确'
return false
}
} catch (err) {
console.warn('验证正则表达式错误:', err)
}
}
// 类型验证
if (inputType.value === 'email' && value) {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
if (!emailRegex.test(value)) {
errorMessage.value = '请输入有效的邮箱地址'
return false
}
}
if (inputType.value === 'url' && value) {
try {
new URL(value)
} catch {
errorMessage.value = '请输入有效的URL地址'
return false
}
}
return true
}, 300)
// 事件处理
const handleInput = (event) => {
const value = event.target.value
inputValue.value = value
validateInput(value)
}
const handleSubmit = async () => {
if (!isValid.value) return
const result = {}
// 图片点击坐标
if (props.config.imageClickCoord && imageCoords.value) {
result.imageCoords = imageCoords.value
}
// 输入值
const value = inputValue.value
result[props.config.id || 'value'] = value
// 调用T4接口
if (props.config.actionId) {
try {
console.log('111:',props.config.actionId)
const response = await callT4Action(props.config.actionId, value)
console.log('222:',typeof response)
// 检查响应是否为普通文本
if (typeof response === 'string') {
// 普通文本响应,使用全局Toast显示消息
showToast(response, 'success')
// 立即关闭弹窗,Toast独立显示
emit('close')
return
}
// 处理JSON格式的专项动作响应
if (response && response.action) {
const actionData = response.action
const toastData = response.toast
// 显示toast消息
if (toastData) {
showToast(toastData, 'success')
}
// 处理不同的专项动作
switch (actionData.actionId) {
case '__keep__':
// 保持弹窗打开状态
if (actionData.msg) {
// 更新弹窗内的消息文本
currentMessage.value = actionData.msg
}
if (actionData.reset) {
// 清除输入框内容
inputValue.value = ''
errorMessage.value = ''
emit('reset')
}
return // 不关闭弹窗
case '__detail__':
// 详情页跳转
console.log('详情页跳转:', actionData)
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__':
// KTV播放
await handleKtvPlayerAction(actionData)
emit('close')
return
default:
// 检查是否为普通动作(包含type字段)
if (actionData.type) {
console.log('检测到普通动作,触发新的ActionRenderer:', actionData)
// 通过action事件将新的动作数据传递给ActionRenderer
emit('action', actionData)
// 不要立即关闭弹窗,让ActionRenderer处理新动作配置
return
} else {
console.warn('未知的专项动作:', actionData.actionId)
}
break
}
}
} catch (error) {
console.error('确认按钮T4接口调用失败:', error)
showToast('操作失败,请重试', 'error')
return // 不关闭弹窗
}
}
emit('submit', result)
}
// 专项动作处理函数
const handleDetailAction = async (actionData) => {
try {
const { skey, ids } = actionData
if (!skey || !ids) {
showToast('详情页跳转参数不完整', 'error')
return
}
// 根据skey获取对应的站源信息
const site = siteService.getSiteByKey(skey)
if (!site) {
showToast(`未找到站源: ${skey}`, 'error')
return
}
console.log('跳转到详情页:', {
skey,
ids,
site: site.name
})
console.log('site:',site)
// 跳转到详情页,传递站源信息
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事件,传递给父组件处理
console.log('📝 [InputAction DEBUG] 即将触发 special-action 事件');
console.log('📝 [InputAction DEBUG] 事件参数:', {
actionType: '__self_search__',
eventData: {
tid: searchParams.tid,
name: searchParams.name,
type_id: searchParams.tid,
type_name: searchParams.name,
actionData: searchParams
}
});
emit('special-action', '__self_search__', {
tid: searchParams.tid,
name: searchParams.name,
type_id: searchParams.tid,
type_name: searchParams.name,
actionData: searchParams
})
console.log('📝 [InputAction DEBUG] special-action 事件已触发');
} 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, type: 'video' }
}))
break
case 'Live':
// 直播列表页面刷新
window.dispatchEvent(new CustomEvent('refreshLiveList', {
detail: { ...actionData, type: 'live' }
}))
break
case 'Collection':
// 收藏列表页面刷新
window.dispatchEvent(new CustomEvent('refreshCollectionList', {
detail: { ...actionData, type: 'collection' }
}))
break
case 'History':
// 历史记录页面刷新
window.dispatchEvent(new CustomEvent('refreshHistoryList', {
detail: { ...actionData, type: 'history' }
}))
break
case 'BookGallery':
// 书籍列表页面刷新
window.dispatchEvent(new CustomEvent('refreshBookList', {
detail: { ...actionData, type: 'book' }
}))
break
default:
// 通用刷新事件
window.dispatchEvent(new CustomEvent('refreshList', {
detail: { ...actionData, routeName }
}))
break
}
// 如果指定了特定的刷新类型,也发送对应事件
if (actionData.type) {
window.dispatchEvent(new CustomEvent(`refresh${actionData.type}List`, {
detail: actionData
}))
}
showToast('列表刷新中...', 'info')
// 延迟显示刷新完成提示
setTimeout(() => {
showToast('列表已刷新', 'success')
}, 500)
} catch (error) {
console.error('刷新列表失败:', error)
showToast('刷新列表失败', 'error')
}
}
const handleKtvPlayerAction = async (actionData) => {
try {
const { name, id, url, type = 'ktv' } = actionData
if (!name || !id) {
showToast('KTV播放参数不完整', 'error')
return
}
console.log('启动KTV播放:', {
name,
id,
url,
type
})
// 构建播放参数
const playParams = {
title: name,
videoId: id,
playUrl: url || id, // 如果没有url则使用id作为播放地址
playType: type,
isKtv: true,
// KTV特有参数
showLyrics: true,
enableKaraokeMode: true,
fromAction: '__ktvplayer__'
}
// 检查是否有专门的KTV播放页面
try {
// 尝试跳转到KTV播放页面
router.push({
name: 'KtvPlayer',
params: { id: id },
query: {
title: name,
url: url || id,
type: type,
mode: 'ktv'
}
})
showToast(`正在启动KTV播放: ${name}`, 'success')
} catch (routeError) {
// 如果没有专门的KTV页面,尝试使用通用播放器
console.log('KTV专用页面不存在,使用通用播放器')
// 发送KTV播放事件给播放器组件
window.dispatchEvent(new CustomEvent('startKtvPlay', {
detail: playParams
}))
// 或者跳转到通用播放页面并标记为KTV模式
router.push({
name: 'VideoPlayer',
params: { id: id },
query: {
title: name,
url: url || id,
type: type,
ktvMode: 'true',
showLyrics: 'true',
fromAction: '__ktvplayer__'
}
})
showToast(`正在播放: ${name}`, 'success')
}
} catch (error) {
console.error('KTV播放失败:', error)
showToast('KTV播放失败', 'error')
}
}
const handleCancel = async () => {
// 检查是否有自定义取消行为
if (props.config.cancelAction && props.config.cancelValue !== undefined) {
try {
await callT4Action(props.config.cancelAction, props.config.cancelValue)
} catch (error) {
console.error('取消按钮T4接口调用失败:', error)
// 即使接口调用失败,也继续执行默认的取消行为
}
}
emit('cancel')
emit('close')
}
const handleReset = () => {
inputValue.value = ''
errorMessage.value = ''
if (inputRef.value) {
inputRef.value.focus()
}
}
// 大文本编辑器方法
const openTextEditor = () => {
editorText.value = inputValue.value
showTextEditor.value = true
nextTick(() => {
if (textEditorRef.value) {
textEditorRef.value.focus()
}
})
}
const closeTextEditor = () => {
showTextEditor.value = false
}
const saveEditorText = () => {
inputValue.value = editorText.value
showTextEditor.value = false
handleInput({ target: { value: editorText.value } })
}
const handleImageClick = (event) => {
if (!props.config.imageClickCoord) return
const rect = event.target.getBoundingClientRect()
const x = Math.round(event.clientX - rect.left)
const y = Math.round(event.clientY - rect.top)
imageCoords.value = { x, y }
// 将坐标累积到输入框中,多个坐标用-符号分隔
const newCoordsText = `${x},${y}`
if (inputValue.value.trim()) {
// 如果输入框已有内容,用-符号分隔追加新坐标
inputValue.value = `${inputValue.value}-${newCoordsText}`
} else {
// 如果输入框为空,直接设置新坐标
inputValue.value = newCoordsText
}
// 触发输入验证
validateInput(inputValue.value)
// 不自动提交,让用户可以看到坐标并手动确认
}
const selectQuickOption = (option) => {
inputValue.value = option.value
validateInput(option.value)
// 如果只允许快速选择,直接提交
if (props.config.onlyQuickSelect) {
nextTick(() => {
handleSubmit()
})
}
}
const onImageLoad = () => {
console.log('图片加载成功')
}
const onImageError = () => {
console.error('图片加载失败')
}
const onQrcodeError = () => {
console.error('二维码生成失败')
}
// 超时处理
const startTimeout = () => {
if (!props.config.timeout || props.config.timeout <= 0) return
timeLeft.value = props.config.timeout
timer.value = setInterval(() => {
timeLeft.value--
if (timeLeft.value <= 0) {
clearInterval(timer.value)
handleCancel()
}
}, 1000)
}
const stopTimeout = () => {
if (timer.value) {
clearInterval(timer.value)
timer.value = null
}
timeLeft.value = 0
}
// T4接口调用方法
const callT4Action = async (action, value) => {
if (!props.module && !props.apiUrl) {
console.warn('未提供module或apiUrl,无法调用T4接口')
return null
}
// 构造正确的T4接口格式
// ac=list&action=[actionId]&value={"[id]":[value]}
const valueObject = {}
const actionId = props.config.id || 'value'
valueObject[actionId] = value
const actionData = {
action,
value: JSON.stringify(valueObject)
}
// 添加扩展参数
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
})
let result = null
if (props.module) {
console.log('调用模块:', props.module)
result = await executeAction(props.module, actionData)
} else if (props.apiUrl) {
// 直接调用API
console.log('直接调用API:', props.apiUrl)
const axios = (await import('axios')).default
const response = await axios.post(props.apiUrl, actionData, {
timeout: getActionTimeout(),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
})
result = response.data
}
console.log('T4接口返回结果:', result)
return result
}
// 监听配置变化
watch(() => props.config, (newConfig) => {
inputValue.value = newConfig.value || ''
errorMessage.value = ''
imageCoords.value = null
if (newConfig.timeout) {
startTimeout()
} else {
stopTimeout()
}
}, { immediate: true })
// 监听显示状态
watch(() => props.visible, (visible) => {
if (visible) {
nextTick(() => {
if (inputRef.value) {
inputRef.value.focus()
}
})
startTimeout()
} else {
stopTimeout()
}
})