2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-08-24 09:09:43 +00:00
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-15 22:56:53 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-07-11 10:43:04 +00:00
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-08-24 09:09:43 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-03-15 22:56:53 +00:00
|
|
|
|
|
2023-07-11 10:43:04 +00:00
|
|
|
|
interface Props {
|
2023-08-24 09:09:43 +00:00
|
|
|
|
totalIndex: number;
|
2023-07-11 10:43:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-24 09:09:43 +00:00
|
|
|
|
export default function ResponseSettings({ totalIndex }: Props) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-08-24 09:09:43 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-08-25 11:18:25 +00:00
|
|
|
|
|
2023-08-24 09:09:43 +00:00
|
|
|
|
return (
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
marginRight: "30px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<Box sx={{ padding: "20px", display: "flex", flexDirection: "column" }}>
|
|
|
|
|
<Typography>Настройки ответов</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Длинный текстовый ответ"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.largeCheck}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
2023-09-05 08:25:47 +00:00
|
|
|
|
clonContent.largeCheck = e.target.checked;
|
|
|
|
|
|
|
|
|
|
if (!e.target.checked) {
|
|
|
|
|
clonContent.large = "";
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Можно несколько"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.multi}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
2023-08-24 09:09:43 +00:00
|
|
|
|
clonContent.multi = e.target.checked;
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={'Вариант "свой ответ"'}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.own}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
2023-08-24 09:09:43 +00:00
|
|
|
|
clonContent.own = e.target.checked;
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box sx={{ padding: "20px", display: "flex", flexDirection: "column" }}>
|
|
|
|
|
<Typography>Настройки вопросов</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Необязательный вопрос"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={!listQuestions[quizId][totalIndex].required}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
required: !e.target.checked,
|
|
|
|
|
});
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Внутреннее название вопроса"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
2023-09-05 08:25:47 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
2023-09-05 08:25:47 +00:00
|
|
|
|
clonContent.innerNameCheck = e.target.checked;
|
|
|
|
|
|
|
|
|
|
if (!e.target.checked) {
|
|
|
|
|
clonContent.innerName = "";
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-09-05 08:25:47 +00:00
|
|
|
|
}}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
/>{" "}
|
|
|
|
|
<InfoIcon />
|
2023-03-15 22:56:53 +00:00
|
|
|
|
</Box>
|
2023-09-06 13:20:12 +00:00
|
|
|
|
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
text={listQuestions[quizId][totalIndex].content.innerName}
|
2023-08-25 11:18:25 +00:00
|
|
|
|
onChange={({ target }) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
2023-08-25 11:18:25 +00:00
|
|
|
|
clonContent.innerName = target.value;
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|