brackt/app/components/standings/PointProgressionChart.tsx
Chris Parsons 9ed0282fd0
New design (#309)
* 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>
2026-04-23 13:14:55 -07:00

166 lines
5.2 KiB
TypeScript

import { LineChart, Line, XAxis, YAxis, CartesianGrid, ResponsiveContainer } from 'recharts';
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "~/components/ui/card";
import { useState } from "react";
interface LegendPayload {
value: string;
color: string;
}
interface CustomLegendProps {
payload: LegendPayload[];
onHover: (dataKey: string | null) => void;
onLeave: () => void;
}
function CustomLegend({ payload, onHover, onLeave }: CustomLegendProps) {
return (
<div className="flex flex-wrap md:flex-col gap-3 px-4" role="group" aria-label="Chart legend">
{payload.map((entry) => (
<div
key={entry.value}
className="flex items-center gap-2 cursor-pointer transition-opacity hover:opacity-80"
style={{ color: entry.color }}
onMouseEnter={() => onHover(entry.value)}
onMouseLeave={onLeave}
role="button"
aria-label={`Toggle ${entry.value} line`}
tabIndex={0}
onKeyDown={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
onHover(entry.value);
}
}}
onKeyUp={(e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
onLeave();
}
}}
>
<span
className="w-3 h-3 rounded-full"
style={{ backgroundColor: entry.color }}
aria-hidden="true"
/>
<span className="text-sm font-medium">{entry.value}</span>
</div>
))}
</div>
);
}
interface Team {
id: string;
name: string;
}
export interface ChartDataPoint {
date: string;
[teamName: string]: string | number;
}
interface PointProgressionChartProps {
chartData: ChartDataPoint[];
teams: Team[];
}
// Color palette for team lines
const COLORS = [
'#3b82f6', // blue
'#ef4444', // red
'#10b981', // green
'#f59e0b', // amber
'#8b5cf6', // violet
'#ec4899', // pink
'#06b6d4', // cyan
'#f97316', // orange
'#84cc16', // lime
'#6366f1', // indigo
];
function formatDate(dateStr: string) {
const date = new Date(dateStr);
return date.toLocaleDateString('en-US', { month: 'short', day: 'numeric' });
}
export function PointProgressionChart({ chartData, teams }: PointProgressionChartProps) {
const [hoveredLine, setHoveredLine] = useState<string | null>(null);
if (chartData.length === 0) {
return (
<Card>
<CardHeader>
<CardTitle>Point Progression</CardTitle>
<CardDescription>Track how team standings evolved over time</CardDescription>
</CardHeader>
<CardContent>
<div className="text-center py-12 text-muted-foreground">
<p>No historical data available yet.</p>
<p className="text-sm mt-2">Point progression will appear once daily snapshots are recorded.</p>
</div>
</CardContent>
</Card>
);
}
const latestData = chartData[chartData.length - 1];
const teamsByRank = [...teams].toSorted((a, b) => {
const aPoints = (typeof latestData[a.name] === 'number' ? latestData[a.name] : 0) as number;
const bPoints = (typeof latestData[b.name] === 'number' ? latestData[b.name] : 0) as number;
return bPoints - aPoints;
});
return (
<Card>
<CardHeader>
<CardTitle>Point Progression</CardTitle>
<CardDescription>
Track how team standings evolved over time ({chartData.length} day{chartData.length !== 1 ? 's' : ''} of data)
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex flex-col md:flex-row md:items-center gap-6">
<div className="flex-1 min-w-0">
<ResponsiveContainer width="100%" height={400}>
<LineChart data={chartData} margin={{ top: 5, right: 10, left: 0, bottom: 5 }}>
<CartesianGrid strokeDasharray="3 3" className="stroke-muted" />
<XAxis
dataKey="date"
tickFormatter={formatDate}
className="text-xs"
tick={{ fill: 'currentColor' }}
/>
<YAxis
width={40}
className="text-xs"
tick={{ fill: 'currentColor' }}
/>
{teams.map((team, index) => (
<Line
key={team.id}
type="monotone"
dataKey={team.name}
stroke={COLORS[index % COLORS.length]}
strokeWidth={2}
dot={false}
activeDot={false}
strokeOpacity={hoveredLine === null || hoveredLine === team.name ? 1 : 0.1}
isAnimationActive={false}
connectNulls
/>
))}
</LineChart>
</ResponsiveContainer>
</div>
<CustomLegend
payload={teamsByRank.map((team) => ({ value: team.name, color: COLORS[teams.findIndex(t => t.id === team.id) % COLORS.length] }))}
onHover={setHoveredLine}
onLeave={() => setHoveredLine(null)}
/>
</div>
</CardContent>
</Card>
);
}