mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import { FC, useContext, useRef, useEffect } from 'react';
|
|
import { ThemeContext } from '../../styles/theme';
|
|
import { Props } from './types';
|
|
import { Bar } from './styles';
|
|
import IconButton from '../IconButton';
|
|
import Button from '../Button';
|
|
|
|
const MobileNav: FC<Props> = ({ open, close }) => {
|
|
const { mode, toggle } = useContext(ThemeContext);
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
document.addEventListener('mousedown', (event: MouseEvent) => {
|
|
if (ref.current && ref.current.contains(event.target as Node)) {
|
|
document.addEventListener('mouseup', event => {
|
|
if (ref.current && !ref.current.contains(event.target as Node)) return;
|
|
});
|
|
} else {
|
|
document.addEventListener('mouseup', event => {
|
|
if (ref.current && !ref.current.contains(event.target as Node)) close();
|
|
});
|
|
}
|
|
});
|
|
|
|
return () => {
|
|
document.removeEventListener('mousedown', () => {});
|
|
document.removeEventListener('mouseup', () => {});
|
|
};
|
|
});
|
|
|
|
return (
|
|
<Bar open={open} ref={ref}>
|
|
<div className='close'>
|
|
<IconButton
|
|
alt='Theme toggler'
|
|
icon={mode === 'dark' ? '/icons/dark-close.svg' : '/icons/light-close.svg'}
|
|
onClick={close}
|
|
/>
|
|
</div>
|
|
<div className='mobile-button-wrapper'>
|
|
<Button
|
|
href='#'
|
|
onClick={() => {
|
|
toggle();
|
|
close();
|
|
}}
|
|
>
|
|
{mode === 'dark' ? 'Light Mode' : 'Dark Mode'}
|
|
</Button>
|
|
</div>
|
|
<div className='mobile-button-wrapper'>
|
|
<Button href='/portfolio' onClick={() => close()}>
|
|
Portfolio
|
|
</Button>
|
|
</div>
|
|
<div className='mobile-button-wrapper'>
|
|
<Button href='/blog' onClick={() => close()}>
|
|
Blog
|
|
</Button>
|
|
</div>
|
|
<div className='mobile-button-wrapper'>
|
|
<Button href='/contact' onClick={() => close()}>
|
|
Contact
|
|
</Button>
|
|
</div>
|
|
</Bar>
|
|
);
|
|
};
|
|
|
|
export default MobileNav;
|