frontPanel/src/pages/Questions/QuestionsPage.tsx

112 lines
3.7 KiB
TypeScript
Raw Normal View History

2023-09-20 09:07:33 +00:00
import {
2023-10-03 16:05:20 +00:00
Box,
Button,
IconButton,
Typography,
useMediaQuery,
useTheme,
2023-09-20 09:07:33 +00:00
} from "@mui/material";
import AddPlus from "../../assets/icons/questionsPage/addPlus";
import ArrowLeft from "../../assets/icons/questionsPage/arrowLeft";
2023-08-03 07:45:06 +00:00
import { quizStore } from "@root/quizes";
import { useParams } from "react-router-dom";
2023-09-20 09:07:33 +00:00
import {
2023-10-03 16:05:20 +00:00
questionStore,
createQuestion,
updateQuestionsList,
2023-09-20 09:07:33 +00:00
} from "@root/questions";
2023-08-11 07:25:28 +00:00
import { DraggableList } from "./DraggableList";
2023-10-03 16:05:20 +00:00
import QuizPreview from "@ui_kit/QuizPreview/QuizPreview";
export default function QuestionsPage() {
2023-10-03 16:05:20 +00:00
const { listQuizes, updateQuizesList } = quizStore();
const quizId = Number(useParams().quizId);
const { listQuestions } = questionStore();
const handleNext = () => {
updateQuizesList(quizId, { step: listQuizes[quizId].step + 1 });
};
2023-10-03 16:05:20 +00:00
const handleBack = () => {
let result = listQuizes[quizId].step - 1;
updateQuizesList(quizId, { step: result ? result : 1 });
};
2023-10-03 16:05:20 +00:00
const collapseEverything = () => {
listQuestions[quizId].forEach((item, index) => {
updateQuestionsList(quizId, index, { ...item, expanded: false });
});
};
2023-09-05 08:25:47 +00:00
2023-10-03 16:05:20 +00:00
const theme = useTheme();
const isTablet = useMediaQuery(theme.breakpoints.up(1000));
2023-09-15 12:37:12 +00:00
2023-10-03 16:05:20 +00:00
return (
<>
{/* <Stepper activeStep={activeStep} desc={"Задайте вопросы"} /> */}
<Box
sx={{
maxWidth: "796px",
width: "100%",
display: "flex",
justifyContent: "space-between",
margin: "60px 0 40px 0",
}}
>
<Typography variant={"h5"}>Заголовок квиза</Typography>
<Button
sx={{
fontSize: "16px",
lineHeight: "19px",
padding: 0,
textDecoration: "underline",
color: theme.palette.brightPurple.main,
textDecorationColor: theme.palette.brightPurple.main,
}}
onClick={collapseEverything}
>
Свернуть всё
</Button>
</Box>
<DraggableList />
<Box
sx={{
display: "flex",
justifyContent: "space-between",
maxWidth: "796px",
}}
>
<IconButton
onClick={() => {
createQuestion(quizId);
console.log(listQuestions);
}}
>
<AddPlus />
</IconButton>
<Box sx={{ display: "flex", gap: "8px" }}>
<Button
variant="outlined"
sx={{ padding: "10px 20px", borderRadius: "8px", height: "44px" }}
>
<ArrowLeft />
</Button>
<Button
variant="contained"
sx={{
height: "44px",
padding: "10px 20px",
borderRadius: "8px",
background: theme.palette.brightPurple.main,
fontSize: "18px",
}}
onClick={handleNext}
>
Следующий шаг
</Button>
</Box>
</Box>
<QuizPreview />
</>
);
2023-04-15 09:10:59 +00:00
}