-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathVideo.vue
More file actions
1058 lines (929 loc) · 31.5 KB
/
Video.vue
File metadata and controls
1058 lines (929 loc) · 31.5 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>
<Breadcrumb
@handleOpenForm="handleOpenForm"
@refreshPage="refreshPage"
@minimize="minimize"
@maximize="maximize"
@closeWindow="closeWindow"
@onSearch="onSearch"
@handlePush="handlePush"
:now_site_title="form.now_site_title"
>
<!-- 默认插槽的内容放这里 -->
<div class="current-time">
<span>{{ currentDateTime }}</span>
</div>
</Breadcrumb>
<!-- 内容区域 -->
<div class="main-container">
<!-- 全局loading指示器 -->
<div v-if="globalLoading" class="global-loading-overlay">
<div class="global-loading-content">
<a-spin :size="32" />
<div class="loading-text">正在切换数据源...</div>
<!-- 手动关闭按钮 -->
<a-button
type="outline"
size="small"
@click="handleCloseGlobalLoading"
class="close-loading-btn"
>
手动关闭
</a-button>
</div>
</div>
<a-layout-content class="content">
<!-- 搜索结果展示 -->
<SearchResults
v-if="searchState.isSearching"
:keyword="searchState.searchKeyword"
:videos="searchState.searchResults"
:loading="searchState.searchLoading"
:error="searchState.searchError"
:currentPage="searchState.currentPage"
:totalPages="searchState.totalPages"
:hasMore="searchState.hasMore"
:scrollPosition="searchState.scrollPosition"
:sourceRoute="{ name: route.name, params: route.params, query: route.query }"
:module="form.now_site?.key || nowSite?.key"
:extend="form.now_site?.ext"
:api-url="form.now_site?.api"
@load-more="onSearchLoadMore"
@exit-search="exitSearch"
@video-click="handleVideoClick"
@refresh-list="handleRefreshList"
/>
<!-- 默认视频列表 -->
<VideoList
v-else
ref="videoListRef"
:classList="form.classList"
:recommendVideos="form.recommendVideos"
:sourceRoute="{
name: route.name,
params: route.params,
query: {
...route.query,
activeKey: currentActiveKey,
// 添加folder状态信息
folderState: folderNavigationState.value?.isActive ? JSON.stringify({
isActive: folderNavigationState.value.isActive,
breadcrumbs: folderNavigationState.value.breadcrumbs,
currentBreadcrumb: folderNavigationState.value.currentBreadcrumb
}) : undefined
}
}"
:returnToActiveKey="route.query._returnToActiveKey"
:module="form.now_site?.key || nowSite?.key"
:extend="form.now_site?.ext"
:api-url="form.now_site?.api"
:specialCategoryState="specialCategoryState"
:folderNavigationState="folderNavigationState"
@activeKeyChange="handleActiveKeyChange"
@special-action="handleSpecialAction"
@close-special-category="closeSpecialCategory"
@folder-navigate="handleFolderNavigate"
/>
</a-layout-content>
</div>
<SourceDialog
:visible="form.visible"
:title="form.form_title"
:sites="form.sites"
:currentSiteKey="form.now_site.key"
@update:visible="(val) => (form.visible = val)"
@confirm-clear="handleConfirmClear"
@confirm-change="handleConfirmChange"
@change-rule="handleChangeRule"
/>
</template>
<script setup>
import { ref, reactive, shallowRef, onMounted, onBeforeUnmount, nextTick } from "vue";
import SourceDialog from "../components/SourceDialog.vue";
import Breadcrumb from "../components/Breadcrumb.vue";
import VideoList from "../components/VideoList.vue";
import SearchResults from "../components/SearchResults.vue";
import { videoService, siteService } from "@/api/services";
import { getCategoryData } from '@/api/modules/module';
import { useSiteStore } from "@/stores/siteStore";
import { usePaginationStore } from "@/stores/paginationStore";
import { usePageStateStore } from "@/stores/pageStateStore";
import { useRoute, useRouter } from "vue-router";
import { Message } from "@arco-design/web-vue";
const { nowSite, setCurrentSite } = useSiteStore();
const paginationStore = usePaginationStore();
const pageStateStore = usePageStateStore();
const route = useRoute();
const router = useRouter();
// 时间格式化函数
const formatDate = (date) => {
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
const hours = String(date.getHours()).padStart(2, '0');
const minutes = String(date.getMinutes()).padStart(2, '0');
const seconds = String(date.getSeconds()).padStart(2, '0');
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
};
const currentDateTime = ref(formatDate(new Date())); // 初始化时就设置当前时间
const currentActiveKey = ref(""); // 当前选中的分类key
const videoListRef = ref(null); // VideoList组件引用
const form = reactive({
sites: [],
now_site_title: "hipy影视",
now_site: {},
visible: false,
form_title: "",
recommendVideos: [],
classList: {},
videoList: {},
});
// 搜索相关状态
const searchState = reactive({
isSearching: false,
searchKeyword: "",
searchResults: [],
searchLoading: false,
searchError: null,
currentPage: 1,
totalPages: 1,
hasMore: false,
scrollPosition: 0
});
// 特殊分类状态
const specialCategoryState = reactive({
isActive: false,
categoryData: null,
originalClassList: null,
originalRecommendVideos: null
});
// Folder导航状态 - 使用shallowRef避免深度响应式更新
const folderNavigationState = shallowRef({
isActive: false,
breadcrumbs: [],
currentData: [],
currentBreadcrumb: null,
loading: false
});
// 全局loading状态(用于换源等操作)
const globalLoading = ref(false);
// 保存进入folder模式前的状态
const previousState = reactive({
activeKey: null,
scrollPosition: 0,
savedAt: null
});
const timer = ref(null);
const getData = async (forceRefresh = false) => {
try {
// 首先尝试从配置服务获取站点数据
const configStatus = siteService.getConfigStatus();
if (configStatus.hasConfigUrl) {
try {
// 如果有配置地址,从配置地址加载站点数据
await siteService.loadSitesFromConfig(forceRefresh);
} catch (configError) {
console.error("从配置地址加载站点数据失败:", configError);
// 配置加载失败时,使用本地存储的站点数据
}
}
// 获取所有站点配置
form.sites = siteService.getAllSites();
// 如果仍然没有站点配置,提示用户设置配置地址
if (form.sites.length === 0) {
// 暂无站点配置,请在设置中配置数据源地址
}
} catch (error) {
console.error("获取站点配置失败:", error);
}
};
const getNowSite = () => {
// 优先使用siteService中的当前站点
const currentSite = siteService.getCurrentSite();
if (currentSite) {
form.now_site = currentSite;
form.now_site_title = currentSite.name;
// 同步到 siteStore
setCurrentSite(currentSite);
} else if (nowSite && nowSite.name) {
form.now_site = nowSite;
form.now_site_title = nowSite.name;
// 同步到siteService
siteService.setCurrentSite(nowSite.key);
} else {
// 如果都没有,清空当前源
form.now_site = {};
form.now_site_title = "hipy影视";
}
};
const checkNowSite = () => {
// 确保 form.now_site 有值,如果没有则从 siteService 获取
if (!form.now_site || !form.now_site.key) {
const currentSite = siteService.getCurrentSite();
if (currentSite) {
form.now_site = currentSite;
form.now_site_title = currentSite.name;
} else if (form.sites.length > 0) {
// 如果没有当前源,设置第一个可用源
const firstSite = form.sites.find(site => site.type === 4) || form.sites[0];
form.now_site = firstSite;
form.now_site_title = firstSite.name;
siteService.setCurrentSite(firstSite.key);
}
} else {
// 检查当前源是否在站点列表中
const siteExists = form.sites.some(site => site.key === form.now_site.key);
if (!siteExists && form.sites.length > 0) {
// 如果当前源不在列表中,设置第一个可用源
const firstSite = form.sites.find(site => site.type === 4) || form.sites[0];
form.now_site = firstSite;
form.now_site_title = firstSite.name;
siteService.setCurrentSite(firstSite.key);
}
}
// 设置 new_site 用于换源对话框
form.new_site = form.now_site;
};
// 启动定时器
const startClock = () => {
timer.value = setInterval(() => {
currentDateTime.value = formatDate(new Date());
}, 1000); // 每秒更新时间
};
const refreshPage = () => {
window.location.reload();
};
// 处理重载源事件
const handleReloadSource = (event) => {
console.log('收到重载源事件:', event.detail);
// 执行重载源功能(相当于点击重载源按钮)
refreshPage();
};
const minimize = () => {};
const maximize = () => {};
const closeWindow = () => {};
const handleChangeRule = (site) => (form.new_site = site);
const handleConfirmClear = () => {
form.now_site = form.new_site;
setCurrentSite(form.now_site);
form.visible = false;
getData(true); // 传递 forceRefresh=true 强制刷新配置数据
checkNowSite();
};
const handleConfirmChange = (site) => {
form.now_site = site;
// 使用 siteStore 统一管理站点切换
setCurrentSite(site);
form.now_site_title = site.name;
form.visible = false;
// 1. 如果当前在目录模式,自动退出目录模式
if (folderNavigationState.value?.isActive) {
folderNavigationState.value = {
isActive: false,
breadcrumbs: [],
currentData: [],
currentBreadcrumb: null,
loading: false
};
// 清空保存的状态
previousState.activeKey = null;
previousState.scrollPosition = 0;
previousState.savedAt = null;
}
getClassList(site); //获取分类列表
};
//获取分类列表
const getClassList = async (site) => {
if (!site || !site.key) {
return;
}
// 2. 显示loading状态
globalLoading.value = true;
// 先清除之前的数据,防止数据残留
form.classList = {
class: [],
filters: {}
};
form.recommendVideos = [];
try {
// 使用videoService获取首页数据,包含分类信息
const homeData = await videoService.getRecommendVideos(site.key, {
extend: site.ext,
apiUrl: site.api
});
form.classList = {
class: homeData.categories,
filters: homeData.filters
};
// 保存推荐视频数据,如果没有推荐数据则保持为空数组
form.recommendVideos = homeData.videos || [];
} catch (error) {
console.error("获取分类列表失败:", error);
// 降级处理:使用空的分类列表
form.classList = {
class: [],
filters: {}
};
form.recommendVideos = [];
} finally {
// 3. 隐藏loading状态
globalLoading.value = false;
}
};
const onSearch = async (value) => {
if (!value || !value.trim()) {
// 如果搜索内容为空,退出搜索模式
searchState.isSearching = false;
searchState.searchKeyword = "";
searchState.searchResults = [];
return;
}
const keyword = value.trim();
searchState.searchKeyword = keyword;
searchState.isSearching = true;
searchState.searchLoading = true;
searchState.searchError = null;
searchState.currentPage = 1;
try {
if (!form.now_site || !form.now_site.key) {
throw new Error("请先选择数据源");
}
// 调用搜索API
const searchData = await videoService.searchVideo(form.now_site.key, {
keyword: keyword,
page: 1,
extend: form.now_site.ext,
apiUrl: form.now_site.api
});
searchState.searchResults = searchData.videos || [];
searchState.totalPages = searchData.pagination?.totalPages || 1;
searchState.hasMore = searchData.pagination?.hasNext || false;
} catch (error) {
console.error("搜索失败:", error);
searchState.searchError = error.message || "搜索失败,请重试";
searchState.searchResults = [];
} finally {
searchState.searchLoading = false;
}
};
// 搜索加载更多
const onSearchLoadMore = async () => {
if (searchState.searchLoading || !searchState.searchKeyword || !searchState.hasMore) return;
searchState.searchLoading = true;
const nextPage = searchState.currentPage + 1;
try {
const searchData = await videoService.searchVideo(form.now_site.key, {
keyword: searchState.searchKeyword,
page: nextPage,
extend: form.now_site.ext,
apiUrl: form.now_site.api
});
// 追加新的搜索结果到现有结果中
const newVideos = searchData.videos || [];
// 检查是否有重复数据或no_data标识
const existingIds = new Set(searchState.searchResults.map(v => v.vod_id));
const uniqueNewVideos = newVideos.filter(video => {
// 过滤掉重复的视频和no_data标识
return !existingIds.has(video.vod_id) &&
video.vod_id !== 'no_data' &&
video.vod_name !== 'no_data';
});
// 如果新数据为空或全部重复,表示没有更多数据
if (uniqueNewVideos.length === 0) {
searchState.hasMore = false;
} else {
searchState.searchResults = [...searchState.searchResults, ...uniqueNewVideos];
searchState.hasMore = searchData.pagination?.hasNext !== false; // 只有明确返回false才停止
}
searchState.currentPage = nextPage;
searchState.totalPages = searchData.pagination?.totalPages || searchState.totalPages;
} catch (error) {
console.error("搜索加载更多失败:", error);
searchState.searchError = error.message || "加载失败,请重试";
} finally {
searchState.searchLoading = false;
}
};
// 退出搜索模式
const exitSearch = () => {
searchState.isSearching = false;
searchState.searchKeyword = "";
searchState.searchResults = [];
searchState.searchError = null;
searchState.currentPage = 1;
};
// 处理分类变化事件
const handleActiveKeyChange = (activeKey) => {
currentActiveKey.value = activeKey;
};
// 处理视频点击事件
const handleVideoClick = (video) => {
if (video && video.vod_id) {
let fromSearch = 'false';
// 判断当前是否在搜索状态
if (searchState.isSearching) {
// 搜索状态的保存由SearchResults组件处理
fromSearch = 'true';
} else {
// 保存分类状态
if (currentActiveKey.value) {
pageStateStore.saveVideoState(
currentActiveKey.value,
1, // 当前页码
[], // 视频列表
true, // hasMore状态
false, // loading状态
window.scrollY // 当前滚动位置
);
}
}
// 构建目标路由的query参数
const targetQuery = {
name: video.vod_name,
pic: video.vod_pic,
year: video.vod_year,
area: video.vod_area,
type: video.vod_type,
remarks: video.vod_remarks,
content: video.vod_content,
actor: video.vod_actor,
director: video.vod_director,
// 传递来源页面信息
sourceRouteName: route.name,
sourceRouteParams: JSON.stringify(route.params),
sourceRouteQuery: JSON.stringify({ ...route.query, activeKey: currentActiveKey.value }),
fromSearch: fromSearch, // 标识是否来自搜索
// 添加来源图片信息,用于详情页图片备用
sourcePic: video.vod_pic
};
// 如果当前在folder模式,添加folder状态信息
if (folderNavigationState.value?.isActive) {
targetQuery.folderState = JSON.stringify({
isActive: folderNavigationState.value.isActive,
breadcrumbs: folderNavigationState.value.breadcrumbs,
currentBreadcrumb: folderNavigationState.value.currentBreadcrumb
});
}
router.push({
name: 'VideoDetail',
params: { id: video.vod_id },
query: targetQuery
});
}
};
// 处理刷新列表事件
const handleRefreshList = () => {
if (searchState.isSearching) {
// 如果在搜索状态,重新执行搜索
// 可以重新调用搜索方法
// searchVideos(searchState.searchKeyword);
} else {
// 如果在分类列表状态,刷新当前分类
if (videoListRef.value) {
videoListRef.value.refreshCurrentCategory();
}
}
};
// 处理特殊动作事件
const handleSpecialAction = async (actionType, actionData) => {
switch (actionType) {
case '__self_search__':
await handleSelfSearchAction(actionData);
break;
default:
console.warn('🎯 [WARN] 未知的特殊动作类型:', actionType);
break;
}
};
// 处理源内搜索动作
const handleSelfSearchAction = async (categoryData) => {
try {
// 保存当前状态
if (!specialCategoryState.isActive) {
specialCategoryState.originalClassList = form.classList;
specialCategoryState.originalRecommendVideos = form.recommendVideos;
}
// 解析T4返回的参数
const tid = categoryData.tid || categoryData.type_id || categoryData.actionData?.tid;
const typeName = categoryData.name || categoryData.type_name || `搜索: ${tid}`;
if (!tid) {
console.error('🔍 [ERROR] 源内搜索参数不完整:缺少tid');
Message.error('源内搜索参数不完整:缺少tid');
return;
}
// 使用tid调用T4分类接口获取视频数据
const categoryResult = await videoService.getCategoryVideos(
form.now_site?.key || nowSite?.key,
{
typeId: tid,
page: 1,
filters: {},
apiUrl: form.now_site?.api,
extend: form.now_site?.ext
}
);
// 构造特殊分类数据结构
const specialClassList = {
class: [{
type_id: tid,
type_name: typeName
}],
filters: {}
};
// 设置特殊分类状态
specialCategoryState.isActive = true;
specialCategoryState.categoryData = {
type_id: tid,
type_name: typeName,
originalData: categoryData,
videos: categoryResult.videos || [],
pagination: categoryResult.pagination || {}
};
// 更新分类列表和推荐视频
form.classList = specialClassList;
form.recommendVideos = []; // 隐藏推荐视频
// 切换到特殊分类
currentActiveKey.value = tid;
// 等待下一个tick,确保VideoList组件已经接收到新的props
await nextTick();
// 直接设置VideoList组件的数据,而不是触发刷新
if (videoListRef.value && categoryResult.videos) {
// 通过VideoList的暴露方法直接设置数据
videoListRef.value.setSpecialCategoryData(tid, categoryResult.videos, categoryResult.pagination);
}
} catch (error) {
console.error('处理源内搜索失败:', error);
Message.error(`源内搜索失败: ${error.message}`);
}
};
// 关闭特殊分类,返回正常显示
const closeSpecialCategory = () => {
if (!specialCategoryState.isActive) {
return;
}
// 恢复原始状态
form.classList = specialCategoryState.originalClassList;
form.recommendVideos = specialCategoryState.originalRecommendVideos;
// 重置特殊分类状态
specialCategoryState.isActive = false;
specialCategoryState.categoryData = null;
specialCategoryState.originalClassList = null;
specialCategoryState.originalRecommendVideos = null;
// 切换回推荐分类
currentActiveKey.value = 'recommendTuijian404';
};
// 防止递归更新的标志
let isUpdatingFolderState = false;
let updateTimeout = null;
// 处理folder导航事件
const handleFolderNavigate = async (navigationData) => {
// 参数验证
if (!navigationData || typeof navigationData !== 'object') {
console.error('navigationData 无效:', navigationData);
return;
}
// 防止重复更新
if (isUpdatingFolderState) {
return;
}
// 清除之前的超时
if (updateTimeout) {
clearTimeout(updateTimeout);
updateTimeout = null;
}
isUpdatingFolderState = true;
try {
// 保存当前状态(进入folder模式时)
if (navigationData.isActive && !folderNavigationState.value?.isActive) {
previousState.activeKey = currentActiveKey.value;
previousState.scrollPosition = window.scrollY || 0;
previousState.savedAt = Date.now();
}
// 恢复之前的状态(退出folder模式时)
if (!navigationData.isActive && folderNavigationState.value?.isActive) {
if (previousState.activeKey) {
currentActiveKey.value = previousState.activeKey;
}
// 恢复滚动位置
if (previousState.scrollPosition) {
nextTick(() => {
window.scrollTo(0, previousState.scrollPosition);
});
}
// 清除保存的状态
previousState.activeKey = null;
previousState.scrollPosition = 0;
previousState.savedAt = null;
}
// 使用 nextTick 确保在下一个 tick 中更新,避免响应式循环
await nextTick();
// 深度克隆数据,完全断开响应式连接
const deepClone = (obj) => {
if (obj === null || typeof obj !== 'object') return obj;
if (obj instanceof Date) return new Date(obj.getTime());
if (obj instanceof Array) return obj.map(item => deepClone(item));
if (typeof obj === 'object') {
const cloned = {};
Object.keys(obj).forEach(key => {
cloned[key] = deepClone(obj[key]);
});
return cloned;
}
return obj;
};
// 创建完全独立的新状态对象
const newState = {
isActive: Boolean(navigationData.isActive),
breadcrumbs: deepClone(navigationData.breadcrumbs || []),
currentData: deepClone(navigationData.currentData || []),
currentBreadcrumb: deepClone(navigationData.currentBreadcrumb || null),
loading: Boolean(navigationData.loading || false)
};
// 使用 shallowRef 的 .value 完全替换对象,避免响应式循环
folderNavigationState.value = newState;
} catch (error) {
console.error('更新folder状态时出错:', error);
} finally {
// 重置更新标志
isUpdatingFolderState = false;
updateTimeout = null;
}
};
const handleOpenForm = () => {
form.visible = true;
// 过滤出 type 为 4 的数据源
const type4Sites = form.sites.filter(site => site.type === 4);
form.form_title = `请选择数据源(${type4Sites.length})`;
checkNowSite();
};
// 手动关闭全局loading
const handleCloseGlobalLoading = () => {
globalLoading.value = false;
};
// 处理推送功能
const handlePush = async (vodId) => {
if (!vodId || !vodId.trim()) {
Message.error("推送内容不能为空");
return;
}
// 检查是否存在push_agent源
const pushAgentSite = form.sites.find(site => site.key === 'push_agent');
if (!pushAgentSite) {
Message.error("没有找到push_agent服务,请检查源配置");
return;
}
try {
// 参考收藏和历史功能,使用临时源跳转到详情页
router.push({
name: 'VideoDetail',
params: { id: vodId.trim() },
query: {
// 基本视频信息(推送时可能没有完整信息)
name: `推送内容-${vodId.trim()}`,
pic: '',
year: '',
area: '',
type: '',
type_name: '',
remarks: '',
content: '',
actor: '',
director: '',
// 标识从推送进入,使用临时站源
fromPush: 'true',
// 传递push_agent站源信息,不影响全局状态
tempSiteName: pushAgentSite.name,
tempSiteApi: pushAgentSite.api,
tempSiteKey: pushAgentSite.key,
// 传递来源页面信息
sourceRouteName: route.name,
sourceRouteParams: JSON.stringify(route.params),
sourceRouteQuery: JSON.stringify(route.query),
// 添加来源图片信息,用于详情页图片备用(推送时通常没有图片)
sourcePic: ''
}
});
Message.success(`正在推送内容: ${vodId.trim()}`);
} catch (error) {
console.error("推送失败:", error);
Message.error("推送失败,请重试");
}
};
// 页面加载时获取数据
onMounted(async () => {
getData(); // 页面加载时获取数据
getNowSite(); // 获取储存的当前源
// 监听重载源事件
window.addEventListener('reloadSource', handleReloadSource);
// 检查是否需要恢复搜索状态
const restoreSearch = route.query._restoreSearch;
const returnToActiveKey = route.query._returnToActiveKey;
const restoreFolderState = route.query.folderState;
if (restoreSearch === 'true') {
// 恢复搜索状态
const savedSearchState = pageStateStore.getPageState('search');
if (savedSearchState && savedSearchState.keyword && !pageStateStore.isStateExpired('search')) {
// 恢复搜索相关状态
searchState.isSearching = true;
searchState.searchKeyword = savedSearchState.keyword;
searchState.searchResults = savedSearchState.videos || [];
searchState.currentPage = savedSearchState.currentPage || 1;
searchState.hasMore = savedSearchState.hasMore || false;
searchState.searchLoading = false;
searchState.searchError = null;
searchState.scrollPosition = savedSearchState.scrollPosition || 0;
// 清除URL中的恢复参数
const newQuery = { ...route.query };
delete newQuery._restoreSearch;
router.replace({ query: newQuery });
await getClassList(form.now_site);
startClock(); // 启动时钟
return; // 搜索状态恢复完成,不再执行分类恢复逻辑
}
}
// 尝试恢复页面状态
const savedState = pageStateStore.getPageState('video');
const isStateExpired = pageStateStore.isStateExpired('video');
let shouldRestoreState = false;
let hasFolderStateToRestore = false;
if (returnToActiveKey) {
// 如果有返回参数,优先使用返回参数
currentActiveKey.value = returnToActiveKey;
// 检查是否需要恢复folder状态
if (restoreFolderState) {
try {
const folderState = JSON.parse(restoreFolderState);
// 恢复folder导航状态
const newFolderState = {
isActive: folderState.isActive,
breadcrumbs: folderState.breadcrumbs || [],
currentBreadcrumb: folderState.currentBreadcrumb,
currentData: [], // 数据需要重新获取
loading: false
};
folderNavigationState.value = newFolderState;
// 如果有当前面包屑,重新获取folder数据
if (folderState.currentBreadcrumb && folderState.currentBreadcrumb.vod_id) {
// 设置加载状态
folderNavigationState.value = {
...folderNavigationState.value,
loading: true
};
// 调用T4分类接口获取folder内容
try {
const requestParams = {
t: folderState.currentBreadcrumb.vod_id,
apiUrl: form.now_site?.api,
extend: form.now_site?.ext
};
const response = await getCategoryData(form.now_site?.key || nowSite?.key, requestParams);
if (response && response.list) {
const updatedState = {
...folderNavigationState.value,
currentData: response.list,
loading: false
};
folderNavigationState.value = updatedState;
} else {
folderNavigationState.value = {
...folderNavigationState.value,
loading: false
};
}
} catch (error) {
console.error('获取folder数据失败:', error);
folderNavigationState.value = {
...folderNavigationState.value,
loading: false
};
}
}
hasFolderStateToRestore = true;
} catch (error) {
console.error('解析folder状态失败:', error);
}
}
// 只有在没有folder状态需要恢复时,才设置shouldRestoreState
if (!hasFolderStateToRestore) {
shouldRestoreState = true;
}
// 清除URL中的返回参数
const newQuery = { ...route.query };
delete newQuery._returnToActiveKey;
delete newQuery.folderState; // 同时清除folder状态参数
router.replace({ query: newQuery });
} else if (savedState && savedState.activeKey && !isStateExpired) {
// 如果有保存的状态且未过期,恢复状态
currentActiveKey.value = savedState.activeKey;
shouldRestoreState = true;
}
// 确保分类列表已加载
await getClassList(form.now_site);
startClock(); // 启动时钟
// 如果需要恢复状态且没有folder状态需要恢复,等待VideoList组件挂载后再恢复
if (shouldRestoreState && !hasFolderStateToRestore) {
setTimeout(() => {
if (videoListRef.value) {
videoListRef.value.restoreFullState({
activeKey: currentActiveKey.value,
currentPage: savedState?.currentPage || 1,
videos: savedState?.videos || [],
hasMore: savedState?.hasMore || true,
scrollPosition: savedState?.scrollPosition || 0
});
}
}, 100);
}
});
// 清理定时器
onBeforeUnmount(() => {
if (timer.value) {
clearInterval(timer.value); // 销毁时清除定时器
}
// 移除重载源事件监听器
window.removeEventListener('reloadSource', handleReloadSource);
// 保存当前页面状态
if (currentActiveKey.value && videoListRef.value) {
const currentState = videoListRef.value.getCurrentState();
pageStateStore.saveVideoState(
currentActiveKey.value,
currentState.currentPage, // 从VideoList组件获取当前页码
currentState.videos, // 从VideoList组件获取视频列表
currentState.hasMore, // 从VideoList组件获取hasMore状态
false, // loading状态
currentState.scrollPosition // 从VideoList组件获取滚动位置
);
}
});
</script>
<style scoped>
/* 样式代码 */
.main-container {
/* 减去Breadcrumb组件的总高度:
- Breadcrumb基础高度:53px (padding: 16px*2 + content: 20px + border: 1px)
- current-time元素额外高度:14px (padding + border)
- 总计:67px */
height: calc(100% - 67px);
/* 使用100%最小高度,继承父容器 */
/* min-height: 100%; */
display: flex;
flex-direction: column;
overflow: hidden;
}
.content {
flex: 1;
overflow: hidden;
padding: 0;
}