Files
sofa/components/title-card.tsx
T
jakeandClaude Opus 4.6 f7d5179d0f Enhance dashboard: richer continue watching cards, color-coded stats, styled poster fallback
- Continue Watching cards now show episode still images in 16:9 aspect
  with overlaid episode info, play button, and progress bar
- Stats section uses per-stat color coding (primary/watching/watchlist/completed)
  with icon background pills and tabular-nums alignment
- No-poster fallback replaced with textured gradient + title text overlay
- Updated ContinueWatchingItem interface to include backdropPath, stillPath, overview

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 11:32:17 -05:00

97 lines
3.2 KiB
TypeScript

"use client";
import { motion } from "motion/react";
import Image from "next/image";
import Link from "next/link";
interface TitleCardProps {
id?: string;
tmdbId: number;
type: string;
title: string;
posterPath: string | null;
releaseDate?: string | null;
voteAverage?: number | null;
href?: string;
onImport?: () => void;
}
export function TitleCard({
id,
type,
title,
posterPath,
releaseDate,
voteAverage,
href,
onImport,
}: TitleCardProps) {
const year = releaseDate?.slice(0, 4);
const posterUrl = posterPath
? `https://image.tmdb.org/t/p/w300${posterPath}`
: null;
const content = (
<motion.div
className="group relative overflow-hidden rounded-xl ring-1 ring-foreground/5 transition-shadow hover:ring-primary/20 hover:shadow-lg hover:shadow-black/25"
whileHover={{ scale: 1.02 }}
transition={{ type: "spring" as const, stiffness: 400, damping: 25 }}
>
<div className="aspect-[2/3] overflow-hidden rounded-xl bg-card">
{posterUrl ? (
<Image
src={posterUrl}
alt={title}
width={300}
height={450}
className="h-full w-full object-cover"
/>
) : (
<div className="relative flex h-full items-center justify-center overflow-hidden bg-gradient-to-br from-card via-secondary to-muted">
<div
className="pointer-events-none absolute inset-0 opacity-[0.06]"
style={{
backgroundImage: `url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E")`,
}}
/>
<div className="absolute inset-0 bg-gradient-to-t from-primary/10 via-transparent to-transparent" />
<div className="relative px-3 text-center">
<p className="font-display text-sm leading-snug tracking-tight text-foreground/70">
{title}
</p>
</div>
</div>
)}
{/* Hover gradient overlay with metadata */}
<div className="absolute inset-0 bg-gradient-to-t from-black/70 via-transparent to-transparent opacity-0 transition-opacity duration-200 group-hover:opacity-100" />
</div>
<div className="mt-2 space-y-0.5">
<p className="line-clamp-1 text-sm font-medium leading-snug">{title}</p>
<div className="flex items-center gap-1.5 text-xs text-muted-foreground">
<span className="rounded bg-primary/10 px-1.5 py-0.5 text-[10px] font-semibold uppercase tracking-wider text-primary">
{type}
</span>
{year && <span>{year}</span>}
{voteAverage != null && voteAverage > 0 && (
<span className="text-primary"> {voteAverage.toFixed(1)}</span>
)}
</div>
</div>
</motion.div>
);
if (href || id) {
return <Link href={href ?? `/titles/${id}`}>{content}</Link>;
}
if (onImport) {
return (
<button type="button" onClick={onImport} className="w-full text-left">
{content}
</button>
);
}
return content;
}