2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-08-25 10:27:43 +00:00
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-08-25 10:27:43 +00:00
|
|
|
|
|
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
|
|
|
|
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-08-25 10:27:43 +00:00
|
|
|
|
type SettingDropDownProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingDropDown({ totalIndex }: SettingDropDownProps) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-08-25 10:27:43 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-08-25 10:27:43 +00:00
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{ display: "flex", width: "100%", justifyContent: "space-between" }}
|
|
|
|
|
>
|
|
|
|
|
<Box sx={{ padding: "20px", width: "100%" }}>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки ответов
|
|
|
|
|
</Typography>
|
2023-09-12 11:15:01 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Можно несколько"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.multi}
|
|
|
|
|
handleChange={({ target }) =>
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
multi: target.checked,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
/>
|
2023-08-25 10:27:43 +00:00
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Текст в выпадающем списке
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Выберите вариант"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
text={listQuestions[quizId][totalIndex].content.default}
|
2023-08-25 10:27:43 +00:00
|
|
|
|
onChange={({ target }) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const clonContent = listQuestions[quizId][totalIndex].content;
|
2023-08-25 10:27:43 +00:00
|
|
|
|
clonContent.default = target.value;
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-25 10:27:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<Box sx={{ padding: "20px", width: "100%" }}>
|
2023-08-25 10:27:43 +00:00
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Необязательный вопрос"}
|
|
|
|
|
checked={!listQuestions[quizId][totalIndex].required}
|
|
|
|
|
handleChange={(e) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
required: !e.target.checked,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Внутреннее название вопроса"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
|
|
|
|
handleChange={(e) => {
|
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
|
|
|
|
clonContent.innerNameCheck = e.target.checked;
|
|
|
|
|
|
|
|
|
|
if (!e.target.checked) {
|
|
|
|
|
clonContent.innerName = "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: clonContent,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>{" "}
|
|
|
|
|
<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,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-08-25 10:27:43 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|