62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
import { Avatar, Menu, IconButton, Tooltip } from "@mui/material";
|
|
import { useState } from "react";
|
|
import ProfileData from "./ProfileData";
|
|
import ProfileOptions from "./ProfileOptions";
|
|
import { useTranslations } from "next-intl";
|
|
import useUser from "@/lib/app/hooks/useUser";
|
|
|
|
function ProfileMenu() {
|
|
const t = useTranslations();
|
|
const [anchorElUser, setAnchorElUser] = useState(null);
|
|
const { user } = useUser();
|
|
|
|
const handleOpenUserMenu = (event) => {
|
|
setAnchorElUser(event.currentTarget);
|
|
};
|
|
const handleCloseUserMenu = () => {
|
|
setAnchorElUser(null);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Tooltip title={t("header.open_profile")} arrow>
|
|
<IconButton onClick={handleOpenUserMenu} sx={{ p: 0 }}>
|
|
<Avatar
|
|
sx={{
|
|
width: 24,
|
|
height: 24,
|
|
backgroundColor: "#fff",
|
|
color: "primary.main",
|
|
}}
|
|
alt="User Image"
|
|
src={user.avatar}
|
|
/>
|
|
</IconButton>
|
|
</Tooltip>
|
|
<Menu
|
|
MenuListProps={{ sx: { py: 0 } }}
|
|
sx={{
|
|
mt: 6,
|
|
}}
|
|
id="menu-appbar"
|
|
anchorEl={anchorElUser}
|
|
anchorOrigin={{
|
|
vertical: "top",
|
|
horizontal: "right",
|
|
}}
|
|
keepMounted
|
|
transformOrigin={{
|
|
vertical: "top",
|
|
horizontal: "right",
|
|
}}
|
|
open={Boolean(anchorElUser)}
|
|
onClose={handleCloseUserMenu}
|
|
>
|
|
<ProfileData />
|
|
<ProfileOptions handleCloseUserMenu={handleCloseUserMenu} />
|
|
</Menu>
|
|
</>
|
|
);
|
|
}
|
|
export default ProfileMenu;
|