front-hub/src/pages/SavedTariffs/index.tsx

51 lines
1.5 KiB
TypeScript
Raw Normal View History

import { IconButton, Box, Typography, useMediaQuery, useTheme } from "@mui/material";
2023-07-25 22:31:04 +00:00
import SectionWrapper from "../../components/SectionWrapper";
import AccordionWrapper from "./AccordionWrapper";
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import { useHistoryTracker } from "@root/utils/hooks/useHistoryTracker";
2023-08-18 16:39:29 +00:00
import { useCart } from "@root/utils/hooks/useCart";
import SaveWrapper from "./SaveWrapper";
2023-07-25 22:31:04 +00:00
export default function Faq() {
const theme = useTheme();
const upMd = useMediaQuery(theme.breakpoints.up("md"));
2023-08-18 16:39:29 +00:00
const cart = useCart();
2023-07-25 22:31:04 +00:00
const handleCustomBackNavigation = useHistoryTracker();
2023-08-18 16:39:29 +00:00
console.log(cart);
2023-07-25 22:31:04 +00:00
return (
<SectionWrapper
maxWidth="lg"
sx={{
mt: upMd ? "25px" : "20px",
mb: upMd ? "70px" : "37px",
}}
>
<Box
sx={{
mt: "20px",
mb: upMd ? "40px" : "20px",
display: "flex",
gap: "10px",
}}
>
{!upMd && (
<IconButton onClick={handleCustomBackNavigation} sx={{ p: 0, height: "28px", width: "28px", color: "black" }}>
2023-07-25 22:31:04 +00:00
<ArrowBackIcon />
</IconButton>
)}
<Typography variant="h4">Сохраненные тарифы</Typography>
</Box>
<Box mt={upMd ? "27px" : "10px"}>
2023-08-18 16:39:29 +00:00
{cart.services.map(({ serviceKey, tariffs }) =>
serviceKey === "custom"
? tariffs.map(({ privileges }) => <SaveWrapper serviceKey={serviceKey} content={privileges} />)
: null
)}
2023-07-25 22:31:04 +00:00
</Box>
</SectionWrapper>
);
}