feat: add card thumbnails with label dots, due dates, and checklist progress bar

This commit is contained in:
Your Name
2026-02-15 18:49:20 +02:00
parent a68b6c7b8c
commit 624be051c1
3 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
import { format, isPast, isToday } from "date-fns";
import type { Card, Label } from "@/types/board";
import { LabelDots } from "@/components/board/LabelDots";
import { ChecklistBar } from "@/components/board/ChecklistBar";
interface CardThumbnailProps {
card: Card;
boardLabels: Label[];
}
export function CardThumbnail({ card, boardLabels }: CardThumbnailProps) {
const hasDueDate = card.dueDate != null;
const dueDate = hasDueDate ? new Date(card.dueDate!) : null;
const overdue = dueDate != null && isPast(dueDate) && !isToday(dueDate);
function handleClick() {
// Card detail modal will be wired in Task 11
console.log("Card clicked:", card.id);
}
return (
<button
onClick={handleClick}
className="w-full rounded-lg bg-pylon-surface p-3 shadow-sm text-left transition-all duration-200 hover:-translate-y-px hover:shadow-md"
>
{/* Label dots */}
{card.labels.length > 0 && (
<div className="mb-2">
<LabelDots labelIds={card.labels} boardLabels={boardLabels} />
</div>
)}
{/* Card title */}
<p className="text-sm font-medium text-pylon-text">{card.title}</p>
{/* Footer row: due date + checklist */}
{(hasDueDate || card.checklist.length > 0) && (
<div className="mt-2 flex items-center gap-3">
{dueDate && (
<span
className={`font-mono text-xs ${
overdue
? "rounded bg-pylon-danger/10 px-1 py-0.5 text-pylon-danger"
: "text-pylon-text-secondary"
}`}
>
{format(dueDate, "MMM d")}
</span>
)}
{card.checklist.length > 0 && (
<ChecklistBar checklist={card.checklist} />
)}
</div>
)}
</button>
);
}