116 lines
4.1 KiB
TypeScript
116 lines
4.1 KiB
TypeScript
import { Trophy } from 'lucide-react';
|
|
import { Box } from '@/ui/Box';
|
|
import { Text } from '@/ui/Text';
|
|
import { Image } from '@/ui/Image';
|
|
import { LeaderboardList } from '@/ui/LeaderboardList';
|
|
import { LeaderboardPreviewShell } from '@/ui/LeaderboardPreviewShell';
|
|
import { RankBadge } from '@/components/leaderboards/RankBadge';
|
|
import { SkillLevelDisplay } from '@/lib/display-objects/SkillLevelDisplay';
|
|
import { RatingDisplay } from '@/lib/display-objects/RatingDisplay';
|
|
|
|
interface DriverLeaderboardPreviewProps {
|
|
drivers: {
|
|
id: string;
|
|
name: string;
|
|
rating: number;
|
|
skillLevel: string;
|
|
nationality: string;
|
|
wins: number;
|
|
rank: number;
|
|
avatarUrl: string;
|
|
position: number;
|
|
}[];
|
|
onDriverClick: (id: string) => void;
|
|
onNavigateToDrivers: () => void;
|
|
}
|
|
|
|
export function DriverLeaderboardPreview({ drivers, onDriverClick, onNavigateToDrivers }: DriverLeaderboardPreviewProps) {
|
|
const top10 = drivers; // Already sliced in builder
|
|
|
|
return (
|
|
<LeaderboardPreviewShell
|
|
title="Driver Rankings"
|
|
subtitle="Top Performers"
|
|
onViewFull={onNavigateToDrivers}
|
|
icon={Trophy}
|
|
iconColor="var(--primary-blue)"
|
|
iconBgGradient="linear-gradient(to bottom right, rgba(25, 140, 255, 0.2), rgba(25, 140, 255, 0.1))"
|
|
viewFullLabel="View All"
|
|
>
|
|
<LeaderboardList>
|
|
{top10.map((driver, index) => {
|
|
const position = index + 1;
|
|
|
|
return (
|
|
<Box
|
|
key={driver.id}
|
|
as="button"
|
|
type="button"
|
|
onClick={() => onDriverClick(driver.id)}
|
|
display="flex"
|
|
alignItems="center"
|
|
gap={4}
|
|
px={5}
|
|
py={3}
|
|
w="full"
|
|
textAlign="left"
|
|
transition
|
|
hoverBg="bg-white/[0.02]"
|
|
group
|
|
>
|
|
<Box w="8" display="flex" justifyContent="center">
|
|
<RankBadge rank={position} />
|
|
</Box>
|
|
|
|
<Box
|
|
position="relative"
|
|
w="9"
|
|
h="9"
|
|
rounded="full"
|
|
overflow="hidden"
|
|
border
|
|
borderColor="border-charcoal-outline"
|
|
groupHoverBorderColor="primary-blue/50"
|
|
transition
|
|
>
|
|
<Image src={driver.avatarUrl} alt={driver.name} fullWidth fullHeight objectFit="cover" />
|
|
</Box>
|
|
|
|
<Box flexGrow={1} minWidth="0">
|
|
<Text
|
|
weight="semibold"
|
|
color="text-white"
|
|
truncate
|
|
groupHoverTextColor="text-primary-blue"
|
|
transition
|
|
block
|
|
>
|
|
{driver.name}
|
|
</Text>
|
|
<Box display="flex" alignItems="center" gap={2}>
|
|
<Text size="xs" color="text-gray-500">{driver.nationality}</Text>
|
|
<Box w="1" h="1" rounded="full" bg="bg-gray-700" />
|
|
<Box as="span" color={SkillLevelDisplay.getColor(driver.skillLevel)}>
|
|
<Text size="xs" weight="medium">{SkillLevelDisplay.getLabel(driver.skillLevel)}</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
|
|
<Box display="flex" alignItems="center" gap={6}>
|
|
<Box textAlign="right">
|
|
<Text color="text-primary-blue" font="mono" weight="bold" block size="sm">{RatingDisplay.format(driver.rating)}</Text>
|
|
<Text fontSize="10px" color="text-gray-500" block uppercase letterSpacing="wider" weight="bold">Rating</Text>
|
|
</Box>
|
|
<Box textAlign="right" minWidth="12">
|
|
<Text color="text-performance-green" font="mono" weight="bold" block size="sm">{driver.wins}</Text>
|
|
<Text fontSize="10px" color="text-gray-500" block uppercase letterSpacing="wider" weight="bold">Wins</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
})}
|
|
</LeaderboardList>
|
|
</LeaderboardPreviewShell>
|
|
);
|
|
}
|