Spaces:
Sleeping
Sleeping
File size: 12,173 Bytes
f0953a4 |
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 |
<template>
<div ref="listRef" class="resource-list">
<!-- 头部刷新区 -->
<van-cell-group :border="false" class="resource-list__header">
<van-cell center clickable @click="refreshResources">
<template #icon>
<van-icon name="replay" class="header__icon" />
</template>
<template #title>
<div class="header__content">
<span class="content__title">最新资源</span>
<span class="content__tip">(点击可获取最新资源)</span>
</div>
</template>
<template #label>
<span class="header__time">上次刷新:{{ resourceStore.lastUpdateTime }}</span>
</template>
</van-cell>
</van-cell-group>
<!-- 资源列表 -->
<van-tabs
v-model:active="currentTab"
swipeable
animated
class="resource-list__tabs"
:border="false"
>
<van-tab
v-for="item in resourceStore.resources"
:key="item.id"
:name="item.id"
:title="item.channelInfo.name"
>
<ResourceCard
:current-channel-id="currentTab"
@save="handleSave"
@jump="handleJump"
@search-moviefor-tag="searchMovieforTag"
/>
</van-tab>
</van-tabs>
<!-- 保存弹窗 -->
<van-popup
v-model:show="saveDialogVisible"
round
closeable
position="bottom"
:style="{ height: '80%', transform: 'translateZ(1px)' }"
class="save-popup"
>
<div class="save-popup__container">
<!-- 弹窗头部 -->
<div class="save-popup__header">
<van-tag :color="getTagColor(currentResource?.cloudType)" round size="medium">
{{ currentResource?.cloudType }}
</van-tag>
<span class="header__title">{{ saveDialogMap[saveDialogStep].title }}</span>
<span
v-if="resourceStore.shareInfo.fileSize && saveDialogStep === 1"
class="header__size"
>
{{ formattedFileSize(resourceStore.shareInfo.fileSize) }}
</span>
</div>
<!-- 弹窗内容 -->
<div class="save-popup__content">
<van-empty v-if="resourceStore.loadTree && saveDialogStep === 1" class="content__loading">
<template #image>
<van-loading size="24px" vertical>加载中...</van-loading>
</template>
</van-empty>
<resource-select
v-if="saveDialogVisible && saveDialogStep === 1 && resourceStore.resourceSelect.length"
:cloud-type="currentResource?.cloudType"
/>
<folder-select
v-if="saveDialogVisible && saveDialogStep === 2 && currentResource"
:cloud-type="currentResource.cloudType"
@select="handleFolderSelect"
@close="saveDialogVisible = false"
/>
</div>
<!-- 弹窗底部 -->
<div class="save-popup__footer">
<van-cell class="footer__path" :border="false">
<template #title>
<div class="path__label">保存至:</div>
</template>
<template #value>
<div class="path__value">
<van-icon name="folder-o" class="value__icon" />
<span
class="value__text"
:class="{ 'value__text--placeholder': !currentFolderPath }"
>
{{ getCurrentFolderName }}
</span>
</div>
</template>
</van-cell>
<van-button
round
block
type="primary"
size="large"
:loading="isLoading"
@click="handleConfirmClick"
>
{{ saveDialogMap[saveDialogStep].buttonText }}
</van-button>
</div>
</div>
</van-popup>
</div>
</template>
<script setup lang="ts">
import { ref, watch, onMounted, onUnmounted, computed, onBeforeUnmount } from "vue";
import { useRouter } from "vue-router";
import { showToast } from "vant";
import { useResourceStore } from "@/stores/resource";
import { formattedFileSize, throttle } from "@/utils/index";
import type { Folder, ResourceItem } from "@/types";
import FolderSelect from "@/components/mobile/FolderSelect.vue";
import ResourceSelect from "@/components/mobile/ResourceSelect.vue";
import ResourceCard from "@/components/mobile/ResourceCard.vue";
// 状态管理
const router = useRouter();
const resourceStore = useResourceStore();
// 响应式数据
const saveDialogVisible = ref(false);
const currentResource = ref<ResourceItem | null>(null);
const currentFolderId = ref<string | null>(null);
const currentFolderPath = ref<Folder[] | null>(null);
const saveDialogStep = ref<1 | 2>(1);
const currentTab = ref<string>("");
const isLoading = ref(false);
const listRef = ref<HTMLElement | null>(null);
// 计算属性
const getCurrentFolderName = computed(() => {
return currentFolderPath.value
? currentFolderPath.value[currentFolderPath.value.length - 1]?.name
: "待选择";
});
// 常量定义
const saveDialogMap = {
1: { title: "选择资源", buttonText: "下一步" },
2: { title: "选择保存目录", buttonText: "保存" },
};
// 标签颜色映射
const getTagColor = (type?: string) => {
const colorMap: Record<string, string> = {
pan115: "#07c160",
quark: "#1989fa",
};
return colorMap[type || ""] || "#ff976a";
};
// 监听器
watch(
() => resourceStore.resources,
() => {
if (resourceStore.resources.length > 0) {
currentTab.value = resourceStore.resources[0].id;
}
}
);
// 方法定义
const refreshResources = () => {
resourceStore.searchResources("", false);
};
const handleSave = async (resource: ResourceItem) => {
currentResource.value = resource;
saveDialogVisible.value = true;
saveDialogStep.value = 1;
if (!(await resourceStore.getResourceListAndSelect(resource))) {
saveDialogVisible.value = false;
}
};
const handleJump = (resource: ResourceItem) => {
window.open(resource.cloudLinks[0], "_blank");
};
const handleFolderSelect = (folders: Folder[] | null) => {
if (!currentResource.value) return;
currentFolderPath.value = folders;
currentFolderId.value = folders?.[folders.length - 1]?.cid || "0";
};
const handleConfirmClick = async () => {
if (saveDialogStep.value === 1) {
if (!resourceStore.resourceSelect.some((x) => x.isChecked)) {
showToast("请选择要保存的资源");
return;
}
saveDialogStep.value = 2;
} else {
handleSaveBtnClick();
}
};
const handleSaveBtnClick = async () => {
if (!currentResource.value || !currentFolderId.value) return;
saveDialogVisible.value = false;
await resourceStore.saveResource(currentResource.value, currentFolderId.value);
};
const searchMovieforTag = (tag: string) => {
router.push({ path: "/resource", query: { keyword: tag } });
};
// 使用节流包装加载更多函数
const throttledLoadMore = throttle((channelId: string) => {
resourceStore.searchResources("", true, channelId);
}, 2000);
// 滚动加载
const doScroll = () => {
const appElement = document.querySelector("#app") as HTMLElement;
if (appElement) {
const { scrollHeight, scrollTop, clientHeight } = appElement;
if (scrollHeight - (clientHeight + scrollTop) <= 1) {
throttledLoadMore(currentTab.value);
}
}
};
// 生命周期
onMounted(() => {
const appElement = document.querySelector("#app");
if (appElement) {
appElement.addEventListener("scroll", doScroll);
}
});
onUnmounted(() => {
const appElement = document.querySelector("#app");
if (appElement) {
appElement.removeEventListener("scroll", doScroll);
}
});
// 监听标签页切换
watch(currentTab, () => {
const appElement = document.querySelector("#app");
if (appElement) {
appElement.scrollTo(0, 0);
}
});
// 页面进入 设置缓存的数据源
onMounted(() => {
const lastResourceList = localStorage.getItem("last_resource_list");
if (lastResourceList) {
resourceStore.resources = JSON.parse(lastResourceList).list;
}
});
// 页面销毁 清除搜索词
onBeforeUnmount(() => {
resourceStore.keyword = "";
});
</script>
<style lang="scss" scoped>
.resource-list {
min-height: 100%;
background: var(--van-background);
padding-bottom: 20px;
&__header {
margin-bottom: 8px;
background: var(--theme-other_background);
:deep(.van-cell) {
padding: 12px 16px;
min-height: 24px;
}
.header__icon {
font-size: 30px;
color: var(--theme-theme);
margin-right: 10px;
line-height: 1;
}
.header__content {
display: flex;
align-items: center;
gap: 6px;
.content__title {
font-size: 15px;
font-weight: 500;
line-height: 1.4;
}
.content__tip {
font-size: 12px;
color: var(--van-gray-6);
background: var(--van-gray-1);
padding: 2px 6px;
border-radius: 4px;
line-height: 1.4;
}
}
.header__time {
font-size: 12px;
color: var(--van-gray-6);
line-height: 1.4;
margin-top: 2px;
}
}
&__tabs {
:deep(.van-tabs__wrap) {
background: var(--theme-other_background);
}
:deep(.van-tab) {
font-size: 14px;
padding: 0 20px;
height: 44px;
line-height: 44px;
}
:deep(.van-tabs__line) {
background: var(--theme-theme);
}
:deep(.van-tabs__content) {
padding: 8px 0;
}
}
}
.save-popup {
&__container {
height: 100%;
display: flex;
flex-direction: column;
padding-bottom: calc(env(safe-area-inset-bottom) + 50px);
}
&__header {
flex-shrink: 0;
padding: 16px;
border-bottom: 0.5px solid var(--van-gray-3);
display: flex;
align-items: center;
gap: 8px;
padding-right: 40px;
.header__title {
font-size: 16px;
font-weight: 500;
}
.header__size {
margin-left: auto;
font-size: 13px;
color: var(--van-gray-6);
max-width: 120px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
&__content {
flex: 1;
overflow-y: auto;
background: var(--van-background-2);
.content__loading {
padding: 32px 0;
}
}
&__footer {
flex-shrink: 0;
padding: 12px 16px 16px;
background: var(--theme-other_background);
border-top: 0.5px solid var(--van-gray-3);
padding-bottom: calc(16px + env(safe-area-inset-bottom));
.footer__path {
margin: 0 0 12px;
:deep(.van-cell__title) {
flex: none;
padding-right: 8px;
display: flex;
align-items: center;
}
:deep(.van-cell__value) {
flex: 1;
}
.path__label {
font-size: 14px;
color: var(--van-text-color);
font-weight: 500;
white-space: nowrap;
}
.path__value {
display: flex;
align-items: center;
gap: 4px;
padding: 6px 12px;
background: var(--van-gray-1);
border-radius: 4px;
width: 100%;
box-sizing: border-box;
.value__icon {
font-size: 16px;
color: var(--theme-theme);
flex-shrink: 0;
}
.value__text {
font-size: 14px;
color: var(--van-text-color);
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-align: left;
display: block;
&--placeholder {
color: var(--van-gray-6);
}
}
}
}
:deep(.van-cell__value) {
flex: 1;
text-align: left;
}
.van-button {
height: 44px;
font-size: 16px;
font-weight: 500;
}
}
:deep(.van-popup) {
z-index: 2001 !important;
}
}
// 全局样式优化
:deep(.van-cell) {
padding: 16px 20px;
&::after {
display: none;
}
}
:deep(.van-popup) {
max-height: 90vh;
}
:deep(.van-overlay) {
background-color: rgba(0, 0, 0, 0.7);
}
</style>
|