93 lines
3.4 KiB
TypeScript
93 lines
3.4 KiB
TypeScript
import { useParams } from "react-router-dom";
|
||
import { Box, Typography, useMediaQuery, useTheme, Tooltip } from "@mui/material";
|
||
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
||
import CustomTextField from "@ui_kit/CustomTextField";
|
||
import { useDebouncedCallback } from "use-debounce";
|
||
|
||
import { questionStore, updateQuestionsList } from "@root/questions";
|
||
|
||
import InfoIcon from "../../../assets/icons/InfoIcon";
|
||
|
||
type SettingsUploadProps = {
|
||
totalIndex: number;
|
||
};
|
||
|
||
export default function SettingsUpload({ totalIndex }: SettingsUploadProps) {
|
||
const theme = useTheme();
|
||
const quizId = Number(useParams().quizId);
|
||
const { listQuestions } = questionStore();
|
||
const debounced = useDebouncedCallback((value) => {
|
||
let clonContent = listQuestions[quizId][totalIndex].content;
|
||
clonContent.innerName = value;
|
||
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
||
}, 1000);
|
||
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
||
|
||
return (
|
||
<Box
|
||
sx={{
|
||
pt: isMobile ? "25px" : "20px",
|
||
pb: isMobile ? "25px" : "20px",
|
||
pl: "20px",
|
||
display: "flex",
|
||
flexDirection: "column",
|
||
gap: "14px",
|
||
width: "100%",
|
||
}}
|
||
>
|
||
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
|
||
Настройки вопроса
|
||
</Typography>
|
||
<CustomCheckbox
|
||
sx={{ display: "block", mr: isMobile ? "0px" : "16px" }}
|
||
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
|
||
sx={{ display: "block", mr: isMobile ? "0px" : "16px" }}
|
||
label={"Необязательный вопрос"}
|
||
checked={!listQuestions[quizId][totalIndex].required}
|
||
handleChange={(e) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
required: !e.target.checked,
|
||
});
|
||
}}
|
||
/>
|
||
<Box sx={{ width: isMobile ? "90%" : "auto", display: "flex", alignItems: "center" }}>
|
||
<CustomCheckbox
|
||
sx={{ mr: isMobile ? "0px" : "16px" }}
|
||
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 });
|
||
}}
|
||
/>
|
||
<Tooltip title="Будет отображаться как заголовок вопроса в приходящих заявках." placement="top">
|
||
<Box>
|
||
<InfoIcon />
|
||
</Box>
|
||
</Tooltip>
|
||
</Box>
|
||
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
|
||
<CustomTextField
|
||
placeholder={"Развёрнутое описание вопроса"}
|
||
text={listQuestions[quizId][totalIndex].content.innerName}
|
||
onChange={({ target }) => debounced(target.value)}
|
||
/>
|
||
)}
|
||
</Box>
|
||
);
|
||
}
|