brackt/app/components/standings/PointProgressionChart.tsx

167 lines
5.2 KiB
TypeScript
Raw Normal View History

2026-04-15 23:37:33 -07:00
import { LineChart, Line, XAxis, YAxis, CartesianGrid, ResponsiveContainer } from 'recharts';
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "~/components/ui/card";
2026-04-15 23:37:33 -07:00
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;
}
2026-04-15 23:37:33 -07:00
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
];
Fix oxlint warnings: no-shadow, consistent-function-scoping, no-non-null-assertion, and others (#196) * Fix no-shadow and consistent-function-scoping lint violations Resolves all 11 no-shadow and 16 consistent-function-scoping oxlint warnings and promotes both rules to errors in .oxlintrc.json. no-shadow: renamed Drizzle callback params (sports→s, matches→m, seasons→s) to avoid shadowing outer imports; removed shadowed destructures (eq, inArray) from where callbacks; renamed inner template→bracketTemplate, prev→currentTimers, season→ss, name→teamName (with name: teamName fix to preserve semantics). consistent-function-scoping: moved formatDate, getRankBadge, getMovementIndicator, getPositionBadge, getStatusBadge, toDateStr, elo (×2), weightedPick, sortByMatchNumber (×2) to module scope; moved formatTime (×2), isValidLeagueName, getDraftTimes, makeSeasonQueues to file scope in test files. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix no-non-null-assertion lint violations and promote to error Eliminates all 208 no-non-null-assertion warnings across 38 files. Promotes typescript/no-non-null-assertion from warn to error in .oxlintrc.json. Fix patterns applied: - Map.get(key)! after .has() check → extract with get() + null guard - Map.get(key)! on pre-populated count maps → ?? 0 default - .set(id, map.get(id)! + 1) increment → ?? 0 before adding - participant1Id!/participant2Id! on DB matches → ?? "" fallback - array.find()! in tests → guard + throw or expect().toBeDefined() - bracketTemplateCache.get(id)! → null guard extract - Various nullable field accesses → optional chain or ?? default Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix prefer-add-event-listener, no-unassigned-import, require-module-specifiers Resolves all 9 remaining non-console lint warnings and promotes all three rules to errors in .oxlintrc.json. - prefer-add-event-listener: converted onchange/onclick/onload assignments to addEventListener in useDraftNotifications.ts and admin.data-sync.tsx; stored changeHandler ref for proper cleanup with removeEventListener - no-unassigned-import: configured rule with allow list for legitimate side-effect imports (*.css, @testing-library/jest-dom, @testing-library/cypress/add-commands) - require-module-specifiers: removed redundant `export {}` from cypress/support/e2e.ts (file already has an import) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix TypeScript errors from no-non-null-assertion fixes Two fixes introduced by the non-null assertion cleanup produced type errors: - scoring-event.ts: `?? ""` was wrong type for a participant object map; restructured to explicit null guards so TypeScript can narrow correctly - standings-sync/index.ts: `?? null` after name-match lookup lost the truthy guarantee, causing TS18047 on the write-back block; added `participant &&` guard before accessing its properties Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add npm run typecheck as Stop hook in Claude settings Runs a full project typecheck at the end of each Claude turn so type errors surface as feedback before the next message. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 10:59:51 -07:00
function formatDate(dateStr: string) {
const date = new Date(dateStr);
return date.toLocaleDateString('en-US', { month: 'short', day: 'numeric' });
}
export function PointProgressionChart({ chartData, teams }: PointProgressionChartProps) {
2026-04-15 23:37:33 -07:00
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>
2026-04-15 23:37:33 -07:00
<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] }))}
2026-04-15 23:37:33 -07:00
onHover={setHoveredLine}
onLeave={() => setHoveredLine(null)}
/>
</div>
</CardContent>
</Card>
);
}