brackt/app/components/draft/SidebarRecentPicks.tsx
Chris Parsons e2b178221a
Add oxlint linting setup with zero errors (#194)
* Add oxlint and fix all lint errors

- Install oxlint, add .oxlintrc.json with rules for TypeScript/React
- Add npm run lint / lint:fix scripts
- Add Claude PostToolUse hook to run oxlint on every edited file
- Fix 101 errors: unused vars/imports, eqeqeq, prefer-const, no-new-array
- Fix no-array-index-key (use stable keys or suppress positional cases)
- Fix exhaustive-deps missing dependency in useEffect
- Promote exhaustive-deps and no-array-index-key to errors
- Fix Map.get() !== null bug in $leagueId.server.ts (should be !== undefined)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* Fix no-explicit-any warnings and upgrade tsconfig to ES2023

- Replace all `any` types with proper types or `unknown` across ~20 files
- Add typed socket payload interfaces in draft route and useDraftSocket
- Use any[] with eslint-disable for socket.io callbacks (legitimate escape hatch)
- Bump all tsconfigs from ES2022 → ES2023 to support toSorted/toReversed
- Fix cascading type errors uncovered by removing any: Map.get narrowing,
  participant relation types, ChartDataPoint, Partial<NewSeason> indexing
- Add ParticipantResultWithParticipant type to participant-result model
- Fix test fixtures to match updated interfaces (DraftCell, ParticipantResult)
- Fix duplicate getQPStandings import in sportsSeasonId.server.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* Promote no-explicit-any to error

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 09:44:05 -07:00

61 lines
1.8 KiB
TypeScript

import { memo } from "react";
import { Badge } from "~/components/ui/badge";
interface SidebarRecentPicksProps {
picks: Array<{
id: string;
pickNumber: number;
round: number;
participant: {
name: string;
};
sport: {
name: string;
};
team: {
name: string;
};
}>;
}
export const SidebarRecentPicks = memo(function SidebarRecentPicks({ picks }: SidebarRecentPicksProps) {
return (
<div className="p-4">
{picks.length === 0 ? (
<p className="text-muted-foreground text-sm text-center py-8">
No picks yet...
</p>
) : (
<div className="space-y-1.5">
{picks
.slice()
.toReversed()
.map((pick) => (
<div
key={pick.id}
className="flex items-center justify-between p-2 bg-muted rounded-lg text-sm"
>
<div className="flex items-center gap-2 min-w-0 flex-1">
<Badge variant="outline" className="text-xs flex-shrink-0">
#{pick.pickNumber}
</Badge>
<div className="min-w-0 flex-1">
<p className="font-semibold truncate">{pick.participant.name}</p>
<p className="text-xs text-muted-foreground truncate">
{pick.sport.name}
</p>
</div>
</div>
<div className="text-right flex-shrink-0 ml-2">
<p className="font-medium text-xs truncate max-w-[100px]">{pick.team.name}</p>
<p className="text-xs text-muted-foreground">
R{pick.round}
</p>
</div>
</div>
))}
</div>
)}
</div>
);
});