frontPanel/src/pages/createQuize/MyQuizzesFull.tsx

88 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-10-18 12:46:59 +00:00
import {
2023-11-13 18:04:51 +00:00
Box,
Button,
SxProps,
Theme,
Typography,
useMediaQuery,
useTheme,
2023-10-18 12:46:59 +00:00
} from "@mui/material";
2023-12-13 17:16:03 +00:00
import { createQuiz } from "@root/quizes/actions";
import { useQuizes } from "@root/quizes/hooks";
import SectionWrapper from "@ui_kit/SectionWrapper";
import React from "react";
2023-10-18 12:46:59 +00:00
import { useNavigate } from "react-router-dom";
2023-11-13 18:04:51 +00:00
import ComplexNavText from "./ComplexNavText";
import FirstQuiz from "./FirstQuiz";
import QuizCard from "./QuizCard";
interface Props {
2023-11-13 18:04:51 +00:00
outerContainerSx?: SxProps<Theme>;
children?: React.ReactNode;
}
2022-12-09 11:48:15 +00:00
2023-10-18 12:46:59 +00:00
export default function MyQuizzesFull({
2023-11-13 18:04:51 +00:00
outerContainerSx: sx,
children,
2023-10-18 12:46:59 +00:00
}: Props) {
2023-12-13 17:16:03 +00:00
const { quizes } = useQuizes();
2023-11-13 18:04:51 +00:00
const navigate = useNavigate();
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down(500));
2023-11-13 18:04:51 +00:00
return (
<>
2023-12-13 17:16:03 +00:00
{quizes.length === 0 ? (
2023-11-13 18:04:51 +00:00
<FirstQuiz />
) : (
<SectionWrapper maxWidth="lg">
<ComplexNavText text1="Кабинет квизов" />
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
mt: "20px",
mb: "30px",
}}
>
<Typography variant="h4">Мои квизы</Typography>
<Button
variant="contained"
sx={{
padding: isMobile ? "10px" : "10px 47px",
minWidth: "44px",
}}
onClick={() => createQuiz(navigate)}
2023-11-27 23:07:24 +00:00
data-cy="create-quiz"
2023-11-13 18:04:51 +00:00
>
{isMobile ? "+" : "Создать +"}
</Button>
</Box>
<Box
sx={{
py: "10px",
display: "flex",
flexWrap: "wrap",
gap: "40px",
mb: "60px",
}}
>
2023-12-13 17:16:03 +00:00
{quizes.map(quiz => (
2023-11-13 18:04:51 +00:00
<QuizCard
key={quiz.id}
quiz={quiz}
openCount={0}
applicationCount={0}
conversionPercent={0}
/>
))}
</Box>
{children}
</SectionWrapper>
)}
</>
);
}