mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 03:55:38 -04:00
Shows a subtle progress bar at the bottom of title cards indicating watched/total episodes, with a tooltip for exact counts. Uses a single efficient SQL query with JOINs to batch-fetch progress for all visible titles on the Explore page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
270 lines
8.1 KiB
TypeScript
270 lines
8.1 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
IconBookmarkFilled,
|
|
IconCheck,
|
|
IconCircleCheckFilled,
|
|
IconDeviceTv,
|
|
IconLoader,
|
|
IconMovie,
|
|
IconPlayerPlayFilled,
|
|
IconPlus,
|
|
IconStarFilled,
|
|
} from "@tabler/icons-react";
|
|
import { motion } from "motion/react";
|
|
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import { useState } from "react";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
import { quickAddToWatchlist } from "@/lib/actions/watchlist";
|
|
|
|
type TitleStatus = "watchlist" | "in_progress" | "completed";
|
|
|
|
interface TitleCardProps {
|
|
id?: string;
|
|
tmdbId: number;
|
|
type: string;
|
|
title: string;
|
|
posterPath: string | null;
|
|
releaseDate?: string | null;
|
|
voteAverage?: number | null;
|
|
href?: string;
|
|
onImport?: () => void;
|
|
showQuickAdd?: boolean;
|
|
userStatus?: TitleStatus | null;
|
|
episodeProgress?: { watched: number; total: number } | null;
|
|
}
|
|
|
|
type QuickAddState = "idle" | "loading" | "added";
|
|
|
|
const statusConfig = {
|
|
watchlist: {
|
|
icon: IconBookmarkFilled,
|
|
label: "On Watchlist",
|
|
badgeClass: "bg-status-watching/90 text-white",
|
|
},
|
|
in_progress: {
|
|
icon: IconPlayerPlayFilled,
|
|
label: "Watching",
|
|
badgeClass: "bg-status-watching/90 text-white",
|
|
},
|
|
completed: {
|
|
icon: IconCircleCheckFilled,
|
|
label: "Completed",
|
|
badgeClass: "bg-status-completed/90 text-white",
|
|
},
|
|
} as const;
|
|
|
|
function QuickAddButton({
|
|
tmdbId,
|
|
type,
|
|
userStatus,
|
|
}: {
|
|
tmdbId: number;
|
|
type: "movie" | "tv";
|
|
userStatus?: TitleStatus | null;
|
|
}) {
|
|
const [state, setState] = useState<QuickAddState>(
|
|
userStatus ? "added" : "idle",
|
|
);
|
|
const [addedStatus, setAddedStatus] = useState<TitleStatus | null>(
|
|
userStatus ?? null,
|
|
);
|
|
|
|
const effectiveStatus = addedStatus;
|
|
const config = effectiveStatus ? statusConfig[effectiveStatus] : null;
|
|
|
|
async function handleClick(e: React.MouseEvent) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
if (state === "loading" || state === "added") return;
|
|
setState("loading");
|
|
try {
|
|
const result = await quickAddToWatchlist(tmdbId, type);
|
|
setState("added");
|
|
setAddedStatus(result.alreadyAdded ? null : "watchlist");
|
|
if (result.alreadyAdded) {
|
|
// Already existed — keep as added but we don't know exact status
|
|
setAddedStatus("watchlist");
|
|
}
|
|
} catch {
|
|
setState("idle");
|
|
}
|
|
}
|
|
|
|
if (state === "added" && config) {
|
|
const StatusIcon = config.icon;
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
className="absolute top-2 right-2 z-10 flex size-8 items-center justify-center rounded-full bg-black/50 backdrop-blur-sm text-white cursor-default"
|
|
render={<div />}
|
|
>
|
|
<StatusIcon className="size-4" />
|
|
</TooltipTrigger>
|
|
<TooltipContent side="bottom">{config.label}</TooltipContent>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
onClick={handleClick}
|
|
className="absolute top-2 right-2 z-10 flex size-8 items-center justify-center rounded-full bg-black/50 backdrop-blur-sm text-white opacity-0 transition-opacity group-hover:opacity-100 focus-visible:opacity-100 hover:bg-black/70"
|
|
render={<button type="button" />}
|
|
>
|
|
{state === "idle" && <IconPlus className="size-4" />}
|
|
{state === "loading" && <IconLoader className="size-4 animate-spin" />}
|
|
{state === "added" && <IconCheck className="size-4 text-green-400" />}
|
|
</TooltipTrigger>
|
|
<TooltipContent side="bottom">
|
|
{state === "added" ? "Added to Watchlist" : "Add to Watchlist"}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
function StatusBadge({ status }: { status: TitleStatus }) {
|
|
const config = statusConfig[status];
|
|
const StatusIcon = config.icon;
|
|
|
|
return (
|
|
<div
|
|
className={`absolute bottom-2 left-2 z-10 flex items-center gap-1 rounded-full px-2 py-0.5 text-[10px] font-semibold leading-tight shadow-md backdrop-blur-sm ${config.badgeClass}`}
|
|
>
|
|
<StatusIcon className="size-3" />
|
|
{config.label}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ProgressBar({ watched, total }: { watched: number; total: number }) {
|
|
const pct = total > 0 ? (watched / total) * 100 : 0;
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
className="absolute bottom-0 left-0 right-0 z-10 h-1 bg-white/10 cursor-default"
|
|
render={<div />}
|
|
>
|
|
<div
|
|
className="h-full bg-status-watching transition-all duration-500 ease-out"
|
|
style={{ width: `${pct}%` }}
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">
|
|
{watched}/{total} episodes
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
export function TitleCard({
|
|
id,
|
|
tmdbId,
|
|
type,
|
|
title,
|
|
posterPath,
|
|
releaseDate,
|
|
voteAverage,
|
|
href,
|
|
onImport,
|
|
showQuickAdd,
|
|
userStatus,
|
|
episodeProgress,
|
|
}: TitleCardProps) {
|
|
const year = releaseDate?.slice(0, 4);
|
|
const TypeIcon = type === "movie" ? IconMovie : IconDeviceTv;
|
|
|
|
const cardInner = (
|
|
<motion.div
|
|
className="relative overflow-hidden rounded-xl bg-card ring-1 ring-white/[0.06] transition-shadow hover:ring-primary/25 hover:shadow-lg hover:shadow-primary/5"
|
|
whileHover={{ scale: 1.02 }}
|
|
transition={{ type: "spring", stiffness: 400, damping: 25 }}
|
|
>
|
|
<div className="aspect-[2/3] overflow-hidden bg-card">
|
|
{posterPath ? (
|
|
<Image
|
|
src={posterPath}
|
|
alt={title}
|
|
width={300}
|
|
height={450}
|
|
className="h-full w-full object-cover transition-transform duration-300 group-hover:scale-105"
|
|
/>
|
|
) : (
|
|
<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>
|
|
)}
|
|
{/* Status badge on poster */}
|
|
{userStatus && <StatusBadge status={userStatus} />}
|
|
{/* Hover gradient overlay */}
|
|
<div className="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 transition-opacity duration-200 group-hover:opacity-100" />
|
|
</div>
|
|
|
|
{/* Metadata */}
|
|
<div className="px-3 pb-3 pt-2.5">
|
|
<p className="line-clamp-1 text-sm font-medium leading-snug">{title}</p>
|
|
<div className="mt-1.5 flex items-center gap-2 text-xs text-muted-foreground">
|
|
<TypeIcon className="size-3.5 shrink-0 text-primary/60" />
|
|
{year && <span>{year}</span>}
|
|
{voteAverage != null && voteAverage > 0 && (
|
|
<span className="ml-auto flex items-center gap-0.5 text-primary/80">
|
|
<IconStarFilled className="size-[11px]" />
|
|
{voteAverage.toFixed(1)}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Episode progress bar */}
|
|
{episodeProgress && episodeProgress.watched > 0 && (
|
|
<ProgressBar
|
|
watched={episodeProgress.watched}
|
|
total={episodeProgress.total}
|
|
/>
|
|
)}
|
|
</motion.div>
|
|
);
|
|
|
|
if (href || id) {
|
|
return (
|
|
<div className="relative group">
|
|
{showQuickAdd && (
|
|
<QuickAddButton
|
|
tmdbId={tmdbId}
|
|
type={type as "movie" | "tv"}
|
|
userStatus={userStatus}
|
|
/>
|
|
)}
|
|
<Link href={href ?? `/titles/${id}`}>{cardInner}</Link>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (onImport) {
|
|
return (
|
|
<button type="button" onClick={onImport} className="w-full text-left">
|
|
{cardInner}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
return cardInner;
|
|
}
|