blob: 6276fa4b2eac948f10662c9690c6632fcd8ccf2c [file] [log] [blame]
simon26e79f72022-10-05 22:16:08 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
simond47ef9e2022-09-28 22:24:28 -040018import { Box, Button, Menu, MenuItem } from '@mui/material';
simon6b9ddfb2022-10-03 00:04:50 -040019import { MouseEvent, useState } from 'react';
simon5da8ca62022-11-09 15:21:25 -050020import { useNavigate } from 'react-router-dom';
simon07b4eb02022-09-29 17:50:26 -040021
simon416d0792022-11-03 02:46:18 -040022import { useAuthContext } from '../contexts/AuthProvider';
Larbi Gharibe9af9732021-03-31 15:08:01 +010023
24export default function Header() {
simon5da8ca62022-11-09 15:21:25 -050025 const { logout } = useAuthContext();
simon416d0792022-11-03 02:46:18 -040026
simond47ef9e2022-09-28 22:24:28 -040027 const navigate = useNavigate();
simon6b9ddfb2022-10-03 00:04:50 -040028 const [anchorEl, setAnchorEl] = useState<HTMLButtonElement | null>(null);
29 const handleClick = (event: MouseEvent<HTMLButtonElement>) => setAnchorEl(event.currentTarget);
simond47ef9e2022-09-28 22:24:28 -040030 const handleClose = () => setAnchorEl(null);
Larbi Gharibe9af9732021-03-31 15:08:01 +010031
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040032 const goToContacts = () => navigate(`/contacts`);
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040033
Adrien Béraud150b4782021-04-21 19:40:59 -040034 return (
35 <Box>
36 <Button aria-controls="simple-menu" aria-haspopup="true" onClick={handleClick}>
37 Menu
38 </Button>
simond47ef9e2022-09-28 22:24:28 -040039 <Menu id="simple-menu" anchorEl={anchorEl} open={Boolean(anchorEl)} onClose={handleClose}>
idillon531b6f22022-09-16 14:02:00 -040040 <MenuItem onClick={goToContacts}>Contacts</MenuItem>
simon5da8ca62022-11-09 15:21:25 -050041 <MenuItem onClick={() => navigate('/settings')}>Account settings</MenuItem>
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040042 <MenuItem onClick={logout}>Log out</MenuItem>
Adrien Béraud150b4782021-04-21 19:40:59 -040043 </Menu>
simond47ef9e2022-09-28 22:24:28 -040044 </Box>
45 );
46}