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

112 lines
3.9 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";
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-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-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-05 16:34:52 +00:00
<Box sx={{ padding: "20px" }}>
<Typography>Настройки календаря</Typography>
<CustomCheckbox
2023-09-08 13:42:52 +00:00
label={"Выбор диапазона дат"}
2023-09-06 13:20:12 +00:00
checked={listQuestions[quizId][totalIndex].content.dateRange}
2023-09-05 16:34:52 +00:00
handleChange={({ target }) => {
2023-09-06 13:20:12 +00:00
const clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 08:01:44 +00:00
clonContent.dateRange = target.checked;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-05 16:34:52 +00:00
}}
/>
<CustomCheckbox
2023-09-15 12:37:12 +00:00
sx={{ display: "block" }}
2023-09-05 16:34:52 +00:00
label={"Выбор времени"}
2023-09-06 13:20:12 +00:00
checked={listQuestions[quizId][totalIndex].content.time}
2023-09-05 16:34:52 +00:00
handleChange={({ target }) => {
2023-09-06 13:20:12 +00:00
const clonContent = listQuestions[quizId][totalIndex].content;
2023-09-05 16:34:52 +00:00
clonContent.time = target.checked;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
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",
marginRight: "30px",
}}
>
2023-09-05 16:34:52 +00:00
<Typography>Настройки вопросов</Typography>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
label={"Необязательный вопрос"}
checked={!listQuestions[quizId][totalIndex].required}
handleChange={(e) => {
updateQuestionsList(quizId, totalIndex, {
required: !e.target.checked,
});
}}
/>
<Box sx={{ display: "flex", alignItems: "center" }}>
<CustomCheckbox
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 });
}}
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>
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
<CustomTextField
placeholder={"Развёрнутое описание вопроса"}
text={listQuestions[quizId][totalIndex].content.innerName}
onChange={({ target }) => {
let clonContent = listQuestions[quizId][totalIndex].content;
clonContent.innerName = target.value;
updateQuestionsList(quizId, totalIndex, { content: clonContent });
}}
/>
)}
2023-09-05 16:34:52 +00:00
</Box>
</Box>
);
}