2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-08-25 09:30:25 +00:00
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-08-25 09:30:25 +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 09:30:25 +00:00
|
|
|
|
type SettingsUploadProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingsUpload({ totalIndex }: SettingsUploadProps) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-08-25 09:30:25 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-08-25 09:30:25 +00:00
|
|
|
|
return (
|
|
|
|
|
<Box sx={{ display: "flex", flexDirection: "column", padding: "20px" }}>
|
|
|
|
|
<Typography>Настройки вопроса</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Автозаполнение адреса"}
|
2023-09-06 13:20:12 +00:00
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.autofill}
|
2023-08-25 09:30:25 +00:00
|
|
|
|
handleChange={({ target }) => {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const clonContent = listQuestions[quizId][totalIndex].content;
|
2023-08-25 09:30:25 +00:00
|
|
|
|
clonContent.autofill = target.checked;
|
2023-09-06 13:20:12 +00:00
|
|
|
|
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
2023-08-25 09:30:25 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<CustomCheckbox label={"Необязательный вопрос"} />
|
|
|
|
|
<CustomCheckbox label={"Внутреннее название вопроса"} /> <InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|