107 lines
3.8 KiB
TypeScript
107 lines
3.8 KiB
TypeScript
import { useParams } from "react-router-dom";
|
||
import { Box, Typography } from "@mui/material";
|
||
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
||
import CustomTextField from "@ui_kit/CustomTextField";
|
||
import InfoIcon from "../../../assets/icons/InfoIcon";
|
||
|
||
import { questionStore, updateQuestionsList } from "@root/questions";
|
||
|
||
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>
|
||
</>
|
||
);
|
||
}
|