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

121 lines
3.8 KiB
TypeScript
Raw Normal View History

2023-03-27 12:45:44 +00:00
import { useLocation } from "react-router-dom";
import { useEffect } from "react";
2022-11-21 18:19:51 +00:00
import { Box, Button, Container, IconButton, Typography, useTheme } from "@mui/material";
2023-03-22 11:51:16 +00:00
2022-11-21 18:19:51 +00:00
import SectionWrapper from "../SectionWrapper";
2023-03-24 15:30:58 +00:00
import { basketStore } from "@stores/BasketStore";
2023-03-21 18:52:19 +00:00
import { authStore } from "@stores/makeRequest";
2022-11-21 18:19:51 +00:00
2023-03-22 11:51:16 +00:00
import LogoutIcon from "../icons/LogoutIcon";
import WalletIcon from "../icons/WalletIcon";
import CustomAvatar from "./Avatar";
2023-03-27 12:45:44 +00:00
import Drawers from "../Drawers";
2023-03-22 11:51:16 +00:00
import PenaLogo from "../PenaLogo";
2023-03-27 12:45:44 +00:00
import Menu from "../Menu";
2022-11-21 18:19:51 +00:00
interface Props {
2023-05-12 14:27:35 +00:00
isLoggedIn: boolean;
2022-11-21 18:19:51 +00:00
}
export default function NavbarFull({ isLoggedIn }: Props) {
2023-05-12 14:27:35 +00:00
const theme = useTheme();
const { clearToken } = authStore();
const location = useLocation();
2023-03-22 11:51:16 +00:00
2023-05-12 14:27:35 +00:00
const { open } = basketStore();
2023-03-22 11:51:16 +00:00
2023-05-12 14:27:35 +00:00
useEffect(() => {
if (location.pathname === "/basket") {
open(false)();
}
}, [location.pathname, open]);
2023-03-24 18:30:56 +00:00
2023-05-12 14:27:35 +00:00
async function handleLogoutClick() {
clearToken();
}
2022-11-21 18:19:51 +00:00
2023-05-12 14:27:35 +00:00
return isLoggedIn ? (
<Container
component="nav"
disableGutters
maxWidth={false}
2022-11-21 18:19:51 +00:00
sx={{
2023-05-12 14:27:35 +00:00
px: "16px",
display: "flex",
height: "80px",
alignItems: "center",
gap: "60px",
bgcolor: "white",
borderBottom: "1px solid #E3E3E3",
2022-11-21 18:19:51 +00:00
}}
>
2023-05-12 14:27:35 +00:00
<PenaLogo width={124} />
<Menu />
<Box
sx={{
display: "flex",
ml: "auto",
}}
>
<Drawers />
<IconButton sx={{ p: 0, ml: "8px" }}>
<WalletIcon color={theme.palette.grey2.main} bgcolor="#F2F3F7" />
</IconButton>
<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}>
00.00 руб.
</Typography>
</Box>
<CustomAvatar sx={{ ml: "27px", backgroundColor: theme.palette.orange.main, height: "36px", width: "36px" }} />
<IconButton
onClick={handleLogoutClick}
sx={{ ml: "20px", bgcolor: "#F2F3F7", borderRadius: "6px", height: "36px", width: "36px" }}
>
<LogoutIcon />
</IconButton>
</Box>
</Container>
) : (
<SectionWrapper
component="nav"
maxWidth="lg"
outerContainerSx={{
backgroundColor: theme.palette.lightPurple.main,
// borderBottom: "1px solid #E3E3E3",
}}
sx={{
px: "20px",
display: "flex",
justifyContent: "space-between",
height: "80px",
alignItems: "center",
gap: "50px",
}}
>
<PenaLogo width={150} />
<Menu />
<Button
variant="outlined"
sx={{
px: "18px",
py: "10px",
borderColor: "white",
borderRadius: "8px",
whiteSpace: "nowrap",
minWidth: "180px",
}}
>
Личный кабинет
</Button>
</SectionWrapper>
);
}