2023-12-15 22:46:57 +00:00
|
|
|
|
import { Box, Button, SxProps, Theme, Typography, useMediaQuery, useTheme } from "@mui/material";
|
2023-12-13 17:16:03 +00:00
|
|
|
|
import { createQuiz } from "@root/quizes/actions";
|
|
|
|
|
import { useQuizes } from "@root/quizes/hooks";
|
2023-05-10 11:40:39 +00:00
|
|
|
|
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-12-17 23:29:31 +00:00
|
|
|
|
import { resetEditConfig } from "@root/quizes/actions";
|
2023-11-13 18:04:51 +00:00
|
|
|
|
import FirstQuiz from "./FirstQuiz";
|
|
|
|
|
import QuizCard from "./QuizCard";
|
|
|
|
|
|
2023-05-10 11:40:39 +00:00
|
|
|
|
interface Props {
|
2023-12-15 22:46:57 +00:00
|
|
|
|
outerContainerSx?: SxProps<Theme>;
|
|
|
|
|
children?: React.ReactNode;
|
2023-05-10 11:40:39 +00:00
|
|
|
|
}
|
2022-12-09 11:48:15 +00:00
|
|
|
|
|
2023-12-15 22:46:57 +00:00
|
|
|
|
export default function MyQuizzesFull({ outerContainerSx: sx, children }: Props) {
|
|
|
|
|
const { quizes } = useQuizes();
|
|
|
|
|
const navigate = useNavigate();
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(500));
|
2023-05-20 20:36:33 +00:00
|
|
|
|
|
2023-12-15 22:46:57 +00:00
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{quizes.length === 0 ? (
|
|
|
|
|
<FirstQuiz />
|
|
|
|
|
) : (
|
|
|
|
|
<SectionWrapper maxWidth="lg">
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
mt: "20px",
|
|
|
|
|
mb: "30px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-12-30 20:31:49 +00:00
|
|
|
|
<Typography variant="h4">Мои quiz</Typography>
|
2023-12-15 22:46:57 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant="contained"
|
|
|
|
|
sx={{
|
|
|
|
|
padding: isMobile ? "10px" : "10px 47px",
|
|
|
|
|
minWidth: "44px",
|
|
|
|
|
}}
|
2023-12-17 23:29:31 +00:00
|
|
|
|
onClick={() => {
|
|
|
|
|
resetEditConfig();
|
|
|
|
|
createQuiz(navigate)
|
|
|
|
|
}}
|
2023-12-15 22:46:57 +00:00
|
|
|
|
data-cy="create-quiz"
|
|
|
|
|
>
|
|
|
|
|
{isMobile ? "+" : "Создать +"}
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
py: "10px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexWrap: "wrap",
|
|
|
|
|
gap: "40px",
|
|
|
|
|
mb: "60px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{quizes.map((quiz) => (
|
|
|
|
|
<QuizCard key={quiz.id} quiz={quiz} openCount={0} applicationCount={0} conversionPercent={0} />
|
|
|
|
|
))}
|
|
|
|
|
</Box>
|
|
|
|
|
{children}
|
|
|
|
|
</SectionWrapper>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
|
|
|
|
);
|
2023-05-20 20:36:33 +00:00
|
|
|
|
}
|