Files
gridpilot.gg/apps/website/components/races/RaceHeaderPanel.tsx
2026-01-18 23:24:30 +01:00

95 lines
2.6 KiB
TypeScript

import { Icon } from '@/ui/Icon';
import { Stack } from '@/ui/Stack';
import { Text } from '@/ui/Text';
import { Calendar, Car, MapPin } from 'lucide-react';
import React from 'react';
import { RaceStatusBadge } from './RaceStatusBadge';
interface RaceHeaderPanelProps {
track: string;
car: string;
scheduledAt: string;
status: string;
leagueName?: string;
actions?: React.ReactNode;
}
export function RaceHeaderPanel({
track,
car,
scheduledAt,
status,
leagueName,
actions
}: RaceHeaderPanelProps) {
return (
<Stack
bg="bg-panel-gray"
rounded="xl"
border
borderColor="border-charcoal-outline"
overflow="hidden"
position="relative"
>
{/* Background Accent */}
<Stack
position="absolute"
top={0}
left={0}
right={0}
height="24"
bg="bg-gradient-to-r from-primary-blue/20 to-transparent"
opacity={0.5}
/>
<Stack p={6} position="relative">
<Stack direction={{ base: 'col', md: 'row' }} gap={6} align={{ base: 'start', md: 'center' }}>
{/* Info */}
<Stack flexGrow={1}>
<Stack gap={3}>
<Stack direction="row" align="center" gap={3} wrap>
<Text as="h1" size="3xl" weight="bold" color="text-white">
{track}
</Text>
<RaceStatusBadge status={status} />
</Stack>
<Stack direction="row" align="center" gap={6} wrap>
<Stack direction="row" align="center" gap={2}>
<Icon icon={Car} size={4} color="#9ca3af" />
<Text size="sm" color="text-gray-400">
{car}
</Text>
</Stack>
<Stack direction="row" align="center" gap={2}>
<Icon icon={Calendar} size={4} color="#9ca3af" />
<Text size="sm" color="text-gray-400">
{scheduledAt}
</Text>
</Stack>
{leagueName && (
<Stack direction="row" align="center" gap={2}>
<Icon icon={MapPin} size={4} color="#9ca3af" />
<Text size="sm" color="text-gray-400">
{leagueName}
</Text>
</Stack>
)}
</Stack>
</Stack>
</Stack>
{/* Actions */}
{actions && (
<Stack flexShrink={0} w={{ base: 'full', md: 'auto' }}>
{actions}
</Stack>
)}
</Stack>
</Stack>
</Stack>
);
}