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.
107 lines
3.0 KiB
107 lines
3.0 KiB
import { Box, Button, Flex, Text } from '@chakra-ui/react'; |
|
import { RemoveScroll } from 'react-remove-scroll'; |
|
import { RoadmapType } from '../../lib/roadmap'; |
|
import RoadmapGroup from '../../pages/[roadmap]/[group]'; |
|
import { CheckIcon, CloseIcon, RepeatIcon } from '@chakra-ui/icons'; |
|
|
|
type ContentDrawerProps = { |
|
roadmap: RoadmapType; |
|
groupId: string; |
|
onClose?: () => void; |
|
}; |
|
|
|
export function ContentDrawer(props: ContentDrawerProps) { |
|
const { roadmap, groupId, onClose = () => null } = props; |
|
if (!groupId) { |
|
return null; |
|
} |
|
|
|
const isDone = localStorage.getItem(groupId) === 'done'; |
|
|
|
return ( |
|
<Box zIndex={99999} pos="relative"> |
|
<Box |
|
onClick={onClose} |
|
pos="fixed" |
|
top={0} |
|
left={0} |
|
right={0} |
|
bottom={0} |
|
bg="black" |
|
opacity={0.4} |
|
/> |
|
<RemoveScroll allowPinchZoom> |
|
<Box |
|
p="0px 30px 30px" |
|
position="fixed" |
|
w={['100%', '60%', '40%']} |
|
bg="white" |
|
top={0} |
|
right={0} |
|
bottom={0} |
|
borderLeftWidth={'1px'} |
|
overflowY="scroll" |
|
> |
|
<Flex |
|
mt="20px" |
|
justifyContent="space-between" |
|
alignItems="center" |
|
zIndex={1} |
|
> |
|
{!isDone && ( |
|
<Button |
|
onClick={() => { |
|
localStorage.setItem(groupId, 'done'); |
|
document |
|
.querySelector(`[data-group-id*="-${groupId}"]`) |
|
?.classList?.add('done'); |
|
onClose(); |
|
}} |
|
colorScheme="green" |
|
leftIcon={<CheckIcon />} |
|
size="xs" |
|
iconSpacing={0} |
|
> |
|
<Text as="span" d={['block', 'none', 'none', 'block']} ml="10px"> |
|
Mark as Done |
|
</Text> |
|
</Button> |
|
)} |
|
{isDone && ( |
|
<Button |
|
onClick={() => { |
|
localStorage.removeItem(groupId); |
|
document |
|
.querySelector(`[data-group-id*="-${groupId}"]`) |
|
?.classList?.remove('done'); |
|
onClose(); |
|
}} |
|
colorScheme="purple" |
|
leftIcon={<RepeatIcon />} |
|
size="xs" |
|
iconSpacing={0} |
|
> |
|
<Text as="span" d={['block', 'none', 'none', 'block']} ml="10px"> |
|
Mark as Pending |
|
</Text> |
|
</Button> |
|
)} |
|
<Button |
|
onClick={onClose} |
|
colorScheme="yellow" |
|
ml="5px" |
|
leftIcon={<CloseIcon width="8px" />} |
|
iconSpacing={0} |
|
size="xs" |
|
> |
|
<Text as="span" d={['none', 'none', 'none', 'block']} ml="10px"> |
|
Close |
|
</Text> |
|
</Button> |
|
</Flex> |
|
<RoadmapGroup isOutlet roadmap={roadmap} group={groupId} /> |
|
</Box> |
|
</RemoveScroll> |
|
</Box> |
|
); |
|
}
|
|
|