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

78 lines
2.5 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-15 12:37:12 +00:00
import { Box, Link, Typography, useMediaQuery, useTheme } from "@mui/material";
import EnterIcon from "../../../assets/icons/questionsPage/enterIcon";
import ButtonsOptions from "../ButtonsOptions";
import SwitchEmoji from "./switchEmoji";
import React from "react";
import AddEmoji from "../../../assets/icons/questionsPage/addEmoji";
2023-09-06 07:30:27 +00:00
import { AnswerDraggableList } from "../AnswerDraggableList";
import { questionStore, updateQuestionsList } from "@root/questions";
2023-08-24 11:09:47 +00:00
interface Props {
totalIndex: number;
}
export default function Emoji({ totalIndex }: Props) {
const [switchState, setSwitchState] = React.useState("setting");
2023-09-06 07:30:27 +00:00
const { listQuestions } = questionStore();
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-09-06 07:30:27 +00:00
const theme = useTheme();
2023-09-15 12:37:12 +00:00
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-09-06 07:30:27 +00:00
2023-08-24 11:09:47 +00:00
const SSHC = (data: string) => {
setSwitchState(data);
};
2023-09-06 07:30:27 +00:00
2023-08-24 11:09:47 +00:00
return (
<>
<Box sx={{ padding: "20px" }}>
2023-09-06 07:30:27 +00:00
<AnswerDraggableList
2023-09-06 13:20:12 +00:00
variants={listQuestions[quizId][totalIndex].content.variants}
2023-09-06 07:30:27 +00:00
totalIndex={totalIndex}
icon={
<Box sx={{ margin: "0 15px 0 5px" }}>
<AddEmoji />
</Box>
}
/>
2023-08-24 11:09:47 +00:00
<Box sx={{ display: "flex", alignItems: "center", gap: "10px" }}>
<Link
component="button"
variant="body2"
sx={{ color: theme.palette.brightPurple.main }}
2023-09-06 07:30:27 +00:00
onClick={() => {
2023-09-15 12:37:12 +00:00
const answerNew = listQuestions[quizId][totalIndex].content.variants.slice();
2023-09-07 14:14:48 +00:00
answerNew.push({ answer: "", hints: "" });
2023-09-06 07:30:27 +00:00
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, {
2023-09-06 07:30:27 +00:00
content: {
2023-09-06 13:20:12 +00:00
...listQuestions[quizId][totalIndex].content,
2023-09-06 07:30:27 +00:00
variants: answerNew,
},
});
}}
2023-08-24 11:09:47 +00:00
>
Добавьте ответ
</Link>
2023-09-15 12:37:12 +00:00
{isMobile ? null : (
<>
<Typography
sx={{
fontWeight: 400,
fontSize: "18px",
lineHeight: "21.33px",
color: theme.palette.grey2.main,
}}
>
или нажмите Enter
</Typography>
<EnterIcon />
</>
)}
2023-08-24 11:09:47 +00:00
</Box>
</Box>
2023-09-15 12:37:12 +00:00
<ButtonsOptions switchState={switchState} SSHC={SSHC} totalIndex={totalIndex} />
2023-08-24 11:09:47 +00:00
<SwitchEmoji switchState={switchState} totalIndex={totalIndex} />
</>
);
}