|
| 1 | +import React from 'react'; |
| 2 | +import { create } from 'random-seed'; |
| 3 | +import shuffle from 'knuth-shuffle-seeded'; |
| 4 | +import Box, { Grid } from '@codeday/topo/Atom/Box'; |
| 5 | +import Text, { Heading } from '@codeday/topo/Atom/Text'; |
| 6 | +import Button from '@codeday/topo/Atom/Button'; |
| 7 | +import Play from '@codeday/topocons/Icon/MediaPlay'; |
| 8 | +import Image from '@codeday/topo/Atom/Image'; |
| 9 | +import Slides from '@codeday/topo/Molecule/Slides'; |
| 10 | +import FlexScatter from '../FlexScatter'; |
| 11 | +import VideoLink from '../VideoLink'; |
| 12 | +import { useQuery } from '../../query'; |
| 13 | +import splitGroups from '../../utils/splitGroups'; |
| 14 | + |
| 15 | +function photoSlides(rand, photoGroups) { |
| 16 | + return photoGroups.map((pg, i) => ( |
| 17 | + <Slides key={i} w="200px" h="150px" duration={rand.floatBetween(8, 15)}> |
| 18 | + {pg.map((p) => ( |
| 19 | + <Box key={p.photo.jpg} position="relative"> |
| 20 | + <Image src={p.photo.jpg} /> |
| 21 | + <Text |
| 22 | + position="absolute" |
| 23 | + bottom={0} |
| 24 | + left={0} |
| 25 | + right={0} |
| 26 | + mb={0} |
| 27 | + bg={`blackAlpha.500`} |
| 28 | + color="white" |
| 29 | + p={1} |
| 30 | + fontSize="sm" |
| 31 | + > |
| 32 | + {[p.event?.program?.name, p.region?.name, p.event?.startsAt?.substring(0,4)].join(' ')} |
| 33 | + </Text> |
| 34 | + </Box> |
| 35 | + ))} |
| 36 | + </Slides> |
| 37 | + )); |
| 38 | +} |
| 39 | + |
| 40 | +export default function Hero({ seed, ...props }) { |
| 41 | + const { cms: { indexHeroPhotos, mission, explainer } } = useQuery(); |
| 42 | + |
| 43 | + const rand = create(seed); |
| 44 | + const photos = shuffle(indexHeroPhotos?.items || [], seed); |
| 45 | + |
| 46 | + return ( |
| 47 | + <Box {...props}> |
| 48 | + <Grid |
| 49 | + templateColumns={{ base: '1fr', md: '8fr 5fr', lg: '8fr 10fr', xl: '4fr 3fr' }} |
| 50 | + gap={4} |
| 51 | + pl={4} |
| 52 | + overflow="hidden" |
| 53 | + > |
| 54 | + <Box m={{ base: 0, lg: 16 }} mt={{ base: 0, lg: 0 }} textAlign={{ base: 'center', md: 'left'}}> |
| 55 | + <Heading as="h2" fontSize="6xl" fontWeight="bold" lineHeight="1.1" mt={8}> |
| 56 | + There's a place in tech for everyone. |
| 57 | + </Heading> |
| 58 | + <Text fontSize="xl" mt={8} mb={8}>{mission?.items[0]?.value}</Text> |
| 59 | + {explainer && ( |
| 60 | + <VideoLink url={explainer.url} autoPlay> |
| 61 | + <Button variantColor="red">Learn More <Play /></Button> |
| 62 | + </VideoLink> |
| 63 | + )} |
| 64 | + </Box> |
| 65 | + |
| 66 | + |
| 67 | + {/* Small display: 4x images */} |
| 68 | + <Box d={{ base: 'none', md: 'block', lg: 'none'}} marginRight='-100px'> |
| 69 | + <FlexScatter |
| 70 | + seed={seed} |
| 71 | + gapMin={5} |
| 72 | + gapMax={15} |
| 73 | + yOffsetMin={-25} |
| 74 | + yOffsetMax={75} |
| 75 | + > |
| 76 | + {photoSlides(rand, splitGroups(photos, 4))} |
| 77 | + </FlexScatter> |
| 78 | + </Box> |
| 79 | + |
| 80 | + {/* Large display: 6x images */} |
| 81 | + <Box d={{ base: 'none', lg: 'block'}} marginRight={{ base: '-125px', xl: '0'}}> |
| 82 | + <FlexScatter |
| 83 | + seed={seed} |
| 84 | + gapMin={25} |
| 85 | + gapMax={50} |
| 86 | + yOffsetMin={-25} |
| 87 | + yOffsetMax={75} |
| 88 | + > |
| 89 | + {photoSlides(rand, splitGroups(photos, 6))} |
| 90 | + </FlexScatter> |
| 91 | + </Box> |
| 92 | + </Grid> |
| 93 | + </Box> |
| 94 | + ); |
| 95 | +} |
0 commit comments