blob: f2a0c378045d8520b140199bc81f64bb376e3cbb [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';
simond47ef9e2022-09-28 22:24:28 -040020import { useNavigate, useParams } from 'react-router-dom';
simon07b4eb02022-09-29 17:50:26 -040021
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040022import { setAccessToken } from '../utils/auth';
Larbi Gharibe9af9732021-03-31 15:08:01 +010023
24export default function Header() {
simond47ef9e2022-09-28 22:24:28 -040025 const navigate = useNavigate();
simon6b9ddfb2022-10-03 00:04:50 -040026 const [anchorEl, setAnchorEl] = useState<HTMLButtonElement | null>(null);
27 const handleClick = (event: MouseEvent<HTMLButtonElement>) => setAnchorEl(event.currentTarget);
simond47ef9e2022-09-28 22:24:28 -040028 const handleClose = () => setAnchorEl(null);
29 const params = useParams();
Larbi Gharibe9af9732021-03-31 15:08:01 +010030
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040031 const goToContacts = () => navigate(`/contacts`);
simond47ef9e2022-09-28 22:24:28 -040032 const goToAccountSettings = () => navigate(`/account/${params.accountId}/settings`);
Larbi Gharibe9af9732021-03-31 15:08:01 +010033
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040034 const logout = () => {
35 setAccessToken('');
36 navigate('/', { replace: true });
37 };
38
Adrien Béraud150b4782021-04-21 19:40:59 -040039 return (
40 <Box>
41 <Button aria-controls="simple-menu" aria-haspopup="true" onClick={handleClick}>
42 Menu
43 </Button>
simond47ef9e2022-09-28 22:24:28 -040044 <Menu id="simple-menu" anchorEl={anchorEl} open={Boolean(anchorEl)} onClose={handleClose}>
idillon531b6f22022-09-16 14:02:00 -040045 <MenuItem onClick={goToContacts}>Contacts</MenuItem>
Adrien Béraud150b4782021-04-21 19:40:59 -040046 {params.accountId && <MenuItem onClick={goToAccountSettings}>Account settings</MenuItem>}
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040047 <MenuItem onClick={logout}>Log out</MenuItem>
Adrien Béraud150b4782021-04-21 19:40:59 -040048 </Menu>
simond47ef9e2022-09-28 22:24:28 -040049 </Box>
50 );
51}