增加短剧查看更多功能

This commit is contained in:
mtvpls
2026-05-10 18:02:51 +08:00
parent 191d24ac5d
commit f56f45d85f
5 changed files with 553 additions and 10 deletions
+282
View File
@@ -0,0 +1,282 @@
/* eslint-disable @typescript-eslint/no-explicit-any, react-hooks/exhaustive-deps */
'use client';
import { ArrowLeft, Loader2 } from 'lucide-react';
import Link from 'next/link';
import { Suspense, useEffect, useRef, useState } from 'react';
import { SearchResult } from '@/lib/types';
import PageLayout from '@/components/PageLayout';
import VideoCard from '@/components/VideoCard';
interface DuanjuSource {
key: string;
name: string;
api: string;
typeId?: string;
typeName?: string;
}
function DuanjuPageClient() {
const [sources, setSources] = useState<DuanjuSource[]>([]);
const [selectedSource, setSelectedSource] = useState('');
const [selectedCategory, setSelectedCategory] = useState('');
const [videos, setVideos] = useState<SearchResult[]>([]);
const [isLoadingSources, setIsLoadingSources] = useState(true);
const [isLoadingVideos, setIsLoadingVideos] = useState(false);
const [currentPage, setCurrentPage] = useState(1);
const [hasMore, setHasMore] = useState(true);
const loadMoreRef = useRef<HTMLDivElement>(null);
const sourceScrollContainerRef = useRef<HTMLDivElement>(null);
const isDraggingRef = useRef(false);
const startXRef = useRef(0);
const scrollLeftRef = useRef(0);
useEffect(() => {
const fetchSources = async () => {
setIsLoadingSources(true);
try {
const response = await fetch('/api/duanju/sources');
const data = await response.json();
if (data.code === 200 && Array.isArray(data.data)) {
setSources(data.data);
if (data.data.length > 0) {
setSelectedSource(data.data[0].key);
setSelectedCategory(data.data[0].typeId || '');
}
}
} catch (error) {
console.error('Failed to load duanju sources:', error);
} finally {
setIsLoadingSources(false);
}
};
fetchSources();
}, []);
const handleSourceChange = (sourceKey: string) => {
const source = sources.find((item) => item.key === sourceKey);
setSelectedSource(sourceKey);
setSelectedCategory(source?.typeId || '');
setCurrentPage(1);
setVideos([]);
setHasMore(true);
};
useEffect(() => {
if (!selectedSource || !selectedCategory) return;
const fetchVideos = async () => {
setIsLoadingVideos(true);
try {
const response = await fetch(
`/api/duanju/videos?source=${encodeURIComponent(selectedSource)}&categoryId=${encodeURIComponent(selectedCategory)}&page=${currentPage}`
);
const data = await response.json();
if (data.code === 200 && Array.isArray(data.data)) {
if (currentPage === 1) {
setVideos(data.data);
} else {
setVideos((prev) => [...prev, ...data.data]);
}
setHasMore(data.page < data.pageCount);
}
} catch (error) {
console.error('Failed to load duanju videos:', error);
} finally {
setIsLoadingVideos(false);
}
};
fetchVideos();
}, [selectedSource, selectedCategory, currentPage]);
useEffect(() => {
if (!loadMoreRef.current) return;
const observer = new IntersectionObserver(
(entries) => {
const target = entries[0];
if (target.isIntersecting && hasMore && !isLoadingVideos) {
setCurrentPage((prev) => prev + 1);
}
},
{ rootMargin: '240px 0px', threshold: 0.1 }
);
observer.observe(loadMoreRef.current);
return () => {
observer.disconnect();
};
}, [hasMore, isLoadingVideos]);
return (
<PageLayout activePath='/duanju'>
<div className='px-4 sm:px-10 py-4 sm:py-8 overflow-visible mb-10'>
<div className='mb-6 flex items-start justify-between gap-4'>
<div>
<h1 className='text-2xl font-bold text-gray-800 dark:text-gray-200'>
</h1>
<p className='text-sm text-gray-500 dark:text-gray-400 mt-1'>
</p>
</div>
<Link
href='/'
className='inline-flex items-center gap-1 rounded-lg px-3 py-2 text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-300 dark:hover:bg-gray-800 dark:hover:text-gray-100'
>
<ArrowLeft className='h-4 w-4' />
</Link>
</div>
<div className='max-w-4xl mx-auto mb-8'>
<div className='relative'>
<div className='text-xs text-gray-500 dark:text-gray-400 mb-2 px-4'>
</div>
{isLoadingSources ? (
<div className='flex items-center justify-center h-12 bg-gray-50/80 rounded-lg border border-gray-200/50 dark:bg-gray-800 dark:border-gray-700'>
<Loader2 className='h-5 w-5 animate-spin text-gray-400' />
<span className='ml-2 text-sm text-gray-500 dark:text-gray-400'>
...
</span>
</div>
) : sources.length === 0 ? (
<div className='flex items-center justify-center h-12 bg-gray-50/80 rounded-lg border border-gray-200/50 dark:bg-gray-800 dark:border-gray-700'>
<span className='text-sm text-gray-500 dark:text-gray-400'>
</span>
</div>
) : (
<div className='relative'>
<div
ref={sourceScrollContainerRef}
className='overflow-x-auto scrollbar-hide cursor-grab active:cursor-grabbing'
onMouseDown={(e) => {
if (!sourceScrollContainerRef.current) return;
isDraggingRef.current = true;
startXRef.current = e.pageX - sourceScrollContainerRef.current.offsetLeft;
scrollLeftRef.current = sourceScrollContainerRef.current.scrollLeft;
sourceScrollContainerRef.current.style.cursor = 'grabbing';
sourceScrollContainerRef.current.style.userSelect = 'none';
}}
onMouseLeave={() => {
if (!sourceScrollContainerRef.current) return;
isDraggingRef.current = false;
sourceScrollContainerRef.current.style.cursor = 'grab';
sourceScrollContainerRef.current.style.userSelect = 'auto';
}}
onMouseUp={() => {
if (!sourceScrollContainerRef.current) return;
isDraggingRef.current = false;
sourceScrollContainerRef.current.style.cursor = 'grab';
sourceScrollContainerRef.current.style.userSelect = 'auto';
}}
onMouseMove={(e) => {
if (!isDraggingRef.current || !sourceScrollContainerRef.current) return;
e.preventDefault();
const x = e.pageX - sourceScrollContainerRef.current.offsetLeft;
const walk = (x - startXRef.current) * 2;
sourceScrollContainerRef.current.scrollLeft = scrollLeftRef.current - walk;
}}
>
<div className='flex gap-2 px-4 min-w-min'>
{sources.map((source) => (
<button
key={source.key}
onClick={() => handleSourceChange(source.key)}
className={`px-4 py-2 rounded-lg text-sm font-medium transition-colors whitespace-nowrap flex-shrink-0 ${
selectedSource === source.key
? 'bg-blue-600 text-white'
: 'bg-gray-100 dark:bg-gray-800 text-gray-700 dark:text-gray-300 hover:bg-gray-200 dark:hover:bg-gray-700'
}`}
>
{source.name}
</button>
))}
</div>
</div>
</div>
)}
</div>
</div>
{selectedSource && !selectedCategory && (
<div className='text-center text-gray-500 py-8 dark:text-gray-400'>
</div>
)}
{selectedSource && selectedCategory && (
<div className='max-w-[95%] mx-auto mt-8'>
<div className='mb-4'>
<h2 className='text-xl font-bold text-gray-800 dark:text-gray-200'>
</h2>
</div>
{isLoadingVideos && currentPage === 1 ? (
<div className='flex justify-center items-center h-40'>
<div className='animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500'></div>
</div>
) : videos.length === 0 ? (
<div className='text-center text-gray-500 py-8 dark:text-gray-400'>
</div>
) : (
<>
<div className='grid grid-cols-3 gap-x-2 gap-y-14 sm:gap-y-20 px-0 sm:px-2 sm:grid-cols-[repeat(auto-fill,_minmax(11rem,_1fr))] sm:gap-x-8'>
{videos.map((item) => (
<div key={`${item.source}-${item.id}`} className='w-full'>
<VideoCard
id={item.id}
title={item.title}
poster={item.poster}
episodes={item.episodes.length}
source={item.source}
source_name={item.source_name}
douban_id={item.douban_id}
year={item.year}
from='source-search'
type='tv'
cmsData={{
desc: item.desc,
episodes: item.episodes,
episodes_titles: item.episodes_titles,
}}
/>
</div>
))}
</div>
<div ref={loadMoreRef} className='flex justify-center items-center py-8'>
{isLoadingVideos && (
<div className='animate-spin rounded-full h-6 w-6 border-b-2 border-blue-500'></div>
)}
{!hasMore && videos.length > 0 && (
<span className='text-sm text-gray-500 dark:text-gray-400'>
</span>
)}
</div>
</>
)}
</div>
)}
</div>
</PageLayout>
);
}
export default function DuanjuPage() {
return (
<Suspense>
<DuanjuPageClient />
</Suspense>
);
}