173 lines
5.8 KiB
TypeScript
173 lines
5.8 KiB
TypeScript
import React from 'react';
|
|
import { Users, 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 { getMediaUrl } from '@/lib/utilities/media';
|
|
import { RankMedal } from './RankMedal';
|
|
import { LeaderboardTableShell } from './LeaderboardTableShell';
|
|
|
|
interface TeamLeaderboardPreviewProps {
|
|
teams: {
|
|
id: string;
|
|
name: string;
|
|
tag: string;
|
|
memberCount: number;
|
|
category?: string;
|
|
totalWins: number;
|
|
logoUrl: string;
|
|
position: number;
|
|
}[];
|
|
onTeamClick: (id: string) => void;
|
|
onNavigateToTeams: () => void;
|
|
}
|
|
|
|
export function TeamLeaderboardPreview({ teams, onTeamClick, onNavigateToTeams }: TeamLeaderboardPreviewProps) {
|
|
const top5 = teams;
|
|
|
|
return (
|
|
<LeaderboardTableShell>
|
|
<Box
|
|
display="flex"
|
|
alignItems="center"
|
|
justifyContent="between"
|
|
px={5}
|
|
py={4}
|
|
borderBottom
|
|
borderColor="border-charcoal-outline/50"
|
|
bg="bg-deep-charcoal/40"
|
|
>
|
|
<Box display="flex" alignItems="center" gap={3}>
|
|
<Box
|
|
display="flex"
|
|
h="10"
|
|
w="10"
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
rounded="lg"
|
|
bg="bg-gradient-to-br from-purple-500/15 to-purple-500/5"
|
|
border
|
|
borderColor="border-purple-500/20"
|
|
>
|
|
<Icon icon={Users} size={5} color="text-purple-400" />
|
|
</Box>
|
|
<Box>
|
|
<Heading level={3} fontSize="lg" weight="bold" color="text-white" letterSpacing="tight">Team Rankings</Heading>
|
|
<Text size="xs" color="text-gray-500" block uppercase letterSpacing="wider" weight="bold">Top Performing Teams</Text>
|
|
</Box>
|
|
</Box>
|
|
<Button
|
|
variant="secondary"
|
|
onClick={onNavigateToTeams}
|
|
size="sm"
|
|
hoverBg="bg-purple-500/10"
|
|
transition
|
|
>
|
|
<Stack direction="row" align="center" gap={2}>
|
|
<Text size="sm" weight="medium">View All</Text>
|
|
<Icon icon={ChevronRight} size={4} />
|
|
</Stack>
|
|
</Button>
|
|
</Box>
|
|
|
|
<Stack gap={0}>
|
|
{top5.map((team, index) => {
|
|
const position = team.position;
|
|
const isLast = index === top5.length - 1;
|
|
|
|
return (
|
|
<Box
|
|
key={team.id}
|
|
as="button"
|
|
type="button"
|
|
onClick={() => onTeamClick(team.id)}
|
|
display="flex"
|
|
alignItems="center"
|
|
gap={4}
|
|
px={5}
|
|
py={3}
|
|
w="full"
|
|
textAlign="left"
|
|
transition
|
|
hoverBg="bg-white/[0.02]"
|
|
group
|
|
borderBottom={!isLast}
|
|
borderColor="border-charcoal-outline/30"
|
|
>
|
|
<Box w="8" display="flex" justifyContent="center">
|
|
<RankMedal rank={position} size="sm" />
|
|
</Box>
|
|
|
|
<Box
|
|
display="flex"
|
|
h="9"
|
|
w="9"
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
rounded="lg"
|
|
bg="bg-graphite-black/50"
|
|
border
|
|
borderColor="border-charcoal-outline"
|
|
overflow="hidden"
|
|
groupHoverBorderColor="purple-400/50"
|
|
transition
|
|
>
|
|
<Image
|
|
src={team.logoUrl || getMediaUrl('team-logo', team.id)}
|
|
alt={team.name}
|
|
width={36}
|
|
height={36}
|
|
fullWidth
|
|
fullHeight
|
|
objectFit="cover"
|
|
/>
|
|
</Box>
|
|
|
|
<Box flexGrow={1} minWidth="0">
|
|
<Text
|
|
weight="semibold"
|
|
color="text-white"
|
|
truncate
|
|
groupHoverTextColor="text-purple-400"
|
|
transition
|
|
block
|
|
>
|
|
{team.name}
|
|
</Text>
|
|
<Box display="flex" alignItems="center" gap={2} flexWrap="wrap">
|
|
{team.category && (
|
|
<Box display="flex" alignItems="center" gap={1} color="text-purple-400">
|
|
<Box w="1.5" h="1.5" rounded="full" bg="bg-purple-400" />
|
|
<Text size="xs" weight="medium">{team.category}</Text>
|
|
</Box>
|
|
)}
|
|
<Box w="1" h="1" rounded="full" bg="bg-gray-700" />
|
|
<Box display="flex" alignItems="center" gap={1}>
|
|
<Icon icon={Users} size={3} color="text-gray-500" />
|
|
<Text size="xs" color="text-gray-500">{team.memberCount} members</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
|
|
<Box display="flex" alignItems="center" gap={6}>
|
|
<Box textAlign="right">
|
|
<Text color="text-purple-400" font="mono" weight="bold" block size="sm">{team.memberCount}</Text>
|
|
<Text fontSize="10px" color="text-gray-500" block uppercase letterSpacing="wider" weight="bold">Members</Text>
|
|
</Box>
|
|
<Box textAlign="right" minWidth="12">
|
|
<Text color="text-performance-green" font="mono" weight="bold" block size="sm">{team.totalWins}</Text>
|
|
<Text fontSize="10px" color="text-gray-500" block uppercase letterSpacing="wider" weight="bold">Wins</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
})}
|
|
</Stack>
|
|
</LeaderboardTableShell>
|
|
);
|
|
}
|