2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-10-04 13:40:22 +00:00
|
|
|
|
import {
|
|
|
|
|
Box,
|
|
|
|
|
Typography,
|
|
|
|
|
Tooltip,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
|
|
|
|
} from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-09-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2023-08-25 10:27:43 +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 { QuizQuestionSelect } from "../../../model/questionTypes/select";
|
|
|
|
|
|
2023-08-25 10:27:43 +00:00
|
|
|
|
type SettingDropDownProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingDropDown({ totalIndex }: SettingDropDownProps) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-08-25 10:27:43 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-09-15 12:37:12 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
|
2023-09-26 21:11:27 +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-03 14:03:57 +00:00
|
|
|
|
const question = listQuestions[quizId][totalIndex] as QuizQuestionSelect;
|
2023-09-20 09:07:33 +00:00
|
|
|
|
const debounced = useDebouncedCallback((value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionSelect>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, innerName: value },
|
|
|
|
|
});
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}, 1000);
|
|
|
|
|
const debounceAnswer = useDebouncedCallback((value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionSelect>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, default: value },
|
|
|
|
|
});
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}, 1000);
|
2023-09-15 12:37:12 +00:00
|
|
|
|
|
2023-08-25 10:27:43 +00:00
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box
|
2023-09-15 12:37:12 +00:00
|
|
|
|
sx={{
|
|
|
|
|
position: "relative",
|
|
|
|
|
display: "flex",
|
2023-10-04 13:40:22 +00:00
|
|
|
|
gap: "20px",
|
2023-09-15 12:37:12 +00:00
|
|
|
|
width: "100%",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
flexDirection: isMobile ? "column" : null,
|
|
|
|
|
}}
|
2023-08-25 10:27:43 +00:00
|
|
|
|
>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-09-26 21:11:27 +00:00
|
|
|
|
pt: isMobile ? "25px" : "20px",
|
|
|
|
|
pb: isMobile ? "25px" : "20px",
|
|
|
|
|
pl: "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "14px",
|
2023-09-20 09:07:33 +00:00
|
|
|
|
width: "100%",
|
2023-09-26 23:38:26 +00:00
|
|
|
|
maxWidth: isFigmaTablte ? "297px" : "360px",
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Typography
|
2023-10-04 13:40:22 +00:00
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
}}
|
2023-09-26 21:11:27 +00:00
|
|
|
|
>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
Настройки ответов
|
|
|
|
|
</Typography>
|
2023-09-12 11:15:01 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Можно несколько"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
checked={question.content.multi}
|
2023-09-12 11:15:01 +00:00
|
|
|
|
handleChange={({ target }) =>
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionSelect>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, multi: target.checked },
|
2023-09-12 11:15:01 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
/>
|
2023-10-04 13:40:22 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: isMobile ? "none" : "block",
|
|
|
|
|
mt: isMobile ? "11px" : "6px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Typography
|
2023-09-26 23:38:26 +00:00
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
mb: "14px",
|
|
|
|
|
}}
|
2023-09-26 21:11:27 +00:00
|
|
|
|
>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
Текст в выпадающем списке
|
|
|
|
|
</Typography>
|
2023-09-15 12:37:12 +00:00
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Выберите вариант"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
text={question.content.default}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounceAnswer(target.value)}
|
2023-09-15 12:37:12 +00:00
|
|
|
|
/>
|
|
|
|
|
</Box>
|
2023-08-25 10:27:43 +00:00
|
|
|
|
</Box>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
pt: isMobile ? "0px" : "20px",
|
|
|
|
|
pb: "20px",
|
2023-09-26 23:38:26 +00:00
|
|
|
|
pl: isFigmaTablte ? (isMobile ? "20px" : "30px") : "0px",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
pr: isFigmaTablte ? "19px" : "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2023-10-03 14:41:12 +00:00
|
|
|
|
gap: "14px",
|
|
|
|
|
width: isMobile ? "auto" : "100%",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography
|
2023-10-04 13:40:22 +00:00
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
}}
|
2023-09-26 21:11:27 +00:00
|
|
|
|
>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
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<QuizQuestionSelect>(quizId, totalIndex, {
|
2023-09-08 13:42:52 +00:00
|
|
|
|
required: !e.target.checked,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-10-03 14:41:12 +00:00
|
|
|
|
<Box sx={{ position: "relative", display: "flex", alignItems: "flex-start" }}>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
2023-10-03 14:41:12 +00:00
|
|
|
|
sx={{ height: isMobile ? "100%" : "26px", alignItems: isMobile ? "flex-start" : "center" }}
|
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<QuizQuestionSelect>(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-15 12:37:12 +00:00
|
|
|
|
/>
|
2023-10-04 13:40:22 +00:00
|
|
|
|
<Tooltip
|
|
|
|
|
title="Будет отображаться как заголовок вопроса в приходящих заявках."
|
|
|
|
|
placement="top"
|
|
|
|
|
>
|
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
2023-09-15 12:37:12 +00:00
|
|
|
|
</Box>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-03 14:41:12 +00:00
|
|
|
|
width: "100%",
|
2023-09-20 09:07:33 +00:00
|
|
|
|
pt: "20px",
|
|
|
|
|
display: isMobile ? "block" : "none",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
mb: "10px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-20 09:07:33 +00:00
|
|
|
|
Текст в выпадающем списке
|
|
|
|
|
</Typography>
|
2023-09-15 12:37:12 +00:00
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Выберите вариант"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
text={question.content.default}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounceAnswer(target.value)}
|
2023-09-15 12:37:12 +00:00
|
|
|
|
/>
|
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-09-08 13:42:52 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-08-25 10:27:43 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|