145 lines
5.6 KiB
TypeScript
145 lines
5.6 KiB
TypeScript
import React from 'react';
|
|
import { Trophy, Crown, Flag, ChevronRight } from 'lucide-react';
|
|
import { Button } from '@/ui/Button';
|
|
import { Box } from '@/ui/Box';
|
|
import { Text } from '@/ui/Text';
|
|
import { Heading } from '@/ui/Heading';
|
|
import { Icon } from '@/ui/Icon';
|
|
import { Stack } from '@/ui/Stack';
|
|
import { Image } from '@/ui/Image';
|
|
import { SkillLevelDisplay } from '@/lib/display-objects/SkillLevelDisplay';
|
|
import { MedalDisplay } from '@/lib/display-objects/MedalDisplay';
|
|
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 (
|
|
<Box rounded="xl" bg="bg-iron-gray/30" border borderColor="border-charcoal-outline" overflow="hidden">
|
|
<Box display="flex" alignItems="center" justifyContent="between" px={5} py={4} borderBottom borderColor="border-charcoal-outline" bg="bg-iron-gray/20">
|
|
<Box display="flex" alignItems="center" gap={3}>
|
|
<Box display="flex" h="10" w="10" alignItems="center" justifyContent="center" rounded="xl" bg="bg-gradient-to-br from-primary-blue/20 to-primary-blue/5" border borderColor="border-primary-blue/20">
|
|
<Icon icon={Trophy} size={5} color="text-primary-blue" />
|
|
</Box>
|
|
<Box>
|
|
<Heading level={3} fontSize="lg" weight="semibold" color="text-white">Driver Rankings</Heading>
|
|
<Text size="xs" color="text-gray-500" block>Top performers across all leagues</Text>
|
|
</Box>
|
|
</Box>
|
|
<Button
|
|
variant="secondary"
|
|
onClick={onNavigateToDrivers}
|
|
size="sm"
|
|
>
|
|
<Stack direction="row" align="center" gap={2}>
|
|
<Text size="sm">View All</Text>
|
|
<Icon icon={ChevronRight} size={4} />
|
|
</Stack>
|
|
</Button>
|
|
</Box>
|
|
|
|
<Stack gap={0}
|
|
// eslint-disable-next-line gridpilot-rules/component-classification
|
|
className="divide-y divide-charcoal-outline/50"
|
|
>
|
|
{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-iron-gray/30"
|
|
group
|
|
>
|
|
<Box
|
|
display="flex"
|
|
h="8"
|
|
w="8"
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
rounded="full"
|
|
border
|
|
// eslint-disable-next-line gridpilot-rules/component-classification
|
|
className={`text-xs font-bold ${MedalDisplay.getBg(position)} ${MedalDisplay.getColor(position)}`}
|
|
>
|
|
{position <= 3 ? <Icon icon={Crown} size={3.5} /> : <Text weight="bold">{position}</Text>}
|
|
</Box>
|
|
|
|
<Box position="relative" w="9" h="9" rounded="full" overflow="hidden" border borderWidth="2px" borderColor="border-charcoal-outline">
|
|
<Image src={driver.avatarUrl} alt={driver.name} fullWidth fullHeight objectFit="cover" />
|
|
</Box>
|
|
|
|
<Box flexGrow={1} minWidth="0">
|
|
<Text weight="medium" color="text-white" truncate groupHoverTextColor="text-primary-blue" transition block>
|
|
{driver.name}
|
|
</Text>
|
|
<Box display="flex" alignItems="center" gap={2}>
|
|
<Icon icon={Flag} size={3} color="text-gray-500" />
|
|
<Text size="xs" color="text-gray-500">{driver.nationality}</Text>
|
|
<Box as="span"
|
|
// eslint-disable-next-line gridpilot-rules/component-classification
|
|
className={SkillLevelDisplay.getColor(driver.skillLevel)}
|
|
>
|
|
<Text size="xs">{SkillLevelDisplay.getLabel(driver.skillLevel)}</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
|
|
<Box display="flex" alignItems="center" gap={4}>
|
|
<Box textAlign="center">
|
|
<Text color="text-primary-blue" font="mono" weight="semibold" block>{RatingDisplay.format(driver.rating)}</Text>
|
|
<Text
|
|
// eslint-disable-next-line gridpilot-rules/component-classification
|
|
style={{ fontSize: '10px' }}
|
|
color="text-gray-500"
|
|
block
|
|
>
|
|
Rating
|
|
</Text>
|
|
</Box>
|
|
<Box textAlign="center">
|
|
<Text color="text-performance-green" font="mono" weight="semibold" block>{driver.wins}</Text>
|
|
<Text
|
|
// eslint-disable-next-line gridpilot-rules/component-classification
|
|
style={{ fontSize: '10px' }}
|
|
color="text-gray-500"
|
|
block
|
|
>
|
|
Wins
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
})}
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
} |