mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-24 04:04:43 +08:00
feat: one VideoCard for all
This commit is contained in:
@@ -1,13 +1,23 @@
|
||||
import { Heart, Link as LinkIcon } from 'lucide-react';
|
||||
import Image from 'next/image';
|
||||
import Link from 'next/link';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import React, { useEffect, useMemo, useState } from 'react';
|
||||
|
||||
import { deletePlayRecord, isFavorited, toggleFavorite } from '@/lib/db.client';
|
||||
|
||||
import { ImagePlaceholder } from '@/components/ImagePlaceholder';
|
||||
|
||||
// 聚合卡需要的基本字段,与搜索接口保持一致
|
||||
interface SearchResult {
|
||||
id: string;
|
||||
title: string;
|
||||
poster: string;
|
||||
source: string;
|
||||
source_name: string;
|
||||
douban_id?: number;
|
||||
episodes: string[];
|
||||
}
|
||||
|
||||
interface VideoCardProps {
|
||||
id: string;
|
||||
source: string;
|
||||
@@ -21,6 +31,10 @@ interface VideoCardProps {
|
||||
currentEpisode?: number;
|
||||
douban_id?: number;
|
||||
onDelete?: () => void;
|
||||
|
||||
// 可选属性,根据存在与否决定卡片行为
|
||||
rate?: string; // 如果存在,按demo卡片处理
|
||||
items?: SearchResult[]; // 如果存在,按aggregate卡片处理
|
||||
}
|
||||
|
||||
function CheckCircleCustom() {
|
||||
@@ -88,6 +102,8 @@ export default function VideoCard({
|
||||
currentEpisode,
|
||||
douban_id,
|
||||
onDelete,
|
||||
rate,
|
||||
items,
|
||||
}: VideoCardProps) {
|
||||
const [playHover, setPlayHover] = useState(false);
|
||||
const [favorited, setFavorited] = useState(false);
|
||||
@@ -95,32 +111,108 @@ export default function VideoCard({
|
||||
const [isDeleting, setIsDeleting] = useState(false);
|
||||
const router = useRouter();
|
||||
|
||||
// 检查初始收藏状态
|
||||
// 判断卡片类型
|
||||
const isDemo = !!rate;
|
||||
const isAggregate = !!items && items.length > 0;
|
||||
const isStandard = !isDemo && !isAggregate;
|
||||
|
||||
// 处理聚合卡片的逻辑
|
||||
const aggregateData = useMemo(() => {
|
||||
if (!isAggregate) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const first = items[0];
|
||||
|
||||
// 统计出现次数最多的(非 0) douban_id
|
||||
const countMap = new Map<number, number>();
|
||||
items.forEach((item) => {
|
||||
if (item.douban_id && item.douban_id !== 0) {
|
||||
countMap.set(item.douban_id, (countMap.get(item.douban_id) || 0) + 1);
|
||||
}
|
||||
});
|
||||
|
||||
let mostFrequentDoubanId: number | undefined;
|
||||
let maxCount = 0;
|
||||
countMap.forEach((cnt, id) => {
|
||||
if (cnt > maxCount) {
|
||||
maxCount = cnt;
|
||||
mostFrequentDoubanId = id;
|
||||
}
|
||||
});
|
||||
|
||||
// 统计最频繁的集数
|
||||
const episodeCountMap = new Map<number, number>();
|
||||
items.forEach((item) => {
|
||||
const len = item.episodes?.length || 0;
|
||||
if (len > 0) {
|
||||
episodeCountMap.set(len, (episodeCountMap.get(len) || 0) + 1);
|
||||
}
|
||||
});
|
||||
|
||||
let mostFrequentEpisodes = 0;
|
||||
let maxEpisodeCount = 0;
|
||||
episodeCountMap.forEach((cnt, len) => {
|
||||
if (cnt > maxEpisodeCount) {
|
||||
maxEpisodeCount = cnt;
|
||||
mostFrequentEpisodes = len;
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
first,
|
||||
mostFrequentDoubanId,
|
||||
mostFrequentEpisodes,
|
||||
};
|
||||
}, [isAggregate, items]);
|
||||
|
||||
// 根据卡片类型决定实际使用的数据
|
||||
const actualTitle =
|
||||
isAggregate && aggregateData ? aggregateData.first.title : title;
|
||||
const actualPoster =
|
||||
isAggregate && aggregateData ? aggregateData.first.poster : poster;
|
||||
const actualSource =
|
||||
isAggregate && aggregateData ? aggregateData.first.source : source;
|
||||
const actualId = isAggregate && aggregateData ? aggregateData.first.id : id;
|
||||
const actualDoubanId =
|
||||
isAggregate && aggregateData
|
||||
? aggregateData.mostFrequentDoubanId
|
||||
: douban_id;
|
||||
const actualEpisodes =
|
||||
isAggregate && aggregateData
|
||||
? aggregateData.mostFrequentEpisodes
|
||||
: episodes;
|
||||
|
||||
// 检查初始收藏状态(仅标准卡片)
|
||||
useEffect(() => {
|
||||
if (!isStandard) return;
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
const fav = await isFavorited(source, id);
|
||||
const fav = await isFavorited(actualSource, actualId);
|
||||
setFavorited(fav);
|
||||
} catch (err) {
|
||||
throw new Error('检查收藏状态失败');
|
||||
}
|
||||
})();
|
||||
}, [source, id]);
|
||||
}, [isStandard, actualSource, actualId]);
|
||||
|
||||
// 切换收藏状态
|
||||
// 切换收藏状态(仅标准卡片)
|
||||
const handleToggleFavorite = async (
|
||||
e: React.MouseEvent<HTMLSpanElement | SVGElement, MouseEvent>
|
||||
) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if (!isStandard) return;
|
||||
|
||||
try {
|
||||
const newState = await toggleFavorite(source, id, {
|
||||
title,
|
||||
const newState = await toggleFavorite(actualSource, actualId, {
|
||||
title: actualTitle,
|
||||
source_name,
|
||||
year: year || '',
|
||||
cover: poster,
|
||||
total_episodes: episodes ?? 1,
|
||||
cover: actualPoster,
|
||||
total_episodes: actualEpisodes ?? 1,
|
||||
save_time: Date.now(),
|
||||
});
|
||||
setFavorited(newState);
|
||||
@@ -133,86 +225,99 @@ export default function VideoCard({
|
||||
}
|
||||
};
|
||||
|
||||
// 删除对应播放记录
|
||||
// 删除对应播放记录(仅标准卡片)
|
||||
const handleDeleteRecord = async (
|
||||
e: React.MouseEvent<HTMLSpanElement | SVGElement, MouseEvent>
|
||||
) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if (!isStandard) return;
|
||||
|
||||
try {
|
||||
await deletePlayRecord(source, id);
|
||||
await deletePlayRecord(actualSource, actualId);
|
||||
onDelete?.();
|
||||
} catch (err) {
|
||||
throw new Error('删除播放记录失败');
|
||||
}
|
||||
};
|
||||
|
||||
const hideCheckCircle = from === 'favorites' || from === 'search';
|
||||
const alwaysShowHeart = from !== 'favorites';
|
||||
// 点击处理逻辑
|
||||
const handleClick = () => {
|
||||
if (isDemo) {
|
||||
router.push(`/play?title=${encodeURIComponent(actualTitle.trim())}`);
|
||||
} else {
|
||||
router.push(
|
||||
`/play?source=${actualSource}&id=${actualId}&title=${encodeURIComponent(
|
||||
actualTitle.trim()
|
||||
)}${year ? `&year=${year}` : ''}`
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
// 播放按钮点击处理
|
||||
const handlePlayClick = (e: React.MouseEvent) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
handleClick();
|
||||
};
|
||||
|
||||
const hideCheckCircle =
|
||||
from === 'favorites' || from === 'search' || !isStandard;
|
||||
const alwaysShowHeart = from !== 'favorites' && isStandard;
|
||||
const showHoverLayer = isStandard
|
||||
? alwaysShowHeart
|
||||
? 'opacity-50 group-hover:opacity-100'
|
||||
: 'opacity-0 group-hover:opacity-100'
|
||||
: 'opacity-0 group-hover:opacity-100';
|
||||
|
||||
return (
|
||||
<Link
|
||||
href={`/play?source=${source}&id=${id}&title=${encodeURIComponent(
|
||||
title.trim()
|
||||
)}${year ? `&year=${year}` : ''}${from ? `&from=${from}` : ''}`}
|
||||
<div
|
||||
className={`group relative w-full rounded-lg bg-transparent flex flex-col cursor-pointer transition-all duration-300 ease-in-out ${
|
||||
isDeleting ? 'opacity-0 scale-90' : ''
|
||||
} ${isDemo ? 'group-hover:scale-[1.02]' : ''}`}
|
||||
onClick={handleClick}
|
||||
>
|
||||
<div
|
||||
className={`group relative w-full rounded-lg bg-transparent flex flex-col cursor-pointer transition-all duration-300 ease-in-out ${
|
||||
isDeleting ? 'opacity-0 scale-90' : ''
|
||||
}`}
|
||||
>
|
||||
{/* 海报图片容器 */}
|
||||
<div className='relative aspect-[2/3] w-full overflow-hidden rounded-md transition-all duration-400 cubic-bezier(0.4,0,0.2,1)'>
|
||||
{/* 图片占位符 - 骨架屏效果 */}
|
||||
<ImagePlaceholder aspectRatio='aspect-[2/3]' />
|
||||
{/* 海报图片容器 */}
|
||||
<div className='relative aspect-[2/3] w-full overflow-hidden rounded-lg transition-all duration-400 cubic-bezier(0.4,0,0.2,1)'>
|
||||
{/* 图片占位符 - 骨架屏效果 */}
|
||||
<ImagePlaceholder aspectRatio='aspect-[2/3]' />
|
||||
|
||||
<Image
|
||||
src={poster}
|
||||
alt={title}
|
||||
fill
|
||||
className={`object-cover transition-transform duration-500 cubic-bezier(0.4,0,0.2,1) group-hover:scale-110
|
||||
<Image
|
||||
src={actualPoster}
|
||||
alt={actualTitle}
|
||||
fill
|
||||
className={`object-cover transition-transform duration-500 cubic-bezier(0.4,0,0.2,1) group-hover:scale-110
|
||||
${
|
||||
isLoaded
|
||||
? 'opacity-100 scale-100'
|
||||
: 'opacity-0 scale-95'
|
||||
}`}
|
||||
onLoadingComplete={() => setIsLoaded(true)}
|
||||
referrerPolicy='no-referrer'
|
||||
priority={false}
|
||||
/>
|
||||
{/* Hover 效果层 */}
|
||||
<div
|
||||
className={`absolute inset-0 bg-gradient-to-t from-black/70 via-black/20 to-transparent ${
|
||||
alwaysShowHeart
|
||||
? 'opacity-50 group-hover:opacity-100'
|
||||
: 'opacity-0 group-hover:opacity-100'
|
||||
} transition-all duration-300 cubic-bezier(0.4,0,0.2,1) flex items-center justify-center overflow-hidden`}
|
||||
>
|
||||
{/* 播放按钮 */}
|
||||
<div className='absolute inset-0 flex items-center justify-center pointer-events-auto'>
|
||||
<div
|
||||
className={`transition-all duration-300 cubic-bezier(0.4,0,0.2,1) ${
|
||||
playHover ? 'scale-100 opacity-100' : 'scale-90 opacity-70'
|
||||
}`}
|
||||
style={{ cursor: 'pointer' }}
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
router.push(
|
||||
`/play?source=${source}&id=${id}&title=${encodeURIComponent(
|
||||
title
|
||||
)}${year ? `&year=${year}` : ''}`
|
||||
);
|
||||
}}
|
||||
onMouseEnter={() => setPlayHover(true)}
|
||||
onMouseLeave={() => setPlayHover(false)}
|
||||
>
|
||||
<PlayCircleSolid fillColor={playHover ? '#22c55e' : 'none'} />
|
||||
</div>
|
||||
onLoadingComplete={() => setIsLoaded(true)}
|
||||
referrerPolicy='no-referrer'
|
||||
priority={false}
|
||||
/>
|
||||
{/* Hover 效果层 */}
|
||||
<div
|
||||
className={`absolute inset-0 bg-gradient-to-t from-black/70 via-black/20 to-transparent ${showHoverLayer} transition-all duration-300 cubic-bezier(0.4,0,0.2,1) flex items-center justify-center overflow-hidden`}
|
||||
>
|
||||
{/* 播放按钮 */}
|
||||
<div className='absolute inset-0 flex items-center justify-center pointer-events-auto'>
|
||||
<div
|
||||
className={`transition-all duration-300 cubic-bezier(0.4,0,0.2,1) ${
|
||||
playHover ? 'scale-100 opacity-100' : 'scale-90 opacity-70'
|
||||
} ${isDemo && playHover ? 'scale-110 rotate-12' : ''}`}
|
||||
style={{ cursor: 'pointer' }}
|
||||
onClick={handlePlayClick}
|
||||
onMouseEnter={() => setPlayHover(true)}
|
||||
onMouseLeave={() => setPlayHover(false)}
|
||||
>
|
||||
<PlayCircleSolid fillColor={playHover ? '#22c55e' : 'none'} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 右侧操作按钮组 */}
|
||||
{/* 右侧操作按钮组(仅标准卡片) */}
|
||||
{isStandard && (
|
||||
<div className='absolute bottom-2 right-2 sm:bottom-4 sm:right-4 flex items-center gap-3 transform transition-all duration-300 cubic-bezier(0.4,0,0.2,1) group-hover:scale-110'>
|
||||
{!hideCheckCircle && (
|
||||
<span
|
||||
@@ -240,67 +345,91 @@ export default function VideoCard({
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{/* 评分徽章(如果有rate字段) */}
|
||||
{rate && (
|
||||
<div className='absolute top-2 right-2 min-w-[1.25rem] h-4 w-4 sm:h-7 sm:w-7 sm:min-w-[1.5rem] bg-pink-500 dark:bg-pink-400 rounded-full flex items-center justify-center px-1 shadow-md transform transition-all duration-300 cubic-bezier(0.4, 0, 0.2, 1) group-hover:scale-110 group-hover:rotate-3'>
|
||||
<span className='text-white text-[0.5rem] sm:text-xs font-bold leading-none'>
|
||||
{rate}
|
||||
</span>
|
||||
</div>
|
||||
{/* 继续观看 - 集数矩形展示框 */}
|
||||
{episodes && episodes > 1 && currentEpisode && (
|
||||
)}
|
||||
|
||||
{/* 继续观看 - 集数矩形展示框(标准卡片) */}
|
||||
{isStandard &&
|
||||
actualEpisodes &&
|
||||
actualEpisodes > 1 &&
|
||||
currentEpisode && (
|
||||
<div className='absolute top-2 right-2 min-w-[1.875rem] h-5 sm:h-7 sm:min-w-[2.5rem] bg-green-500/90 dark:bg-green-600/90 rounded-md flex items-center justify-center px-2 shadow-md text-[0.55rem] sm:text-xs'>
|
||||
<span className='text-white font-bold leading-none'>
|
||||
{currentEpisode}
|
||||
<span className='mx-1 text-white/80'>/</span>
|
||||
</span>
|
||||
<span className='text-white font-bold leading-none'>
|
||||
{episodes}
|
||||
{actualEpisodes}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
{/* 搜索非聚合 - 集数圆形展示框 */}
|
||||
{episodes && episodes > 1 && !currentEpisode && (
|
||||
|
||||
{/* 搜索非聚合/聚合 - 集数圆形展示框 */}
|
||||
{(isStandard || isAggregate) &&
|
||||
actualEpisodes &&
|
||||
actualEpisodes > 1 &&
|
||||
!currentEpisode && (
|
||||
<div className='absolute top-2 right-2 w-4 h-4 sm:w-7 sm:h-7 rounded-full bg-green-500/90 dark:bg-green-600/90 flex items-center justify-center shadow-md text-[0.55rem] sm:text-xs'>
|
||||
<span className='text-white font-bold leading-none'>
|
||||
{episodes}
|
||||
{actualEpisodes}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
{/* 豆瓣链接按钮 */}
|
||||
{douban_id && from === 'search' && (
|
||||
|
||||
{/* 豆瓣链接按钮 */}
|
||||
{actualDoubanId &&
|
||||
(isDemo || (isStandard && from === 'search') || isAggregate) && (
|
||||
<a
|
||||
href={`https://movie.douban.com/subject/${douban_id}`}
|
||||
href={`https://movie.douban.com/subject/${actualDoubanId}`}
|
||||
target='_blank'
|
||||
rel='noopener noreferrer'
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
className='absolute top-2 left-2 scale-90 group-hover:scale-100 opacity-0 group-hover:opacity-100 transition-all duration-300 cubic-bezier(0.4,0,0.2,1)'
|
||||
>
|
||||
<div className='w-4 h-4 sm:w-7 sm:h-7 rounded-full bg-[#22c55e] flex items-center justify-center shadow-md opacity-70 hover:opacity-100 transition-all duration-200 ease-in-out hover:scale-110 hover:bg-[#16a34a]'>
|
||||
<div
|
||||
className={`w-4 h-4 sm:w-7 sm:h-7 rounded-full bg-[#22c55e] ${
|
||||
isDemo ? 'dark:bg-[#16a34a]' : ''
|
||||
} flex items-center justify-center shadow-md opacity-70 hover:opacity-100 transition-all duration-200 ease-in-out hover:scale-110 hover:bg-[#16a34a] ${
|
||||
isDemo ? 'dark:hover:bg-[#15803d]' : ''
|
||||
}`}
|
||||
>
|
||||
<LinkIcon className='w-4 h-4 text-white' strokeWidth={2} />
|
||||
</div>
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* 播放进度条 - 移至图片容器外部,标题上方 */}
|
||||
{progress !== undefined && (
|
||||
<div className='mt-1 h-1 w-full bg-gray-200 dark:bg-gray-700 rounded-full overflow-hidden'>
|
||||
<div
|
||||
className='h-full bg-[#22c55e] rounded-full transition-all duration-200'
|
||||
style={{ width: `${progress}%` }}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* 信息层 */}
|
||||
<span className='mt-2 px-1 block text-gray-900 font-semibold truncate w-full text-center text-xs sm:text-sm dark:text-gray-200 transition-all duration-400 cubic-bezier(0.4,0,0.2,1) group-hover:translate-y-[-2px] translate-y-1 opacity-80 group-hover:opacity-100 group-hover:text-green-600 dark:group-hover:text-green-400'>
|
||||
{title}
|
||||
</span>
|
||||
|
||||
{/* 来源信息 */}
|
||||
{source && (
|
||||
<span className='mt-1 px-1 block text-gray-500 text-[0.5rem] sm:text-xs w-full text-center dark:text-gray-400 transition-all duration-400 cubic-bezier(0.4,0,0.2,1) group-hover:translate-y-[-2px] translate-y-1 opacity-80 group-hover:opacity-100'>
|
||||
<span className='inline-block border border-gray-500/60 rounded px-2 py-[1px] dark:border-gray-400/60'>
|
||||
{source_name}
|
||||
</span>
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</Link>
|
||||
|
||||
{/* 播放进度条(仅标准卡片) */}
|
||||
{isStandard && progress !== undefined && (
|
||||
<div className='mt-1 h-1 w-full bg-gray-200 dark:bg-gray-700 rounded-full overflow-hidden'>
|
||||
<div
|
||||
className='h-full bg-[#22c55e] rounded-full transition-all duration-200'
|
||||
style={{ width: `${progress}%` }}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* 信息层 */}
|
||||
<span className='mt-2 px-1 block text-gray-900 font-semibold truncate w-full text-center text-xs sm:text-sm dark:text-gray-200 transition-all duration-400 cubic-bezier(0.4,0,0.2,1) group-hover:translate-y-[-2px] translate-y-1 opacity-80 group-hover:opacity-100 group-hover:text-green-600 dark:group-hover:text-green-400'>
|
||||
{actualTitle}
|
||||
</span>
|
||||
|
||||
{/* 来源信息(仅标准卡片) */}
|
||||
{isStandard && actualSource && (
|
||||
<span className='mt-1 px-1 block text-gray-500 text-[0.5rem] sm:text-xs w-full text-center dark:text-gray-400 transition-all duration-400 cubic-bezier(0.4,0,0.2,1) group-hover:translate-y-[-2px] translate-y-1 opacity-80 group-hover:opacity-100'>
|
||||
<span className='inline-block border border-gray-500/60 rounded px-2 py-[1px] dark:border-gray-400/60'>
|
||||
{source_name}
|
||||
</span>
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user