110 lines
4.7 KiB
TypeScript
110 lines
4.7 KiB
TypeScript
'use client';
|
|
|
|
import type { LeagueSettingsViewData } from '@/lib/view-data/leagues/LeagueSettingsViewData';
|
|
import { Box } from '@/ui/Box';
|
|
import { Heading } from '@/ui/Heading';
|
|
import { Icon } from '@/ui/Icon';
|
|
import { Grid } from '@/ui/Grid';
|
|
import { GridItem } from '@/ui/GridItem';
|
|
import { Stack } from '@/ui/Stack';
|
|
import { Surface } from '@/ui/Surface';
|
|
import { Text } from '@/ui/Text';
|
|
import { Clock, Settings, Shield, Trophy, Users, type LucideIcon } from 'lucide-react';
|
|
|
|
interface LeagueSettingsTemplateProps {
|
|
viewData: LeagueSettingsViewData;
|
|
}
|
|
|
|
export function LeagueSettingsTemplate({ viewData }: LeagueSettingsTemplateProps) {
|
|
return (
|
|
<Stack gap={8}>
|
|
<Stack gap={6}>
|
|
{/* League Information */}
|
|
<Surface variant="dark" border rounded="lg" padding={6}>
|
|
<Stack gap={6}>
|
|
<Stack direction="row" align="center" gap={3}>
|
|
<Box p={2} bg="bg-primary-blue/10" rounded="md" border borderColor="border-primary-blue/20">
|
|
<Icon icon={Settings} size={5} color="text-primary-blue" />
|
|
</Box>
|
|
<Box>
|
|
<Heading level={5} color="text-primary-blue">LEAGUE INFORMATION</Heading>
|
|
<Text size="xs" color="text-gray-500">Basic league details and identification</Text>
|
|
</Box>
|
|
</Stack>
|
|
|
|
<Grid cols={1} mdCols={2} gap={6}>
|
|
<InfoItem label="Name" value={viewData.league.name} />
|
|
<InfoItem label="Visibility" value={viewData.league.visibility} capitalize />
|
|
<GridItem colSpan={2}>
|
|
<InfoItem label="Description" value={viewData.league.description} />
|
|
</GridItem>
|
|
<InfoItem label="Created" value={new Date(viewData.league.createdAt).toLocaleDateString()} />
|
|
<InfoItem label="Owner ID" value={viewData.league.ownerId} />
|
|
</Grid>
|
|
</Stack>
|
|
</Surface>
|
|
|
|
{/* Configuration */}
|
|
<Surface variant="dark" border rounded="lg" padding={6}>
|
|
<Stack gap={6}>
|
|
<Stack direction="row" align="center" gap={3}>
|
|
<Box p={2} bg="bg-performance-green/10" rounded="md" border borderColor="border-performance-green/20">
|
|
<Icon icon={Trophy} size={5} color="text-performance-green" />
|
|
</Box>
|
|
<Box>
|
|
<Heading level={5} color="text-performance-green">CONFIGURATION</Heading>
|
|
<Text size="xs" color="text-gray-500">League rules and participation limits</Text>
|
|
</Box>
|
|
</Stack>
|
|
|
|
<Grid cols={1} mdCols={2} gap={6}>
|
|
<ConfigItem icon={Users} label="Max Drivers" value={viewData.config.maxDrivers} />
|
|
<ConfigItem icon={Shield} label="Require Approval" value={viewData.config.requireApproval ? 'Yes' : 'No'} />
|
|
<ConfigItem icon={Clock} label="Allow Late Join" value={viewData.config.allowLateJoin ? 'Yes' : 'No'} />
|
|
<ConfigItem icon={Trophy} label="Scoring Preset" value={viewData.config.scoringPresetId} />
|
|
</Grid>
|
|
</Stack>
|
|
</Surface>
|
|
|
|
{/* Note about forms */}
|
|
<Surface variant="dark" border rounded="lg" padding={8}>
|
|
<Stack align="center" gap={4}>
|
|
<Box p={4} bg="bg-warning-amber/10" rounded="full" border borderColor="border-warning-amber/20">
|
|
<Icon icon={Settings} size={8} color="text-warning-amber" />
|
|
</Box>
|
|
<Box textAlign="center">
|
|
<Heading level={3}>Settings Management</Heading>
|
|
<Text size="sm" color="text-gray-400" mt={2} display="block">
|
|
Form-based editing and ownership transfer functionality will be implemented in future updates.
|
|
</Text>
|
|
</Box>
|
|
</Stack>
|
|
</Surface>
|
|
</Stack>
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
function InfoItem({ label, value, capitalize }: { label: string, value: string, capitalize?: boolean }) {
|
|
return (
|
|
<Box>
|
|
<Text size="xs" weight="bold" color="text-gray-500" display="block" mb={1} letterSpacing="wider">{label.toUpperCase()}</Text>
|
|
<Text color="text-white" weight="medium">{capitalize ? value.toUpperCase() : value}</Text>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
function ConfigItem({ icon, label, value }: { icon: LucideIcon, label: string, value: string | number }) {
|
|
return (
|
|
<Stack direction="row" align="center" gap={4}>
|
|
<Box center w={10} h={10} rounded="lg" bg="bg-white/5">
|
|
<Icon icon={icon} size={5} color="text-gray-400" />
|
|
</Box>
|
|
<Box>
|
|
<Text size="xs" weight="bold" color="text-gray-500" display="block" letterSpacing="wider">{label.toUpperCase()}</Text>
|
|
<Text color="text-white" weight="medium">{value}</Text>
|
|
</Box>
|
|
</Stack>
|
|
);
|
|
}
|