2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-10-03 14:03:57 +00:00
|
|
|
|
import {
|
|
|
|
|
Box,
|
|
|
|
|
Typography,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
|
|
|
|
Tooltip,
|
|
|
|
|
} from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-09-08 13:42:52 +00:00
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-09-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
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-10-03 14:03:57 +00:00
|
|
|
|
import type { QuizQuestionFile } from "../../../model/questionTypes/file";
|
|
|
|
|
|
2023-08-25 09:30:25 +00:00
|
|
|
|
type SettingsUploadProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingsUpload({ totalIndex }: SettingsUploadProps) {
|
2023-09-21 07:00:08 +00:00
|
|
|
|
const theme = useTheme();
|
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-10-03 14:03:57 +00:00
|
|
|
|
const question = listQuestions[quizId][totalIndex] as QuizQuestionFile;
|
2023-09-20 09:07:33 +00:00
|
|
|
|
const debounced = useDebouncedCallback((value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionFile>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, innerName: value },
|
|
|
|
|
});
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}, 1000);
|
2023-09-21 07:00:08 +00:00
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-08-25 09:30:25 +00:00
|
|
|
|
return (
|
2023-10-03 14:03:57 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-06 19:28:30 +00:00
|
|
|
|
boxSizing: "border-box",
|
2023-10-03 20:11:58 +00:00
|
|
|
|
pt: isMobile ? "30px" : "20px",
|
2023-10-03 14:03:57 +00:00
|
|
|
|
pb: "20px",
|
|
|
|
|
pl: "20px",
|
2023-10-03 20:11:58 +00:00
|
|
|
|
pr: isMobile ? "20px" : "0px",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "14px",
|
2023-10-03 20:11:58 +00:00
|
|
|
|
width: isMobile ? "auto" : "100%",
|
2023-10-03 14:03:57 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-08-25 09:30:25 +00:00
|
|
|
|
<Typography>Настройки вопроса</Typography>
|
|
|
|
|
<CustomCheckbox
|
2023-10-06 19:28:30 +00:00
|
|
|
|
sx={{
|
|
|
|
|
display: isMobile ? "flex" : "block",
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
}}
|
2023-08-25 09:30:25 +00:00
|
|
|
|
label={"Автозаполнение адреса"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
checked={question.content.autofill}
|
2023-08-25 09:30:25 +00:00
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionFile>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, autofill: target.checked },
|
|
|
|
|
});
|
2023-08-25 09:30:25 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
2023-10-06 19:28:30 +00:00
|
|
|
|
sx={{
|
|
|
|
|
display: isMobile ? "flex" : "block",
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
}}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
label={"Необязательный вопрос"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
checked={!question.required}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionFile>(quizId, totalIndex, {
|
2023-09-08 13:42:52 +00:00
|
|
|
|
required: !e.target.checked,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-10-03 14:03:57 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
width: isMobile ? "90%" : "auto",
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
2023-10-06 19:28:30 +00:00
|
|
|
|
sx={{
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
height: isMobile ? "100%" : "26px",
|
|
|
|
|
alignItems: "flex-start",
|
|
|
|
|
}}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
label={"Внутреннее название вопроса"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
checked={question.content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionFile>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: {
|
|
|
|
|
...question.content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: target.checked ? question.content.innerName : "",
|
|
|
|
|
},
|
|
|
|
|
});
|
2023-09-08 13:42:52 +00:00
|
|
|
|
}}
|
2023-09-18 12:34:41 +00:00
|
|
|
|
/>
|
2023-10-06 08:34:44 +00:00
|
|
|
|
<Tooltip
|
|
|
|
|
title="Будет отображаться как заголовок вопроса в приходящих заявках."
|
|
|
|
|
placement="top"
|
|
|
|
|
>
|
2023-09-18 12:34:41 +00:00
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
</Box>
|
2023-10-03 14:03:57 +00:00
|
|
|
|
{question.content.innerNameCheck && (
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
text={question.content.innerName}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounced(target.value)}
|
2023-10-06 19:28:30 +00:00
|
|
|
|
sx={{ paddingRight: "20px" }}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-08-25 09:30:25 +00:00
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|