File size: 1,840 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import React from 'react';
import {
   Drawer,
   DrawerBody,
   DrawerCloseButton,
   DrawerContent,
   DrawerHeader,
   DrawerOverlay,
   useColorModeValue,
   useDisclosure,
} from '@chakra-ui/react';
import { SecondaryBtn } from '../../utils/Buttons';
import { AiOutlineMenu } from 'react-icons/ai';
import Menu from './Menu';

const SideMenu = () => {
   const { isOpen, onOpen, onClose } = useDisclosure();

   return (
      <>
         <SecondaryBtn
            name='menu_icon'
            display={{ base: 'block', md: 'none' }}
            onClick={isOpen ? onClose : onOpen}
         >
            <AiOutlineMenu size={25} />
         </SecondaryBtn>

         <Drawer isOpen={isOpen} placement='left' onClose={onClose}>
            <DrawerOverlay />
            <DrawerContent
               maxW='290px'
               bg={useColorModeValue('light.bg', 'dark.bg')}
            >
               <DrawerHeader
                  padding='.9rem .5rem .5rem'
                  display='flex'
                  justifyContent='space-between'
               >
                  Dev Community
                  <DrawerCloseButton
                     pos='static'
                     _hover={{
                        bg: useColorModeValue(
                           'light.secondary',
                           'dark.secondary'
                        ),
                        color: useColorModeValue(
                           'light.headingHover',
                           'dark.headingHover'
                        ),
                     }}
                  />
               </DrawerHeader>

               <DrawerBody p='.5rem'>
                  <Menu onClose={onClose} heroPadding='.5rem' />
               </DrawerBody>
            </DrawerContent>
         </Drawer>
      </>
   );
};

export default SideMenu;