mirror of
https://github.com/SomboChea/ui
synced 2024-11-17 11:44:27 +07:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
|
import React, { MouseEvent } from 'react';
|
||
|
import IconButton from '@material-ui/core/IconButton';
|
||
|
import MenuItem from '@material-ui/core/MenuItem';
|
||
|
import Menu from '@material-ui/core/Menu';
|
||
|
import AccountCircle from '@material-ui/icons/AccountCircle';
|
||
|
|
||
|
import HeaderGreetings from './HeaderGreetings';
|
||
|
|
||
|
interface Props {
|
||
|
username: string;
|
||
|
isMenuOpen: boolean;
|
||
|
anchorEl?: Element | ((element: Element) => Element) | null | undefined;
|
||
|
onLogout: () => void;
|
||
|
onLoggedInMenu: (event: MouseEvent<HTMLButtonElement>) => void;
|
||
|
onLoggedInMenuClose: () => void;
|
||
|
}
|
||
|
|
||
|
/* eslint-disable react/jsx-max-depth */
|
||
|
const HeaderMenu: React.FC<Props> = ({ onLogout, username, isMenuOpen = false, anchorEl, onLoggedInMenu, onLoggedInMenuClose }) => (
|
||
|
<>
|
||
|
<IconButton color="inherit" data-testid="header--menu-acountcircle" id="header--button-account" onClick={onLoggedInMenu}>
|
||
|
<AccountCircle />
|
||
|
</IconButton>
|
||
|
<Menu
|
||
|
anchorEl={anchorEl}
|
||
|
anchorOrigin={{
|
||
|
vertical: 'top',
|
||
|
horizontal: 'right',
|
||
|
}}
|
||
|
id="header--button-account"
|
||
|
onClose={onLoggedInMenuClose}
|
||
|
open={isMenuOpen}
|
||
|
transformOrigin={{
|
||
|
vertical: 'top',
|
||
|
horizontal: 'right',
|
||
|
}}>
|
||
|
<MenuItem disabled={true}>
|
||
|
<HeaderGreetings username={username} />
|
||
|
</MenuItem>
|
||
|
<MenuItem id="header--button-logout" onClick={onLogout}>
|
||
|
{'Logout'}
|
||
|
</MenuItem>
|
||
|
</Menu>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default HeaderMenu;
|