70 lines
2.5 KiB
TypeScript
70 lines
2.5 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 { questionStore, updateQuestionsList } from "@root/questions";
|
||
|
||
import InfoIcon from "../../../assets/icons/InfoIcon";
|
||
|
||
type SettingsUploadProps = {
|
||
totalIndex: number;
|
||
};
|
||
|
||
export default function SettingsUpload({ totalIndex }: SettingsUploadProps) {
|
||
const quizId = Number(useParams().quizId);
|
||
const { listQuestions } = questionStore();
|
||
|
||
return (
|
||
<Box sx={{ display: "flex", flexDirection: "column", padding: "20px" }}>
|
||
<Typography>Настройки вопроса</Typography>
|
||
<CustomCheckbox
|
||
label={"Автозаполнение адреса"}
|
||
checked={listQuestions[quizId][totalIndex].content.autofill}
|
||
handleChange={({ target }) => {
|
||
const clonContent = listQuestions[quizId][totalIndex].content;
|
||
clonContent.autofill = target.checked;
|
||
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
||
}}
|
||
/>
|
||
<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 });
|
||
}}
|
||
/>
|
||
)}
|
||
</Box>
|
||
);
|
||
}
|