2023-09-07 14:14:48 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
|
2023-09-07 14:14:48 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
|
2023-09-07 14:14:48 +00:00
|
|
|
|
type SettingOptionsAndPictProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingOptionsAndPict({
|
|
|
|
|
totalIndex,
|
|
|
|
|
}: SettingOptionsAndPictProps) {
|
|
|
|
|
const quizId = Number(useParams().quizId);
|
|
|
|
|
const { listQuestions } = questionStore();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{ display: "flex", width: "100%", justifyContent: "space-between" }}
|
|
|
|
|
>
|
|
|
|
|
<Box sx={{ padding: "20px", width: "100%" }}>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки ответов
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={'Вариант "свой ответ"'}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.own}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
own: target.checked,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Текст-заглушка на картинке
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Пример текста"}
|
|
|
|
|
text={listQuestions[quizId][totalIndex].content.replText}
|
|
|
|
|
onChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
replText: target.value,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box sx={{ padding: "20px", width: "100%" }}>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Необязательный вопрос"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.required}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
required: target.checked,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
sx={{ width: "100%" }}
|
|
|
|
|
label={"Внутреннее название вопроса"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: "",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>{" "}
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
|
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
|
|
|
|
text={listQuestions[quizId][totalIndex].content.innerName}
|
|
|
|
|
onChange={({ target }) => {
|
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
|
|
|
|
clonContent.innerName = target.value;
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: clonContent,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|