2023-09-08 13:42:52 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-09-22 07:26:07 +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";
|
2023-09-08 13:42:52 +00:00
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-09-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2023-09-08 13:42:52 +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-09-08 13:42:52 +00:00
|
|
|
|
type SettingPageOptionsProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingPageOptions({
|
|
|
|
|
totalIndex,
|
|
|
|
|
}: SettingPageOptionsProps) {
|
|
|
|
|
const quizId = Number(useParams().quizId);
|
|
|
|
|
const { listQuestions } = questionStore();
|
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-08 13:42:52 +00:00
|
|
|
|
|
2023-09-20 17:39:17 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
|
|
|
|
|
2023-09-06 13:56:59 +00:00
|
|
|
|
return (
|
2023-09-22 07:26:07 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
pt: "20px",
|
|
|
|
|
pb: "20px",
|
|
|
|
|
pl: "20px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-06 13:56:59 +00:00
|
|
|
|
<Typography>Настройки вопроса</Typography>
|
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-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
label={"Внутреннее название вопроса"}
|
|
|
|
|
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) =>
|
|
|
|
|
updateQuestionsList(quizId, totalIndex, {
|
|
|
|
|
content: {
|
|
|
|
|
...listQuestions[quizId][totalIndex].content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: "",
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
/>
|
2023-09-18 12:34:41 +00:00
|
|
|
|
<Tooltip
|
|
|
|
|
title="Будет отображаться как заголовок вопроса в приходящих заявках."
|
|
|
|
|
placement="top"
|
|
|
|
|
>
|
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
2023-09-06 13:56:59 +00:00
|
|
|
|
</Box>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
{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 13:56:59 +00:00
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|