mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
109 lines
4.6 KiB
TypeScript
109 lines
4.6 KiB
TypeScript
/**
|
|
* FavoritesItem - Individual favorite item card
|
|
* Matches HistoryItem layout for consistency
|
|
*/
|
|
|
|
import { Icons } from '@/components/ui/Icon';
|
|
import { formatDate } from '@/lib/utils/format-utils';
|
|
import type { FavoriteItem } from '@/lib/types';
|
|
|
|
interface FavoritesItemProps {
|
|
item: FavoriteItem;
|
|
onRemove: () => void;
|
|
}
|
|
|
|
export function FavoritesItem({ item, onRemove }: FavoritesItemProps) {
|
|
const getVideoUrl = (): string => {
|
|
const params = new URLSearchParams({
|
|
id: item.videoId.toString(),
|
|
source: item.source,
|
|
title: item.title,
|
|
});
|
|
return `/player?${params.toString()}`;
|
|
};
|
|
|
|
const handleClick = (event: React.MouseEvent) => {
|
|
// Middle mouse or Ctrl/Cmd+click opens in new tab
|
|
if (event.button === 1 || event.ctrlKey || event.metaKey) {
|
|
event.preventDefault();
|
|
window.open(getVideoUrl(), '_blank');
|
|
return;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="group bg-[color-mix(in_srgb,var(--glass-bg)_50%,transparent)] rounded-[var(--radius-2xl)] p-3 hover:bg-[color-mix(in_srgb,var(--accent-color)_10%,transparent)] transition-all border border-transparent hover:border-[var(--glass-border)]">
|
|
<a
|
|
href={getVideoUrl()}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
handleClick(e as any);
|
|
if (!e.ctrlKey && !e.metaKey) {
|
|
window.location.href = getVideoUrl();
|
|
}
|
|
}}
|
|
onAuxClick={(e) => handleClick(e as any)}
|
|
className="block"
|
|
>
|
|
<div className="flex gap-3">
|
|
{/* Poster - Same size as HistoryItem */}
|
|
<div className="relative w-28 h-16 flex-shrink-0 bg-[var(--glass-bg)] rounded-[var(--radius-2xl)] overflow-hidden">
|
|
{item.poster ? (
|
|
<img
|
|
src={item.poster}
|
|
alt={item.title}
|
|
className="w-full h-full object-cover"
|
|
referrerPolicy="no-referrer"
|
|
onError={(e) => {
|
|
const target = e.currentTarget as HTMLImageElement;
|
|
target.style.display = 'none';
|
|
}}
|
|
/>
|
|
) : null}
|
|
{/* Fallback icon */}
|
|
<div className="absolute inset-0 flex items-center justify-center -z-10">
|
|
<Icons.Film size={32} className="text-[var(--text-color-secondary)] opacity-30" />
|
|
</div>
|
|
</div>
|
|
|
|
{/* Info */}
|
|
<div className="flex-1 min-w-0">
|
|
<h3 className="text-sm font-medium text-[var(--text-color)] truncate group-hover:text-[var(--accent-color)] transition-colors mb-1">
|
|
{item.title}
|
|
</h3>
|
|
{item.year && (
|
|
<p className="text-xs text-[var(--text-color-secondary)] mb-1">
|
|
{item.year}
|
|
</p>
|
|
)}
|
|
<div className="flex items-center justify-between text-xs text-[var(--text-color-secondary)]">
|
|
{item.remarks && (
|
|
<span className="truncate">{item.remarks}</span>
|
|
)}
|
|
<span className="flex-shrink-0">
|
|
{formatDate(item.addedAt)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Actions */}
|
|
<div className="flex flex-col gap-1 self-start opacity-0 group-hover:opacity-100 transition-opacity">
|
|
{/* Remove button */}
|
|
<button
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
onRemove();
|
|
}}
|
|
className="p-1.5 hover:bg-[var(--glass-bg)] rounded-full cursor-pointer"
|
|
aria-label="取消收藏"
|
|
>
|
|
<Icons.Trash size={14} className="text-[var(--text-color-secondary)]" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|