front-hub/src/components/Navbar/DialogMenu.tsx

218 lines
6.4 KiB
TypeScript
Raw Normal View History

2023-07-25 22:31:04 +00:00
import { useState } from "react";
2023-08-02 08:31:58 +00:00
import { Link, useLocation } from "react-router-dom";
2023-05-26 11:19:10 +00:00
import {
2023-07-25 22:31:04 +00:00
Box,
Button,
List,
ListItem,
Typography,
useMediaQuery,
useTheme,
2023-05-26 11:19:10 +00:00
} from "@mui/material";
2023-08-02 08:31:58 +00:00
2023-07-05 03:05:48 +00:00
import { useUserStore } from "@root/stores/user";
2023-07-07 13:53:08 +00:00
import { currencyFormatter } from "@root/utils/currencyFormatter";
2023-05-26 11:19:10 +00:00
2023-08-02 08:31:58 +00:00
import CustomAvatar from "./Avatar";
2023-07-25 22:31:04 +00:00
type MenuItem = {
name: string;
url: string;
subMenu?: MenuItem[];
};
const arrayMenu: MenuItem[] = [
{
name: "Тарифы",
url: "/tariffs",
subMenu: [
{ name: "Тарифы на время", url: "/tariffs/time" },
{ name: "Тарифы на объём", url: "/tariffs/volume" },
{ name: "Кастомный тариф", url: "/tariffconstructor" },
],
},
{ name: "Вопросы и ответы", url: "/faq" },
2023-08-01 00:56:03 +00:00
{ name: "Корзина", url: "/cart" },
{ name: "Поддержка", url: "/support" },
2023-07-28 13:24:21 +00:00
{ name: "История", url: "/history" },
2023-05-26 11:19:10 +00:00
];
interface DialogMenuProps {
2023-07-25 22:31:04 +00:00
handleClose: () => void;
2023-05-26 11:19:10 +00:00
}
2023-08-02 08:31:58 +00:00
export default function DialogMenu({ handleClose }: DialogMenuProps) {
2023-07-25 22:31:04 +00:00
const [activeSubMenuIndex, setActiveSubMenuIndex] = useState<number>(-1);
const theme = useTheme();
const location = useLocation();
const isMobile = useMediaQuery(theme.breakpoints.down(600));
const user = useUserStore((state) => state.user);
const cash = useUserStore((state) => state.userAccount?.wallet.cash) ?? 0;
const closeDialogMenu = () => {
setActiveSubMenuIndex(-1);
handleClose();
};
const handleSubMenu = (index: number) =>
setActiveSubMenuIndex((activeIndex) =>
activeIndex !== index ? index : -1
);
2023-07-05 04:16:49 +00:00
2023-07-25 22:31:04 +00:00
return (
2023-08-02 08:31:58 +00:00
<Box sx={{ height: "100%" }}>
2023-07-25 22:31:04 +00:00
<List
sx={{
maxWidth: "250px",
background: location.pathname === "/" ? "#333647" : "#FFFFFF",
2023-08-02 08:31:58 +00:00
height: "100%",
2023-07-25 22:31:04 +00:00
}}
>
<ListItem
sx={{
pl: 0,
pr: 0,
flexDirection: "column",
alignItems: isMobile ? "start" : "end",
}}
2023-05-26 11:19:10 +00:00
>
2023-07-25 22:31:04 +00:00
{arrayMenu.map(({ name, url, subMenu = [] }, index) => (
<Box sx={{ width: "100%" }} key={name + index}>
<Button
key={index}
component={Link}
to={url}
state={user ? undefined : { backgroundLocation: location }}
disableRipple
variant="text"
onClick={() =>
!subMenu.length ? closeDialogMenu() : handleSubMenu(index)
}
2023-05-26 11:19:10 +00:00
sx={{
2023-07-25 22:31:04 +00:00
padding: "10px 10px 10px 20px",
display: "block",
fontWeight: 500,
color:
location.pathname === url
? "#7E2AEA"
: location.pathname === "/"
? "white"
: "black",
textTransform: "none",
fontSize: "16px",
borderRadius: 0,
"&:hover, &:active": {
color: "#7E2AEA",
background:
index === activeSubMenuIndex
? theme.palette.background.default
: "none",
},
2023-05-26 11:19:10 +00:00
}}
2023-07-25 22:31:04 +00:00
>
<Box>{name}</Box>
</Button>
{subMenu.length ? (
<Box
sx={{
backgroundColor: theme.palette.background.paper,
width: "100%",
}}
2023-05-26 11:19:10 +00:00
>
2023-07-25 22:31:04 +00:00
{index === activeSubMenuIndex &&
subMenu.map(({ name, url }) => (
<Link
key={url}
style={{
paddingLeft: "30px",
display: "block",
textDecoration: "none",
}}
to={url}
onClick={closeDialogMenu}
>
<Typography
variant="body2"
sx={{
padding: "12px",
whiteSpace: "nowrap",
fontWeight: 400,
color:
location.pathname === url
? "#7E2AEA"
: location.pathname === "/"
? "white"
: "black",
}}
2023-07-05 04:16:49 +00:00
>
2023-07-25 22:31:04 +00:00
{name}
</Typography>
</Link>
2023-07-05 04:16:49 +00:00
))}
2023-07-25 22:31:04 +00:00
</Box>
) : (
<></>
)}
</Box>
))}
</ListItem>
2023-08-02 08:31:58 +00:00
{location.pathname === "/" ? (
<Button
component={Link}
to={user ? "/tariffs" : "/signin"}
state={user ? undefined : { backgroundLocation: location }}
variant="outlined"
sx={{
width: "188px",
color: "white",
border: "1px solid white",
ml: "40px",
mt: "35px",
textTransform: "none",
fontWeight: "400",
fontSize: "18px",
lineHeight: "24px",
borderRadius: "8px",
padding: "8px 17px",
}}
>
Личный кабинет
</Button>
2023-07-25 22:31:04 +00:00
) : (
<Box
sx={{
2023-08-02 08:31:58 +00:00
width: "100%",
height: "72px",
background: "#F2F3F7",
display: "flex",
alignItems: "center",
2023-07-25 22:31:04 +00:00
position: "absolute",
2023-08-02 08:31:58 +00:00
bottom: "0",
2023-07-25 22:31:04 +00:00
}}
>
2023-08-02 08:31:58 +00:00
<CustomAvatar />
<Box sx={{ ml: "8px", whiteSpace: "nowrap" }}>
<Typography
sx={{
fontSize: "12px",
lineHeight: "14px",
color: theme.palette.grey3.main,
}}
>
Мой баланс
</Typography>
<Typography
variant="body2"
color={theme.palette.brightPurple.main}
>
{currencyFormatter.format(cash / 100)}
</Typography>
</Box>
2023-07-25 22:31:04 +00:00
</Box>
)}
</List>
2023-08-02 08:31:58 +00:00
</Box>
2023-07-25 22:31:04 +00:00
);
2023-05-26 11:19:10 +00:00
}