frontPanel/src/pages/Questions/OptionsAndPicture/SettingOptionsAndPict.tsx

113 lines
4.2 KiB
TypeScript
Raw Normal View History

2023-09-07 14:14:48 +00:00
import { useParams } from "react-router-dom";
2023-09-15 12:37:12 +00:00
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
import CustomTextField from "@ui_kit/CustomTextField";
import InfoIcon from "../../../assets/icons/InfoIcon";
2023-09-07 14:14:48 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-07 14:14:48 +00:00
type SettingOptionsAndPictProps = {
totalIndex: number;
};
2023-09-15 12:37:12 +00:00
export default function SettingOptionsAndPict({ totalIndex }: SettingOptionsAndPictProps) {
2023-09-07 14:14:48 +00:00
const quizId = Number(useParams().quizId);
const { listQuestions } = questionStore();
2023-09-15 12:37:12 +00:00
const theme = useTheme();
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
const isMobile = useMediaQuery(theme.breakpoints.down(680));
2023-09-07 14:14:48 +00:00
return (
<>
<Box
2023-09-15 12:37:12 +00:00
sx={{
display: "flex",
width: "100%",
justifyContent: "space-between",
flexDirection: isWrappColumn ? "column" : null,
}}
2023-09-07 14:14:48 +00:00
>
2023-09-15 12:37:12 +00:00
<Box sx={{ padding: "20px", width: isMobile ? "85%" : "100%" }}>
<Typography sx={{ marginBottom: "15px" }}>Настройки ответов</Typography>
2023-09-07 14:14:48 +00:00
<CustomCheckbox
label={'Вариант "свой ответ"'}
checked={listQuestions[quizId][totalIndex].content.own}
handleChange={({ target }) => {
updateQuestionsList(quizId, totalIndex, {
content: {
...listQuestions[quizId][totalIndex].content,
own: target.checked,
},
});
}}
/>
2023-09-15 12:37:12 +00:00
<Typography sx={{ marginBottom: "15px" }}>Текст-заглушка на картинке</Typography>
2023-09-07 14:14:48 +00:00
<CustomTextField
2023-09-15 12:37:12 +00:00
sx={{ maxWidth: "330px", width: "100%" }}
2023-09-07 14:14:48 +00:00
placeholder={"Пример текста"}
text={listQuestions[quizId][totalIndex].content.replText}
onChange={({ target }) => {
updateQuestionsList(quizId, totalIndex, {
content: {
...listQuestions[quizId][totalIndex].content,
replText: target.value,
},
});
}}
/>
</Box>
2023-09-15 12:37:12 +00:00
<Box
sx={{
padding: isWrappColumn ? "0px 20px 20px 20px" : "20px 20px 20px 20px",
width: isWrappColumn ? "auto" : "100%",
}}
>
<Typography sx={{ marginBottom: "15px" }}>Настройки вопросов</Typography>
2023-09-07 14:14:48 +00:00
<CustomCheckbox
label={"Необязательный вопрос"}
checked={listQuestions[quizId][totalIndex].content.required}
handleChange={({ target }) => {
updateQuestionsList(quizId, totalIndex, {
content: {
...listQuestions[quizId][totalIndex].content,
required: target.checked,
},
});
}}
/>
<Box sx={{ display: "flex", alignItems: "center" }}>
<CustomCheckbox
sx={{ width: "100%" }}
label={"Внутреннее название вопроса"}
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
handleChange={({ target }) => {
updateQuestionsList(quizId, totalIndex, {
content: {
...listQuestions[quizId][totalIndex].content,
innerNameCheck: target.checked,
innerName: "",
},
});
}}
2023-09-15 12:37:12 +00:00
/>
2023-09-07 14:14:48 +00:00
<InfoIcon />
</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,
});
}}
/>
)}
</Box>
</Box>
</>
);
}