273 lines
10 KiB
TypeScript
273 lines
10 KiB
TypeScript
'use client';
|
||
|
||
import { motion, useReducedMotion, useMotionValue, useSpring, useTransform } from 'framer-motion';
|
||
import { useEffect, useState } from 'react';
|
||
import { Box } from '@/ui/Box';
|
||
import { Text } from '@/ui/Text';
|
||
import { Stack } from '@/ui/Stack';
|
||
|
||
export function DriverProfileMockup() {
|
||
const shouldReduceMotion = useReducedMotion();
|
||
const [isMobile, setIsMobile] = useState(false);
|
||
|
||
useEffect(() => {
|
||
const checkMobile = () => setIsMobile(window.innerWidth < 768);
|
||
checkMobile();
|
||
window.addEventListener('resize', checkMobile);
|
||
return () => window.removeEventListener('resize', checkMobile);
|
||
}, []);
|
||
|
||
const stats = [
|
||
{ label: 'Wins', value: 24 },
|
||
{ label: 'Podiums', value: 48 },
|
||
{ label: 'Championships', value: 3 },
|
||
{ label: 'Races', value: 156 },
|
||
{ label: 'Finish Rate', value: 94, suffix: '%' }
|
||
];
|
||
|
||
const formData = [85, 72, 68, 91, 88, 95, 88, 79, 82, 91];
|
||
|
||
if (isMobile) {
|
||
return (
|
||
<Box position="relative" fullWidth fullHeight bg="graphite-black" rounded="none" p={3} overflow="hidden">
|
||
<Stack gap={4}>
|
||
<Box>
|
||
<Box display="flex" alignItems="center" justifyContent="between" mb={2}>
|
||
<Box display="flex" alignItems="center" gap={3}>
|
||
<Box position="relative" h="12" w="12" rounded="none" border borderWidth="1px" borderColor="primary-accent/50" overflow="hidden" bg="panel-gray" display="flex" alignItems="center" justifyContent="center">
|
||
<Text size="2xl">🏎️</Text>
|
||
<Box position="absolute" top="-1px" left="-1px" w="2" h="2" borderTop borderLeft borderColor="primary-accent" />
|
||
</Box>
|
||
<Box>
|
||
<Text weight="bold" color="text-white" block className="uppercase tracking-widest">Driver Profile</Text>
|
||
<Text size="xs" color="text-gray-500" block font="mono">CROSS-LEAGUE</Text>
|
||
</Box>
|
||
</Box>
|
||
<Text size="2xl" weight="bold" color="text-gray-800" font="mono">#33</Text>
|
||
</Box>
|
||
|
||
<Box position="relative" h="1" bg="white/5" rounded="none" overflow="hidden" mb={1}>
|
||
<Box
|
||
position="absolute"
|
||
insetY="0"
|
||
left="0"
|
||
bg="primary-accent"
|
||
style={{ width: '86%' }}
|
||
/>
|
||
</Box>
|
||
<Box display="flex" justifyContent="end">
|
||
<Text size="xs" color="text-primary-accent" font="mono" weight="bold">2150 GP RATING</Text>
|
||
</Box>
|
||
</Box>
|
||
|
||
<Box>
|
||
<Text size="xs" weight="bold" color="text-gray-500" mb={2} block className="uppercase tracking-widest">Career Stats</Text>
|
||
<Box display="grid" gridCols={3} gap={2}>
|
||
{stats.slice(0, 3).map((stat) => (
|
||
<Box
|
||
key={stat.label}
|
||
bg="panel-gray/40"
|
||
border
|
||
borderColor="border-gray/50"
|
||
rounded="none"
|
||
p={2}
|
||
textAlign="center"
|
||
>
|
||
<Text weight="bold" color="text-white" font="mono" block>
|
||
{stat.value}{stat.suffix}
|
||
</Text>
|
||
<Text size="xs" color="text-gray-500" mt={0.5} block className="uppercase tracking-tighter">{stat.label}</Text>
|
||
</Box>
|
||
))}
|
||
</Box>
|
||
</Box>
|
||
</Stack>
|
||
</Box>
|
||
);
|
||
}
|
||
|
||
const containerVariants = {
|
||
hidden: { opacity: 0 },
|
||
visible: {
|
||
opacity: 1,
|
||
transition: { staggerChildren: shouldReduceMotion ? 0 : 0.1 }
|
||
}
|
||
};
|
||
|
||
const itemVariants = {
|
||
hidden: { opacity: 0, y: shouldReduceMotion ? 0 : 10 },
|
||
visible: {
|
||
opacity: 1,
|
||
y: 0,
|
||
transition: { type: 'spring' as const, stiffness: 200, damping: 20 }
|
||
}
|
||
};
|
||
|
||
return (
|
||
<Box position="relative" fullWidth fullHeight bg="graphite-black" rounded="none" p={{ base: 1.5, sm: 3, md: 5, lg: 8 }} overflow="hidden">
|
||
<Box
|
||
as={motion.div}
|
||
initial={{ opacity: 0, y: shouldReduceMotion ? 0 : -10 }}
|
||
animate={{ opacity: 1, y: 0 }}
|
||
mb={{ base: 1.5, sm: 3, md: 4, lg: 6 }}
|
||
>
|
||
<Box display="flex" alignItems="center" justifyContent="between" mb={{ base: 1.5, sm: 2, md: 3, lg: 4 }}>
|
||
<Box display="flex" alignItems="center" gap={{ base: 1.5, sm: 2, md: 3, lg: 4 }}>
|
||
<Box position="relative" h={{ base: 8, sm: 10, md: 12, lg: 16 }} w={{ base: 8, sm: 10, md: 12, lg: 16 }} rounded="none" border borderWidth="1px" borderColor="primary-accent/50" overflow="hidden" bg="panel-gray" display="flex" alignItems="center" justifyContent="center">
|
||
<Text size={{ base: 'base', sm: 'xl', md: '2xl', lg: '3xl' }}>🏎️</Text>
|
||
<Box position="absolute" top="-1px" left="-1px" w="2" h="2" borderTop borderLeft borderColor="primary-accent" />
|
||
</Box>
|
||
<Box>
|
||
<Text size={{ base: 'sm', sm: 'base', md: 'lg', lg: 'xl' }} weight="bold" color="text-white" mb={{ base: 1, sm: 1.5, md: 2 }} block className="uppercase tracking-widest">Driver Profile</Text>
|
||
<Text
|
||
// eslint-disable-next-line gridpilot-rules/component-classification
|
||
style={{ fontSize: '10px' }}
|
||
color="text-gray-500"
|
||
block
|
||
font="mono"
|
||
className="uppercase tracking-widest"
|
||
>
|
||
Cross-league racing identity
|
||
</Text>
|
||
</Box>
|
||
</Box>
|
||
<Text size={{ base: 'xl', sm: '2xl', md: '3xl', lg: '4xl' }} weight="bold" color="text-gray-800" font="mono">#33</Text>
|
||
</Box>
|
||
|
||
<Box display="flex" flexWrap="wrap" alignItems="center" gap={{ base: 1, sm: 2, md: 3, lg: 4 }} mb={{ base: 1, sm: 1.5, md: 2 }}>
|
||
<Text size="xs" color="text-gray-500" weight="bold" className="uppercase tracking-widest">GP RATING:</Text>
|
||
<AnimatedRating shouldReduceMotion={shouldReduceMotion ?? false} value={2150} />
|
||
<Text size="xs" color="text-gray-500" weight="bold" className="uppercase tracking-widest ml-4">iRATING:</Text>
|
||
<AnimatedRating shouldReduceMotion={shouldReduceMotion ?? false} value={3200} />
|
||
</Box>
|
||
|
||
<Box position="relative" h="1" bg="white/5" rounded="none" overflow="hidden">
|
||
<Box
|
||
as={motion.div}
|
||
position="absolute"
|
||
insetY="0"
|
||
left="0"
|
||
bg="primary-accent"
|
||
initial={{ width: '0%' }}
|
||
animate={{ width: '86%' }}
|
||
transition={{ delay: shouldReduceMotion ? 0 : 0.4, duration: 0.8, ease: 'easeOut' }}
|
||
/>
|
||
</Box>
|
||
</Box>
|
||
|
||
<Box
|
||
as={motion.div}
|
||
variants={containerVariants}
|
||
initial="hidden"
|
||
animate="visible"
|
||
mb={{ base: 1.5, sm: 3, md: 4, lg: 6 }}
|
||
>
|
||
<Text size="xs" weight="bold" color="text-gray-500" mb={3} block className="uppercase tracking-[0.2em]">Career Statistics</Text>
|
||
|
||
<Box display="grid" gridCols={{ base: 2, md: 5 }} gap={{ base: 1.5, sm: 2, md: 3 }}>
|
||
{stats.map((stat, index) => (
|
||
<Box
|
||
key={stat.label}
|
||
as={motion.div}
|
||
variants={itemVariants}
|
||
bg="panel-gray/40"
|
||
border
|
||
borderColor="border-gray/50"
|
||
rounded="none"
|
||
p={{ base: 1.5, sm: 2, md: 3 }}
|
||
textAlign="center"
|
||
>
|
||
<AnimatedCounter
|
||
value={stat.value}
|
||
shouldReduceMotion={shouldReduceMotion ?? false}
|
||
delay={index * 0.1}
|
||
suffix={stat.suffix ?? ''}
|
||
/>
|
||
<Text size="xs" color="text-gray-500" mt={0.5} block className="uppercase tracking-tighter font-bold">{stat.label}</Text>
|
||
</Box>
|
||
))}
|
||
</Box>
|
||
</Box>
|
||
|
||
<Box
|
||
as={motion.div}
|
||
initial={{ opacity: 0, y: 10 }}
|
||
animate={{ opacity: 1, y: 0 }}
|
||
transition={{ delay: 0.6 }}
|
||
>
|
||
<Text size="xs" weight="bold" color="text-gray-500" mb={3} block className="uppercase tracking-[0.2em]">Recent Form</Text>
|
||
<Box h={{ base: 12, sm: 16, md: 20 }} bg="panel-gray/20" border borderColor="border-gray/50" rounded="none" p={{ base: 1.5, sm: 2, md: 3 }} display="flex" alignItems="end" gap={1}>
|
||
{formData.map((value, i) => (
|
||
<Box
|
||
key={i}
|
||
as={motion.div}
|
||
flexGrow={1}
|
||
bg="primary-accent"
|
||
opacity={0.4 + (i * 0.06)}
|
||
rounded="none"
|
||
initial={{ height: 0 }}
|
||
animate={{ height: `${value}%` }}
|
||
transition={{
|
||
delay: shouldReduceMotion ? 0 : 0.8 + i * 0.05,
|
||
duration: 0.4,
|
||
ease: 'easeOut'
|
||
}}
|
||
/>
|
||
))}
|
||
</Box>
|
||
</Box>
|
||
</Box>
|
||
);
|
||
}
|
||
|
||
function AnimatedRating({ shouldReduceMotion, value }: { shouldReduceMotion: boolean; value: number }) {
|
||
const count = useMotionValue(0);
|
||
const spring = useSpring(count, { stiffness: 50, damping: 25 });
|
||
const rounded = useTransform(spring, (v: number) => Math.round(v));
|
||
|
||
useEffect(() => {
|
||
if (shouldReduceMotion) {
|
||
count.set(value);
|
||
} else {
|
||
const timeout = setTimeout(() => count.set(value), 200);
|
||
return () => clearTimeout(timeout);
|
||
}
|
||
}, [shouldReduceMotion, count, value]);
|
||
|
||
return (
|
||
<Box as={motion.span} weight="bold" color="text-primary-accent" font="mono" size={{ base: 'sm', sm: 'base' }}>
|
||
{shouldReduceMotion ? value : <Box as={motion.span}>{rounded}</Box>}
|
||
</Box>
|
||
);
|
||
}
|
||
|
||
function AnimatedCounter({
|
||
value,
|
||
shouldReduceMotion,
|
||
delay,
|
||
suffix = ''
|
||
}: {
|
||
value: number;
|
||
shouldReduceMotion: boolean;
|
||
delay: number;
|
||
suffix?: string;
|
||
}) {
|
||
const count = useMotionValue(0);
|
||
const rounded = useTransform(count, (v: number) => Math.round(v));
|
||
|
||
useEffect(() => {
|
||
if (shouldReduceMotion) {
|
||
count.set(value);
|
||
} else {
|
||
const timeout = setTimeout(() => count.set(value), delay * 1000 + 400);
|
||
return () => clearTimeout(timeout);
|
||
}
|
||
}, [shouldReduceMotion, count, value, delay]);
|
||
|
||
return (
|
||
<Box weight="bold" color="text-white" font="mono" size={{ base: 'sm', sm: 'base', md: 'lg' }}>
|
||
{shouldReduceMotion ? value : <Box as={motion.span}>{rounded}</Box>}{suffix}
|
||
</Box>
|
||
);
|
||
}
|