2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-09-25 13:43:15 +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-15 22:56:53 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-07-11 10:43:04 +00:00
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-08-24 09:09:43 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-03-15 22:56:53 +00:00
|
|
|
|
|
2023-10-04 09:07:59 +00:00
|
|
|
|
import type { QuizQuestionVariant } from "../../../model/questionTypes/variant";
|
|
|
|
|
|
2023-07-11 10:43:04 +00:00
|
|
|
|
interface Props {
|
2023-08-24 09:09:43 +00:00
|
|
|
|
totalIndex: number;
|
2023-07-11 10:43:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-24 09:09:43 +00:00
|
|
|
|
export default function ResponseSettings({ totalIndex }: Props) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-08-24 09:09:43 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-09-15 12:37:12 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(900));
|
2023-09-25 13:43:15 +00:00
|
|
|
|
const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990));
|
2023-09-15 12:37:12 +00:00
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
2023-10-04 09:07:59 +00:00
|
|
|
|
const question = listQuestions[quizId][totalIndex] as QuizQuestionVariant;
|
2023-09-20 09:07:33 +00:00
|
|
|
|
const debounced = useDebouncedCallback((value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
content: { ...question.content, innerName: value },
|
|
|
|
|
});
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}, 1000);
|
2023-08-25 11:18:25 +00:00
|
|
|
|
|
2023-08-24 09:09:43 +00:00
|
|
|
|
return (
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
2023-09-15 12:37:12 +00:00
|
|
|
|
flexDirection: isTablet ? "column" : "none",
|
2023-09-25 13:43:15 +00:00
|
|
|
|
marginRight: isFigmaTablte ? (isMobile ? "0" : "0px") : "30px",
|
2023-09-08 13:42:52 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-04 09:07:59 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-09-25 13:43:15 +00:00
|
|
|
|
pt: isMobile ? "25px" : "20px",
|
|
|
|
|
pb: isMobile ? "25px" : "20px",
|
2023-10-04 09:07:59 +00:00
|
|
|
|
pl: "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2023-09-25 13:43:15 +00:00
|
|
|
|
gap: "14px",
|
|
|
|
|
width: "100%",
|
2023-10-04 09:07:59 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-25 13:43:15 +00:00
|
|
|
|
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
|
|
|
|
|
Настройки ответов
|
|
|
|
|
</Typography>
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
label={"Длинный текстовый ответ"}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
checked={question.content.largeCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
content: {
|
|
|
|
|
...question.content,
|
|
|
|
|
largeCheck: target.checked,
|
|
|
|
|
},
|
|
|
|
|
});
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
label={"Можно несколько"}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
checked={question.content.multi}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
content: { ...question.content, multi: target.checked },
|
|
|
|
|
});
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
label={'Вариант "свой ответ"'}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
checked={question.content.own}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
content: { ...question.content, own: target.checked },
|
|
|
|
|
});
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
2023-09-25 13:43:15 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
pt: isMobile ? "0px" : "20px",
|
|
|
|
|
pb: "20px",
|
|
|
|
|
pl: isFigmaTablte ? (isMobile ? "20px" : "34px") : "28px",
|
|
|
|
|
pr: isFigmaTablte ? "19px" : "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: isMobile ? "13px" : "14px",
|
|
|
|
|
width: "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
label={"Необязательный вопрос"}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
checked={!question.required}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
required: !target.checked,
|
2023-09-06 13:20:12 +00:00
|
|
|
|
});
|
2023-08-24 09:09:43 +00:00
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-10-04 09:07:59 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
width: isMobile ? "90%" : "auto",
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-25 13:43:15 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "9px", height: isMobile ? "42px" : "26px", alignItems: "start" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
label={"Внутреннее название вопроса"}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
checked={question.content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionVariant>(quizId, totalIndex, {
|
2023-10-04 09:07:59 +00:00
|
|
|
|
content: {
|
|
|
|
|
...question.content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: target.checked ? question.content.innerName : "",
|
|
|
|
|
},
|
2023-09-18 12:34:41 +00:00
|
|
|
|
});
|
2023-09-05 08:25:47 +00:00
|
|
|
|
}}
|
2023-09-15 12:37:12 +00:00
|
|
|
|
/>
|
2023-09-25 13:43:15 +00:00
|
|
|
|
{isMobile ||
|
|
|
|
|
(!isFigmaTablte && (
|
|
|
|
|
<Tooltip title="Будет отображаться как заголовок вопроса в приходящих заявках." placement="top">
|
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
))}
|
2023-03-15 22:56:53 +00:00
|
|
|
|
</Box>
|
2023-10-04 09:07:59 +00:00
|
|
|
|
{question.content.innerNameCheck && (
|
2023-08-24 09:09:43 +00:00
|
|
|
|
<CustomTextField
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
2023-10-04 09:07:59 +00:00
|
|
|
|
text={question.content.innerName}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounced(target.value)}
|
2023-08-24 09:09:43 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|