forked from VinokurovVE/tests
156 lines
5.7 KiB
TypeScript
156 lines
5.7 KiB
TypeScript
import * as React from 'react';
|
||
import Box from '@mui/material/Box';
|
||
import Avatar from '@mui/material/Avatar';
|
||
import Menu from '@mui/material/Menu';
|
||
import MenuItem from '@mui/material/MenuItem';
|
||
import ListItemIcon from '@mui/material/ListItemIcon';
|
||
import IconButton from '@mui/material/IconButton';
|
||
import Tooltip from '@mui/material/Tooltip';
|
||
import Settings from '@mui/icons-material/Settings';
|
||
import Logout from '@mui/icons-material/Logout';
|
||
import { useNavigate } from 'react-router-dom';
|
||
import { logout } from '../store/auth';
|
||
import { ListItemText, Switch, styled } from '@mui/material';
|
||
import { setDarkMode, usePrefStore } from '../store/preferences';
|
||
|
||
const Android12Switch = styled(Switch)(({ theme }) => ({
|
||
padding: 8,
|
||
'& .MuiSwitch-track': {
|
||
borderRadius: 22 / 2,
|
||
'&::before, &::after': {
|
||
content: '""',
|
||
position: 'absolute',
|
||
top: '50%',
|
||
transform: 'translateY(-50%)',
|
||
width: 16,
|
||
height: 16,
|
||
},
|
||
'&::before': {
|
||
backgroundImage: `url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 24 24"><path fill="${encodeURIComponent(
|
||
theme.palette.getContrastText(theme.palette.primary.main),
|
||
)}" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg>')`,
|
||
left: 12,
|
||
},
|
||
'&::after': {
|
||
backgroundImage: `url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 24 24"><path fill="${encodeURIComponent(
|
||
theme.palette.getContrastText(theme.palette.primary.main),
|
||
)}" d="M19,13H5V11H19V13Z" /></svg>')`,
|
||
right: 12,
|
||
},
|
||
},
|
||
'& .MuiSwitch-thumb': {
|
||
boxShadow: 'none',
|
||
width: 16,
|
||
height: 16,
|
||
margin: 2,
|
||
},
|
||
}));
|
||
|
||
export default function AccountMenu() {
|
||
const navigate = useNavigate()
|
||
|
||
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
||
|
||
const open = Boolean(anchorEl);
|
||
|
||
const handleClick = (event: React.MouseEvent<HTMLElement>) => {
|
||
setAnchorEl(event.currentTarget);
|
||
};
|
||
const handleClose = () => {
|
||
setAnchorEl(null);
|
||
};
|
||
|
||
const prefStore = usePrefStore()
|
||
|
||
return (
|
||
<React.Fragment>
|
||
<Box sx={{ display: 'flex', alignItems: 'center', textAlign: 'center' }}>
|
||
<Tooltip title="Account settings">
|
||
<IconButton
|
||
onClick={handleClick}
|
||
size="small"
|
||
sx={{ ml: 2 }}
|
||
aria-controls={open ? 'account-menu' : undefined}
|
||
aria-haspopup="true"
|
||
aria-expanded={open ? 'true' : undefined}
|
||
>
|
||
<Avatar sx={{ width: 32, height: 32 }}></Avatar>
|
||
</IconButton>
|
||
</Tooltip>
|
||
</Box>
|
||
|
||
<Menu
|
||
anchorEl={anchorEl}
|
||
id="account-menu"
|
||
open={open}
|
||
onClose={handleClose}
|
||
slotProps={{
|
||
paper: {
|
||
elevation: 0,
|
||
sx: {
|
||
overflow: 'visible',
|
||
filter: 'drop-shadow(0px 2px 8px rgba(0,0,0,0.32))',
|
||
mt: 1.5,
|
||
'& .MuiAvatar-root': {
|
||
width: 32,
|
||
height: 32,
|
||
ml: -0.5,
|
||
mr: 1,
|
||
},
|
||
'&::before': {
|
||
content: '""',
|
||
display: 'block',
|
||
position: 'absolute',
|
||
top: 0,
|
||
right: 14,
|
||
width: 10,
|
||
height: 10,
|
||
bgcolor: 'background.paper',
|
||
transform: 'translateY(-50%) rotate(45deg)',
|
||
zIndex: 0,
|
||
},
|
||
},
|
||
}
|
||
}}
|
||
transformOrigin={{ horizontal: 'right', vertical: 'top' }}
|
||
anchorOrigin={{ horizontal: 'right', vertical: 'bottom' }}
|
||
>
|
||
<MenuItem onClick={() => {
|
||
}}>
|
||
<ListItemIcon>
|
||
<Android12Switch
|
||
checked={prefStore.darkMode}
|
||
onChange={(e) => {
|
||
setDarkMode(e.target.checked)
|
||
}} />
|
||
</ListItemIcon>
|
||
<ListItemText>
|
||
Тема: {prefStore.darkMode ? "темная" : "светлая"}
|
||
</ListItemText>
|
||
</MenuItem>
|
||
|
||
|
||
<MenuItem onClick={() => {
|
||
navigate('/settings')
|
||
}}>
|
||
<ListItemIcon>
|
||
<Settings fontSize="small" />
|
||
</ListItemIcon>
|
||
Настройки
|
||
</MenuItem>
|
||
|
||
<MenuItem
|
||
onClick={() => {
|
||
logout()
|
||
navigate("/auth/signin")
|
||
}}
|
||
>
|
||
<ListItemIcon>
|
||
<Logout fontSize="small" />
|
||
</ListItemIcon>
|
||
Выход
|
||
</MenuItem>
|
||
</Menu>
|
||
</React.Fragment>
|
||
);
|
||
} |