frontPanel/src/pages/Questions/SliderOptions/settingSlider.tsx

123 lines
4.5 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-26 21:11:27 +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-06 08:01:44 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-06 08:01:44 +00:00
type SettingSliderProps = {
totalIndex: number;
};
2023-09-06 08:01:44 +00:00
export default function SettingSlider({ totalIndex }: SettingSliderProps) {
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-09-06 08:01:44 +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-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-09-20 09:07:33 +00:00
const debounced = useDebouncedCallback((value) => {
let clonContent = listQuestions[quizId][totalIndex].content;
clonContent.innerName = value;
updateQuestionsList(quizId, totalIndex, { content: clonContent });
}, 1000);
2023-09-06 08:01:44 +00:00
return (
2023-09-18 12:34:41 +00:00
<Box
sx={{
display: "flex",
justifyContent: "space-between",
flexDirection: isWrappColumn ? "column" : null,
}}
>
2023-09-26 21:11:27 +00:00
<Box
sx={{
pt: isMobile ? "25px" : "20px",
pb: isMobile ? "25px" : "20px",
pl: "20px",
display: "flex",
flexDirection: "column",
gap: "14px",
width: "100%",
}}
>
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
Настройки ползунка
</Typography>
2023-09-06 08:01:44 +00:00
<CustomCheckbox
2023-09-21 07:00:08 +00:00
sx={{ mr: isMobile ? "0px" : "16px" }}
2023-09-06 08:01:44 +00:00
label={"Выбор диапозона (два ползунка)"}
2023-09-06 13:20:12 +00:00
checked={listQuestions[quizId][totalIndex].content.chooseRange}
2023-09-06 08:01:44 +00:00
handleChange={(e) => {
2023-09-06 13:20:12 +00:00
let clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 08:01:44 +00:00
clonContent.chooseRange = e.target.checked;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-06 08:01:44 +00:00
}}
/>
</Box>
2023-09-26 21:11:27 +00:00
<Box
sx={{
pt: isMobile ? "0px" : "20px",
pb: "20px",
2023-09-28 21:17:01 +00:00
pl: isFigmaTablte ? (isWrappColumn ? "20px" : "0px") : "0px",
pr: isFigmaTablte ? (isMobile ? "20px" : "12px") : "20px",
2023-09-26 21:11:27 +00:00
display: "flex",
flexDirection: "column",
gap: isMobile ? "13px" : "14px",
width: "100%",
}}
>
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
Настройки вопросов
</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={"Необязательный вопрос"}
checked={!listQuestions[quizId][totalIndex].required}
handleChange={(e) => {
updateQuestionsList(quizId, totalIndex, {
required: !e.target.checked,
});
}}
/>
2023-09-22 07:26:07 +00:00
<Box
sx={{
width: isMobile ? "90%" : "auto",
display: "flex",
alignItems: "center",
}}
>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
2023-09-28 21:17:01 +00:00
sx={{ mr: isMobile ? "0px" : "16px", whiteSpace: isFigmaTablte ? "nowrap" : "" }}
2023-09-08 13:42:52 +00:00
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
/>
2023-09-26 21:11:27 +00:00
<Tooltip title="Будет отображаться как заголовок вопроса в приходящих заявках." placement="top">
2023-09-18 12:34:41 +00:00
<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}
2023-09-20 09:07:33 +00:00
onChange={({ target }) => debounced(target.value)}
2023-09-08 13:42:52 +00:00
/>
)}
2023-09-06 08:01:44 +00:00
</Box>
</Box>
);
}