frontPanel/src/pages/Questions/DataOptions/settingData.tsx

126 lines
4.1 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +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";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
2023-09-08 13:42:52 +00:00
import CustomTextField from "@ui_kit/CustomTextField";
import InfoIcon from "../../../assets/icons/InfoIcon";
2023-09-05 16:34:52 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-10-03 14:03:57 +00:00
import type { QuizQuestionDate } from "../../../model/questionTypes/date";
2023-09-05 16:34:52 +00:00
type SettingsDataProps = {
totalIndex: number;
};
2023-09-05 16:34:52 +00:00
export default function SettingsData({ totalIndex }: SettingsDataProps) {
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-09-05 16:34:52 +00:00
const { listQuestions } = questionStore();
2023-09-15 12:37:12 +00:00
const theme = useTheme();
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
2023-09-21 07:00:08 +00:00
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-10-03 14:03:57 +00:00
const question = listQuestions[quizId][totalIndex] as QuizQuestionDate;
2023-09-20 09:07:33 +00:00
const debounced = useDebouncedCallback((value) => {
2023-10-03 14:03:57 +00:00
updateQuestionsList(quizId, totalIndex, {
content: { ...question.content, innerName: value },
});
2023-09-20 09:07:33 +00:00
}, 1000);
2023-09-05 16:34:52 +00:00
return (
2023-09-18 12:34:41 +00:00
<Box
sx={{
display: "flex",
justifyContent: "space-between",
flexDirection: isWrappColumn ? "column" : null,
}}
>
2023-09-21 07:00:08 +00:00
<Box sx={{ pt: "20px", pl: "20px", pb: "20px" }}>
2023-09-05 16:34:52 +00:00
<Typography>Настройки календаря</Typography>
<CustomCheckbox
2023-09-21 07:00:08 +00:00
sx={{ display: "block", mr: isMobile ? "0px" : "16px" }}
2023-09-08 13:42:52 +00:00
label={"Выбор диапазона дат"}
2023-10-03 14:03:57 +00:00
checked={question.content.dateRange}
2023-09-05 16:34:52 +00:00
handleChange={({ target }) => {
2023-10-03 14:03:57 +00:00
updateQuestionsList(quizId, totalIndex, {
content: { ...question.content, dateRange: target.checked },
});
2023-09-05 16:34:52 +00:00
}}
/>
<CustomCheckbox
2023-09-20 17:39:17 +00:00
sx={{ display: "block", mr: isMobile ? "0px" : "16px" }}
2023-09-05 16:34:52 +00:00
label={"Выбор времени"}
2023-10-03 14:03:57 +00:00
checked={question.content.time}
2023-09-05 16:34:52 +00:00
handleChange={({ target }) => {
2023-10-03 14:03:57 +00:00
updateQuestionsList(quizId, totalIndex, {
content: { ...question.content, time: target.checked },
});
2023-09-05 16:34:52 +00:00
}}
/>
</Box>
2023-09-15 12:37:12 +00:00
<Box
sx={{
2023-09-18 12:34:41 +00:00
padding: isWrappColumn
? "0px 20px 20px 20px "
: "20px 20px 20px 20px",
2023-09-15 12:37:12 +00:00
minWidth: isWrappColumn ? null : "350px",
2023-09-20 17:39:17 +00:00
marginRight: isMobile ? "0px" : "30px",
2023-09-15 12:37:12 +00:00
}}
>
2023-09-05 16:34:52 +00:00
<Typography>Настройки вопросов</Typography>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
2023-09-21 07:00:08 +00:00
sx={{ mr: isMobile ? "0px" : "16px" }}
2023-09-08 13:42:52 +00:00
label={"Необязательный вопрос"}
2023-10-03 14:03:57 +00:00
checked={!question.required}
handleChange={({ target }) => {
2023-09-08 13:42:52 +00:00
updateQuestionsList(quizId, totalIndex, {
2023-10-03 14:03:57 +00:00
required: !target.checked,
2023-09-08 13:42:52 +00:00
});
}}
/>
2023-10-03 14:03:57 +00:00
<Box
sx={{
width: isMobile ? "93%" : "auto",
display: "flex",
alignItems: "center",
}}
>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
2023-09-20 17:39:17 +00:00
sx={{ mr: isMobile ? "0px" : "16px" }}
2023-09-08 13:42:52 +00:00
label={"Внутреннее название вопроса"}
2023-10-03 14:03:57 +00:00
checked={question.content.innerNameCheck}
handleChange={({ target }) => {
updateQuestionsList(quizId, totalIndex, {
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
/>
<Tooltip
title="Будет отображаться как заголовок вопроса в приходящих заявках."
placement="top"
>
<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-09-08 13:42:52 +00:00
/>
)}
2023-09-05 16:34:52 +00:00
</Box>
</Box>
);
}