-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathVideoGrid.vue
More file actions
341 lines (297 loc) · 8.04 KB
/
VideoGrid.vue
File metadata and controls
341 lines (297 loc) · 8.04 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
<template>
<div class="video-grid-container" ref="containerRef">
<a-scrollbar
@scroll="handleScroll"
class="video-scroll-container"
ref="scrollbarRef"
:style="'height:' + scrollAreaHeight + 'px; overflow: auto;'"
>
<a-grid :cols="{ xs: 2, sm: 3, md: 4, lg: 5, xl: 6, xxl: 8 }" :rowGap="16" :colGap="12">
<a-grid-item
v-for="video in videos"
:key="video.vod_id"
class="video_list_hover"
>
<div class="video_list_item">
<div class="video_list_item_img">
<a-image
:preview="false"
class="video_list_item_img_cover"
fit="cover"
:src="video.vod_pic"
/>
<!-- vod_remarks 浮层 -->
<div v-if="video.vod_remarks" class="video_remarks_overlay" v-html="video.vod_remarks">
</div>
</div>
<div class="video_list_item_title">
<span class="title-text">{{ video.vod_name }}</span>
</div>
</div>
</a-grid-item>
</a-grid>
<!-- 加载状态 -->
<div v-if="loading" class="loading-container">
<a-spin />
<div class="loading-text">加载更多...</div>
</div>
<!-- 没有更多数据提示 -->
<div v-else-if="!hasMore && videos.length > 0" class="no-more-data">
没有更多数据了
</div>
<!-- 空状态 -->
<div v-else-if="videos.length === 0 && !loading" class="empty-state">
暂无视频数据
</div>
<div class="bottom-spacer"></div>
</a-scrollbar>
</div>
</template>
<script setup>
import { onMounted, nextTick, ref, onBeforeUnmount, watch } from 'vue';
const props = defineProps({
videos: {
type: Array,
default: () => []
},
loading: {
type: Boolean,
default: false
},
hasMore: {
type: Boolean,
default: false
}
});
const emit = defineEmits(['load-more', 'scroll-bottom']);
const containerRef = ref(null);
const scrollbarRef = ref(null);
const scrollAreaHeight = ref(0);
const updateScrollAreaHeight = () => {
nextTick(() => {
setTimeout(() => {
const container = containerRef.value;
if (!container) return;
// 参考mock版本的实现,查找父级内容区域
const contentArea = container.closest('.content-area') || container.parentElement;
const footer = container.querySelector('.stats-footer');
const footerHeight = (props.showStats && footer) ? footer.offsetHeight : 0;
let containerHeight = contentArea ? contentArea.offsetHeight : 0;
if (containerHeight <= 0) {
// 备用方案:使用窗口高度减去导航栏等固定元素高度
containerHeight = Math.max(window.innerHeight - 120, 500);
}
const newHeight = Math.max(containerHeight - footerHeight, 400); // 移除硬编码的32px减值,让scrollbar占满容器
scrollAreaHeight.value = newHeight;
}, 100); // 增加延迟确保DOM完全渲染
});
};
const handleScroll = (e) => {
// 获取真正的滚动容器(arco-scrollbar内部容器)
const rawTarget = e?.target || e?.srcElement;
const container = rawTarget?.closest ? rawTarget.closest('.arco-scrollbar-container') : rawTarget;
if (!container) return;
const scrollHeight = container.scrollHeight - container.clientHeight;
const scrollTop = container.scrollTop;
// 当滚动到距离底部50px以内时触发加载
if (scrollHeight - scrollTop < 50) {
emit('scroll-bottom');
emit('load-more');
}
};
// 检测文本是否超出容器宽度
const checkTextOverflow = () => {
nextTick(() => {
setTimeout(() => {
const titleElements = document.querySelectorAll('.video_list_item_title .title-text');
titleElements.forEach(element => {
const container = element.parentElement;
const containerWidth = container.offsetWidth - 16; // 减去padding
const textWidth = element.scrollWidth;
// 如果文本宽度超过容器宽度,添加overflow属性启用跑马灯
if (textWidth > containerWidth) {
element.setAttribute('data-overflow', 'true');
} else {
element.removeAttribute('data-overflow');
}
});
}, 100); // 延迟确保DOM渲染完成
});
};
onMounted(() => {
checkTextOverflow();
updateScrollAreaHeight();
window.addEventListener('resize', updateScrollAreaHeight);
});
onBeforeUnmount(() => {
window.removeEventListener('resize', updateScrollAreaHeight);
});
// 当视频数据或显示统计信息变化时,更新高度和检测文本溢出
watch(() => [props.videos, props.showStats], () => {
updateScrollAreaHeight();
checkTextOverflow();
});
// 暴露方法给父组件
defineExpose({
checkTextOverflow
});
</script>
<style scoped>
.video-grid-container {
flex: 1;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
height: 100%;
min-height: 0; /* 确保flex子元素可以收缩 */
}
.video-scroll-container {
width: 100%;
flex: 1; /* 使用flex让scrollbar占满剩余空间 */
padding: 16px 20px 8px 16px; /* 上右下左:减少下padding */
}
.video_list_hover {
transition: transform 0.2s ease;
}
.video_list_hover:hover {
transform: translateY(-2px);
}
.video_list_item {
position: relative;
border-radius: 8px;
overflow: hidden;
background: white;
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
height: auto;
display: flex;
flex-direction: column;
cursor: pointer;
}
.video_list_item:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
transform: translateY(-2px);
}
.video_list_item_img {
position: relative;
width: 100%;
overflow: hidden;
background: #f5f5f5;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.video_list_item_img_cover {
width: 100%;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
overflow: hidden;
vertical-align: top;
display: block;
}
.video_list_item::v-deep(.arco-image-img) {
width: 100%;
height: 300px;
object-fit: cover;
}
.video_list_item:hover .video_list_item_img_cover {
transform: scale(1.05);
}
.video_remarks_overlay {
position: absolute;
top: 4px;
right: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 3px 6px;
border-radius: 4px;
font-size: 10px;
font-weight: 500;
max-width: 60%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(4px);
}
.video_list_item_title {
padding: 6px 8px;
background: white;
flex-shrink: 0;
height: auto;
min-height: 16px;
display: flex;
align-items: center;
overflow: hidden;
position: relative;
}
.title-text {
font-size: 12px;
font-weight: 500;
color: #2c2c2c;
line-height: 1;
white-space: nowrap;
transition: color 0.2s ease;
margin: 0;
width: 100%;
display: block;
}
/* 普通状态下隐藏溢出文本 */
.title-text:not([data-overflow="true"]) {
overflow: hidden;
text-overflow: ellipsis;
}
/* 跑马灯效果 - 电子公告屏幕样式 */
.title-text[data-overflow="true"] {
animation: marquee 10s linear infinite;
animation-delay: 1s;
width: max-content;
min-width: 100%;
}
.title-text[data-overflow="true"]:hover {
animation-play-state: paused;
}
@keyframes marquee {
0% {
transform: translateX(0);
}
15% {
transform: translateX(0);
}
85% {
transform: translateX(calc(-100% + 100px));
}
100% {
transform: translateX(calc(-100% + 100px));
}
}
.video_list_item:hover .title-text {
color: #1890ff;
}
.loading-container {
text-align: center;
padding: 20px;
}
.loading-text {
margin-top: 8px;
color: var(--color-text-3);
font-size: 14px;
}
.no-more-data {
text-align: center;
padding: 20px;
color: var(--color-text-3);
font-size: 14px;
}
.empty-state {
text-align: center;
padding: 40px 20px;
color: var(--color-text-3);
font-size: 16px;
}
.bottom-spacer {
height: 8px;
}
</style>