computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
import { Badge, Box, Heading, Link, Text } from '@chakra-ui/react'; |
|
|
|
type VideoGridItemProps = { |
|
href: string; |
|
title: string; |
|
subtitle: string; |
|
date: string; |
|
target?: string; |
|
isNew?: boolean; |
|
isPro?: boolean; |
|
colorIndex?: number; |
|
}; |
|
|
|
const bgColorList = [ |
|
'gray.900', |
|
'purple.900', |
|
'blue.900', |
|
'red.900', |
|
'green.900', |
|
'teal.900', |
|
'yellow.900', |
|
'cyan.900', |
|
'pink.900', |
|
|
|
'gray.800', |
|
'purple.800', |
|
'blue.800', |
|
'red.800', |
|
'green.800', |
|
'teal.800', |
|
'yellow.800', |
|
'cyan.800', |
|
'pink.800', |
|
|
|
'gray.700', |
|
'purple.700', |
|
'blue.700', |
|
'red.700', |
|
'green.700', |
|
'teal.700', |
|
'yellow.700', |
|
'cyan.700', |
|
'pink.700', |
|
|
|
'gray.600', |
|
'purple.600', |
|
'blue.600', |
|
'red.600', |
|
'green.600', |
|
'teal.600', |
|
'yellow.600', |
|
'cyan.600', |
|
'pink.600' |
|
]; |
|
|
|
export function VideoGridItem(props: VideoGridItemProps) { |
|
const { title, subtitle, date, isNew = false, isPro = false, colorIndex = 0, href, target } = props; |
|
|
|
return ( |
|
<Box _hover={{ textDecoration: 'none', transform: 'scale(1.02)' }} as={Link} href={ href } target={target || '_self'} shadow='xl' p='20px' |
|
rounded='10px' bg={bgColorList[colorIndex] ?? bgColorList[0]} flex={1}> |
|
<Text mb='7px' fontSize='12px' color='gray.400'> |
|
{isNew && <Badge colorScheme={'yellow'} mr='10px'>New</Badge>} |
|
{isPro && <Badge colorScheme={'blue'} mr='10px'>PRO</Badge>} |
|
{date} |
|
</Text> |
|
<Heading color='white' mb={'6px'} fontSize='20px' lineHeight={'28px'}>{title}</Heading> |
|
<Text color='gray.300' fontSize='14px'>{subtitle}</Text> |
|
</Box> |
|
); |
|
}
|
|
|