108 lines
3.6 KiB
TypeScript
108 lines
3.6 KiB
TypeScript
import { useParams } from "react-router-dom";
|
||
import {
|
||
Box,
|
||
Typography,
|
||
Tooltip,
|
||
useMediaQuery,
|
||
useTheme,
|
||
} from "@mui/material";
|
||
import { useDebouncedCallback } from "use-debounce";
|
||
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
||
import CustomTextField from "@ui_kit/CustomTextField";
|
||
import InfoIcon from "../../../assets/icons/InfoIcon";
|
||
import { questionStore, updateQuestionsList } from "@root/questions";
|
||
|
||
import type { QuizQuestionNumber } from "../../../model/questionTypes/number";
|
||
|
||
type SettingSliderProps = {
|
||
totalIndex: number;
|
||
};
|
||
|
||
export default function SettingSlider({ totalIndex }: SettingSliderProps) {
|
||
const quizId = Number(useParams().quizId);
|
||
const { listQuestions } = questionStore();
|
||
const theme = useTheme();
|
||
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
|
||
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
||
const question = listQuestions[quizId][totalIndex] as QuizQuestionNumber;
|
||
const debounced = useDebouncedCallback((value) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
content: { ...question.content, innerName: value },
|
||
});
|
||
}, 1000);
|
||
|
||
return (
|
||
<Box
|
||
sx={{
|
||
display: "flex",
|
||
justifyContent: "space-between",
|
||
flexDirection: isWrappColumn ? "column" : null,
|
||
}}
|
||
>
|
||
<Box sx={{ pt: "20px", pb: "20px", pl: "20px" }}>
|
||
<Typography>Настройки ползунка</Typography>
|
||
<CustomCheckbox
|
||
sx={{ mr: isMobile ? "0px" : "16px" }}
|
||
label={"Выбор диапозона (два ползунка)"}
|
||
checked={question.content.chooseRange}
|
||
handleChange={({ target }) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
content: { ...question.content, chooseRange: target.checked },
|
||
});
|
||
}}
|
||
/>
|
||
</Box>
|
||
<Box sx={{ pt: "20px", pb: "20px", pl: "20px" }}>
|
||
<Typography>Настройки вопросов</Typography>
|
||
<CustomCheckbox
|
||
sx={{ mr: isMobile ? "0px" : "16px" }}
|
||
label={"Необязательный вопрос"}
|
||
checked={!listQuestions[quizId][totalIndex].required}
|
||
handleChange={(e) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
required: !e.target.checked,
|
||
});
|
||
}}
|
||
/>
|
||
<Box
|
||
sx={{
|
||
width: isMobile ? "90%" : "auto",
|
||
display: "flex",
|
||
alignItems: "center",
|
||
}}
|
||
>
|
||
<CustomCheckbox
|
||
sx={{ mr: isMobile ? "0px" : "16px" }}
|
||
label={"Внутреннее название вопроса"}
|
||
checked={question.content.innerNameCheck}
|
||
handleChange={({ target }) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
content: {
|
||
...question.content,
|
||
innerNameCheck: target.checked,
|
||
innerName: target.checked ? question.content.innerName : "",
|
||
},
|
||
});
|
||
}}
|
||
/>
|
||
<Tooltip
|
||
title="Будет отображаться как заголовок вопроса в приходящих заявках."
|
||
placement="top"
|
||
>
|
||
<Box>
|
||
<InfoIcon />
|
||
</Box>
|
||
</Tooltip>
|
||
</Box>
|
||
{question.content.innerNameCheck && (
|
||
<CustomTextField
|
||
placeholder={"Развёрнутое описание вопроса"}
|
||
text={question.content.innerName}
|
||
onChange={({ target }) => debounced(target.value)}
|
||
/>
|
||
)}
|
||
</Box>
|
||
</Box>
|
||
);
|
||
}
|