frontPanel/src/pages/Questions/Emoji/settingEmoji.tsx

46 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-06 07:30:27 +00:00
import { Box, Typography } from "@mui/material";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
import InfoIcon from "../../../assets/icons/InfoIcon";
2023-09-06 07:30:27 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-06 07:30:27 +00:00
type SettingEmojiProps = {
totalIndex: number;
};
2023-09-06 07:30:27 +00:00
export default function SettingEmoji({ totalIndex }: SettingEmojiProps) {
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-09-06 07:30:27 +00:00
const { listQuestions } = questionStore();
return (
<Box sx={{ display: "flex" }}>
<Box sx={{ padding: "20px" }}>
<Typography>Настройки ответов</Typography>
<CustomCheckbox
label={"Можно несколько"}
2023-09-06 13:20:12 +00:00
checked={listQuestions[quizId][totalIndex].content.multi}
2023-09-06 07:30:27 +00:00
handleChange={(e) => {
2023-09-06 13:20:12 +00:00
let clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 07:30:27 +00:00
clonContent.multi = e.target.checked;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-06 07:30:27 +00:00
}}
/>
<CustomCheckbox
label={'Вариант "свой ответ"'}
2023-09-06 13:20:12 +00:00
checked={listQuestions[quizId][totalIndex].content.own}
2023-09-06 07:30:27 +00:00
handleChange={(e) => {
2023-09-06 13:20:12 +00:00
let clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 07:30:27 +00:00
clonContent.own = e.target.checked;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-06 07:30:27 +00:00
}}
/>
</Box>
<Box sx={{ padding: "20px" }}>
<Typography>Настройки вопросов</Typography>
<CustomCheckbox label={"Необязательный вопрос"} />
<CustomCheckbox label={"Внутреннее название вопроса"} /> <InfoIcon />
</Box>
</Box>
);
}