* Redesign home page with new layout and component system - Two-column layout (My Leagues 2/3, Upcoming Events 1/3) with mobile stack - LeagueRow: square avatar, gradient draft highlight, rank/points display, progress bar - MyLeaguesCard, CreateLeagueCard with shared SectionCardHeader - UpcomingEventsCard: vertical timeline with grouped multi-league events - Shared gradient system: BracktGradients SVG defs, GradientIcon wrapper, brand.ts constants - Button default variant updated to green→cyan gradient - Navbar: plain nav links with gradient hover, support/admin icon buttons - Accessibility fixes: semantic h2 headings, aria-label on LeagueAvatar and nav elements - Storybook stories for all new components Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Responsive league row layout and mobile polish - League rows stack avatar+name on top, stats full-width below on mobile - Stats spread to right side on sm+ screens with border separator on mobile - Tighter padding on mobile (px-3/py-3), full padding on sm+ - Card headers and content use px-3 sm:px-6 to reduce mobile gutters - Two-column home layout deferred to lg breakpoint (tablet gets stacked) - Active leagues sorted by completion percentage descending - Default rank 1 / 0 points for active leagues with no scoring events yet - Fix ordinal bug for 11th/12th/13th; add aria-labels to rank change indicators - Remove dead StatDivider className prop Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Improve claude file. * Add StandingsPreview card component with podium row styling - New StandingsPreview component with gold/silver/bronze row tints for top 3, team avatar, and LeagueRow-style stat columns (Ranking + Points) with rank and 7-day point change indicators - Fix GradientIcon in Storybook by adding BracktGradients decorator to preview.tsx (renamed from .ts to support JSX) - Fix degenerate SVG gradient on horizontal strokes by switching BracktGradients to gradientUnits="userSpaceOnUse" with Lucide-space coordinates (0→24) - Revert erroneous fill: url(#gradient) from GradientIcon; stroke-only fix was sufficient once gradientUnits was corrected Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update components on league homepage. * Finish up league page styling. * Work on standings page. * Add story for RecentScoresCard * Update Point Progression Chart. * Sort point progression legend by ranking and add team links to standings rows * Fix standings discrepancy on change. * Create draft cell component. * Update draft board page * Draft room improvements. * Update some draft room styling. * Fix context menu missing. * Move tab navigation and autodraft to header row, narrow sidebar * Virtualize available participants list, memoize draft room props Adds @tanstack/react-virtual to replace separate mobile/desktop lists with a single unified virtual scroll loop. Also memoizes miniDraftGrid and availableParticipantsSectionProps, and switches pick lookup from Array.find to a Map for O(1) access. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update draft room UI. * More draft room fixes. * Draft room tweaks. * Fix Rosters page. * Queue Section fixes. * Mobile Draft fixes. * Fix draft board page. * Create bracket look. * Bracket work. * Finish bracket page. * Homepage initial styling * homepage copy * Add privacy policy. Fixes #88. * how to play copy * rules copy * Fix brackets on homepage. * Add footer to website. * Glow on dots. * Landing page copy. * Fix sidebar. --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
285 lines
10 KiB
TypeScript
285 lines
10 KiB
TypeScript
import { format } from "date-fns";
|
|
import { Calendar, CheckCircle2, ChevronRight, Clock, Layers, ListOrdered, SquareStack, Trophy } from "lucide-react";
|
|
import { Link } from "react-router";
|
|
import { Badge } from "~/components/ui/badge";
|
|
import { Button } from "~/components/ui/button";
|
|
import { Card, CardContent, CardHeader } from "~/components/ui/card";
|
|
import { GradientIcon } from "~/components/ui/GradientIcon";
|
|
import type { UpcomingParticipantEvent } from "~/models/scoring-event";
|
|
|
|
// ─── Types ────────────────────────────────────────────────────────────────────
|
|
|
|
export interface DraftedParticipantSummary {
|
|
id: string;
|
|
name: string;
|
|
/** Fantasy league points earned (position → scoring rules). null = no result yet. */
|
|
earnedPoints: number | null;
|
|
/** Accumulated qualifying points for qualifying_points sports. null for other sports. */
|
|
currentQP: number | null;
|
|
}
|
|
|
|
export interface SportSeasonSummaryItem {
|
|
id: string;
|
|
sportName: string;
|
|
seasonName: string;
|
|
status: "upcoming" | "active" | "completed";
|
|
scoringPattern?: string | null;
|
|
upcomingParticipantEvents?: UpcomingParticipantEvent[];
|
|
/** All participants the current user drafted for this sport, with points data. */
|
|
draftedParticipants?: DraftedParticipantSummary[];
|
|
}
|
|
|
|
export interface SportsSeasonsSummaryProps {
|
|
leagueId: string;
|
|
sportsSeasons: SportSeasonSummaryItem[];
|
|
/** Link to the full sports seasons list, if one exists. */
|
|
allSeasonsHref?: string;
|
|
}
|
|
|
|
// ─── Helpers ──────────────────────────────────────────────────────────────────
|
|
|
|
const STATUS_ORDER: Record<SportSeasonSummaryItem["status"], number> = {
|
|
active: 0,
|
|
upcoming: 1,
|
|
completed: 2,
|
|
};
|
|
|
|
function sortedByStatus(items: SportSeasonSummaryItem[]): SportSeasonSummaryItem[] {
|
|
return [...items].toSorted((a, b) => {
|
|
const diff = STATUS_ORDER[a.status] - STATUS_ORDER[b.status];
|
|
if (diff !== 0) return diff;
|
|
return a.sportName.localeCompare(b.sportName);
|
|
});
|
|
}
|
|
|
|
const PATTERN_ICON: Record<string, { icon: typeof ChevronRight; title: string }> = {
|
|
playoff_bracket: { icon: ChevronRight, title: "Bracket" },
|
|
season_standings: { icon: ListOrdered, title: "Season Standings" },
|
|
qualifying_points: { icon: SquareStack, title: "Qualifying Points" },
|
|
};
|
|
|
|
function SportIcon({ pattern }: { pattern?: string | null }) {
|
|
const entry = pattern ? PATTERN_ICON[pattern] : null;
|
|
const Icon = entry?.icon ?? Trophy;
|
|
return (
|
|
<div
|
|
className="h-9 w-9 shrink-0 flex items-center justify-center bg-black"
|
|
title={entry?.title}
|
|
>
|
|
<Icon className="h-4 w-4 text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/** Format the next upcoming event into a short string. */
|
|
function formatNextEvent(event: UpcomingParticipantEvent): string {
|
|
const base = event.matchLabel
|
|
? `${event.name} — ${event.matchLabel}`
|
|
: event.name;
|
|
|
|
const date = event.earliestGameTime
|
|
? format(new Date(event.earliestGameTime), "MMM d")
|
|
: event.eventDate
|
|
? format(new Date(event.eventDate + "T00:00:00"), "MMM d")
|
|
: null;
|
|
|
|
return date ? `${base} · ${date}` : base;
|
|
}
|
|
|
|
function formatPoints(p: DraftedParticipantSummary, scoringPattern?: string | null): string | null {
|
|
if (scoringPattern === "qualifying_points" && p.earnedPoints === null) {
|
|
if (!p.currentQP) return null;
|
|
return `${p.currentQP % 1 === 0 ? p.currentQP : p.currentQP.toFixed(1)} QP`;
|
|
}
|
|
if (p.earnedPoints === null) return null;
|
|
return `${Math.round(p.earnedPoints)} pts`;
|
|
}
|
|
|
|
// ─── Section header ───────────────────────────────────────────────────────────
|
|
|
|
type SectionStatus = "active" | "upcoming" | "completed";
|
|
|
|
function SectionHeader({ status }: { status: SectionStatus }) {
|
|
if (status === "active") {
|
|
return (
|
|
<div className="flex items-center gap-1.5 px-1 py-0.5">
|
|
<span className="relative flex h-2 w-2 shrink-0">
|
|
<span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-emerald-500 opacity-60" />
|
|
<span className="relative inline-flex h-2 w-2 rounded-full bg-emerald-500" />
|
|
</span>
|
|
<span className="text-xs font-semibold uppercase tracking-widest text-emerald-400">
|
|
Active
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
if (status === "upcoming") {
|
|
return (
|
|
<div className="flex items-center gap-1.5 px-1 py-0.5">
|
|
<Clock className="h-3 w-3 text-electric shrink-0" />
|
|
<span className="text-xs font-semibold uppercase tracking-widest text-electric">
|
|
Upcoming
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="flex items-center gap-1.5 px-1 py-0.5">
|
|
<CheckCircle2 className="h-3 w-3 text-muted-foreground shrink-0" />
|
|
<span className="text-xs font-semibold uppercase tracking-widest text-muted-foreground">
|
|
Completed
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ─── Participant chip ─────────────────────────────────────────────────────────
|
|
|
|
function ParticipantChip({
|
|
participant,
|
|
scoringPattern,
|
|
}: {
|
|
participant: DraftedParticipantSummary;
|
|
scoringPattern?: string | null;
|
|
}) {
|
|
const pointsLabel = formatPoints(participant, scoringPattern);
|
|
return (
|
|
<Badge variant="secondary" className="text-xs h-5 px-1.5 shrink-0 gap-1 bg-white/[0.1]">
|
|
<span>{participant.name}</span>
|
|
{pointsLabel && (
|
|
<span className="text-muted-foreground font-normal">· {pointsLabel}</span>
|
|
)}
|
|
</Badge>
|
|
);
|
|
}
|
|
|
|
// ─── Single sport row ─────────────────────────────────────────────────────────
|
|
|
|
function SportRow({
|
|
item,
|
|
leagueId,
|
|
}: {
|
|
item: SportSeasonSummaryItem;
|
|
leagueId: string;
|
|
}) {
|
|
const participants = item.draftedParticipants ?? [];
|
|
const events = item.upcomingParticipantEvents ?? [];
|
|
const nextEvent = events[0] ?? null;
|
|
const isCompleted = item.status === "completed";
|
|
|
|
const inner = (
|
|
<div
|
|
className={`group flex gap-3 rounded-lg px-3 py-2.5 transition-colors ${
|
|
isCompleted
|
|
? "hover:bg-white/[0.04] opacity-70 hover:opacity-100"
|
|
: "hover:bg-white/[0.06]"
|
|
}`}
|
|
>
|
|
{/* Left: scoring pattern icon in black box */}
|
|
<SportIcon pattern={item.scoringPattern} />
|
|
|
|
{/* Right: name + participants + next event */}
|
|
<div className="flex-1 min-w-0">
|
|
<p className="font-semibold text-sm leading-tight truncate">{item.sportName}</p>
|
|
<p className="text-xs text-muted-foreground truncate mb-1.5">{item.seasonName}</p>
|
|
|
|
{participants.length > 0 && (
|
|
<div className="flex flex-wrap gap-1">
|
|
{participants.map((p) => (
|
|
<ParticipantChip key={p.id} participant={p} scoringPattern={item.scoringPattern} />
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{nextEvent && (
|
|
<div className="flex items-center gap-1.5 text-xs text-muted-foreground mt-1.5">
|
|
<Calendar className="h-3 w-3 text-electric shrink-0" />
|
|
<span className="truncate" suppressHydrationWarning>
|
|
{formatNextEvent(nextEvent)}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<Link
|
|
to={`/leagues/${leagueId}/sports-seasons/${item.id}`}
|
|
className="block"
|
|
aria-label={`${item.sportName} — ${item.seasonName}`}
|
|
>
|
|
{inner}
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
// ─── Section ──────────────────────────────────────────────────────────────────
|
|
|
|
function Section({
|
|
status,
|
|
items,
|
|
leagueId,
|
|
}: {
|
|
status: SectionStatus;
|
|
items: SportSeasonSummaryItem[];
|
|
leagueId: string;
|
|
}) {
|
|
if (items.length === 0) return null;
|
|
|
|
return (
|
|
<div className="space-y-1">
|
|
<SectionHeader status={status} />
|
|
<div className="grid gap-0.5 sm:grid-cols-2">
|
|
{items.map((item) => (
|
|
<SportRow key={item.id} item={item} leagueId={leagueId} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ─── Public API ───────────────────────────────────────────────────────────────
|
|
|
|
export function SportsSeasonsSummary({
|
|
leagueId,
|
|
sportsSeasons,
|
|
allSeasonsHref,
|
|
}: SportsSeasonsSummaryProps) {
|
|
const sorted = sortedByStatus(sportsSeasons);
|
|
const active = sorted.filter((s) => s.status === "active");
|
|
const upcoming = sorted.filter((s) => s.status === "upcoming");
|
|
const completed = sorted.filter((s) => s.status === "completed");
|
|
|
|
return (
|
|
<Card className="gap-2">
|
|
<CardHeader className="px-3 sm:px-6 pb-2">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-2">
|
|
<GradientIcon icon={Layers} className="h-5 w-5 shrink-0" />
|
|
<div>
|
|
<h2 className="text-xl font-bold leading-none tracking-tight">Sports</h2>
|
|
</div>
|
|
</div>
|
|
{allSeasonsHref && (
|
|
<Button variant="outline" size="sm" asChild>
|
|
<Link to={allSeasonsHref}>View All</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</CardHeader>
|
|
|
|
<CardContent className="px-3 sm:px-6 space-y-3">
|
|
<Section status="active" items={active} leagueId={leagueId} />
|
|
{active.length > 0 && upcoming.length > 0 && (
|
|
<div className="border-t border-border/40" />
|
|
)}
|
|
<Section status="upcoming" items={upcoming} leagueId={leagueId} />
|
|
{(active.length > 0 || upcoming.length > 0) && completed.length > 0 && (
|
|
<div className="border-t border-border/40" />
|
|
)}
|
|
<Section status="completed" items={completed} leagueId={leagueId} />
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|