2023-09-07 14:14:48 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-09-18 12:34:41 +00:00
|
|
|
|
import {
|
|
|
|
|
Box,
|
|
|
|
|
Typography,
|
|
|
|
|
Tooltip,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
|
|
|
|
} from "@mui/material";
|
2023-09-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
|
2023-09-07 14:14:48 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
|
2023-09-07 14:14:48 +00:00
|
|
|
|
type SettingOptionsAndPictProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-18 09:07:13 +00:00
|
|
|
|
export default function SettingOptionsAndPict({
|
|
|
|
|
totalIndex,
|
|
|
|
|
}: SettingOptionsAndPictProps) {
|
2023-09-07 14:14:48 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
|
|
|
|
const { listQuestions } = questionStore();
|
2023-09-15 12:37:12 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(680));
|
2023-09-20 09:07:33 +00:00
|
|
|
|
const debounced = useDebouncedCallback((replText) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
replText,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}, 1000);
|
|
|
|
|
const debounceDescription = useDebouncedCallback((value) => {
|
|
|
|
|
let clonContent = listQuestions[quizId][totalIndex].content;
|
|
|
|
|
clonContent.innerName = value;
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: clonContent,
|
|
|
|
|
});
|
|
|
|
|
}, 1000);
|
2023-09-07 14:14:48 +00:00
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box
|
2023-09-15 12:37:12 +00:00
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
width: "100%",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
flexDirection: isWrappColumn ? "column" : null,
|
|
|
|
|
}}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
>
|
2023-09-21 07:00:08 +00:00
|
|
|
|
<Box sx={{ pt: "20px", pb: "20px", pl: "20px", width: isMobile ? "85%" : "100%" }}>
|
2023-09-18 09:07:13 +00:00
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки ответов
|
|
|
|
|
</Typography>
|
2023-09-07 14:14:48 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
label={'Вариант "свой ответ"'}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.own}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
own: target.checked,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-09-18 09:07:13 +00:00
|
|
|
|
{!isWrappColumn && (
|
|
|
|
|
<>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Текст-заглушка на картинке
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomTextField
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ maxWidth: "330px", width: "100%", mr: isMobile ? "0px" : "16px" }}
|
2023-09-18 09:07:13 +00:00
|
|
|
|
placeholder={"Пример текста"}
|
|
|
|
|
text={listQuestions[quizId][totalIndex].content.replText}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounced(target.value)}
|
2023-09-18 09:07:13 +00:00
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
</Box>
|
2023-09-15 12:37:12 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-09-18 09:07:13 +00:00
|
|
|
|
padding: isWrappColumn
|
|
|
|
|
? "0px 20px 20px 20px"
|
|
|
|
|
: "20px 20px 20px 20px",
|
2023-09-15 12:37:12 +00:00
|
|
|
|
width: isWrappColumn ? "auto" : "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-18 09:07:13 +00:00
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-09-07 14:14:48 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
label={"Необязательный вопрос"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.required}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
required: target.checked,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ width: isMobile ? "90%" : "auto", mr: isMobile ? "0px" : "16px" }}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
label={"Внутреннее название вопроса"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: "",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}}
|
2023-09-15 12:37:12 +00:00
|
|
|
|
/>
|
2023-09-18 12:34:41 +00:00
|
|
|
|
<Tooltip
|
|
|
|
|
title="Будет отображаться как заголовок вопроса в приходящих заявках."
|
|
|
|
|
placement="top"
|
|
|
|
|
>
|
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
2023-09-07 14:14:48 +00:00
|
|
|
|
</Box>
|
|
|
|
|
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
|
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
|
|
|
|
text={listQuestions[quizId][totalIndex].content.innerName}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounceDescription(target.value)}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-09-18 09:07:13 +00:00
|
|
|
|
{isWrappColumn && (
|
|
|
|
|
<>
|
|
|
|
|
<Typography sx={{ marginBottom: "15px" }}>
|
|
|
|
|
Текст-заглушка на картинке
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomTextField
|
|
|
|
|
sx={{ maxWidth: "330px", width: "100%" }}
|
|
|
|
|
placeholder={"Пример текста"}
|
|
|
|
|
text={listQuestions[quizId][totalIndex].content.replText}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounced(target.value)}
|
2023-09-18 09:07:13 +00:00
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
2023-09-07 14:14:48 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|