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

240 lines
7.4 KiB
TypeScript
Raw Normal View History

2023-09-21 10:07:30 +00:00
import { useState } from "react";
2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-28 12:29:48 +00:00
import {
Box,
Link,
Typography,
Popover,
useMediaQuery,
useTheme,
} from "@mui/material";
import EnterIcon from "../../../assets/icons/questionsPage/enterIcon";
import ButtonsOptions from "../ButtonsOptions";
import SwitchEmoji from "./switchEmoji";
2023-09-06 07:30:27 +00:00
import { AnswerDraggableList } from "../AnswerDraggableList";
2023-09-28 12:29:48 +00:00
import { EmojiPicker } from "@ui_kit/EmojiPicker";
import { EmojiIcons } from "@icons/EmojiIocns";
2023-09-06 07:30:27 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-10-01 12:10:12 +00:00
import AddEmoji from "@icons/questionsPage/addEmoji";
import PlusImage from "@icons/questionsPage/plus";
2023-09-28 12:29:48 +00:00
2023-08-24 11:09:47 +00:00
interface Props {
totalIndex: number;
}
export default function Emoji({ totalIndex }: Props) {
2023-09-21 10:07:30 +00:00
const [switchState, setSwitchState] = useState<string>("setting");
2023-09-28 12:29:48 +00:00
const [open, setOpen] = useState<boolean>(false);
const [anchorElement, setAnchorElement] = useState<HTMLDivElement | null>(
null
);
const [currentIndex, setCurrentIndex] = useState<number>(0);
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-28 12:29:48 +00:00
const isTablet = 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-25 07:12:22 +00:00
<AnswerDraggableList
variants={listQuestions[quizId][totalIndex].content.variants}
totalIndex={totalIndex}
2023-09-28 12:29:48 +00:00
additionalContent={(variant, index) => (
<>
{!isTablet && (
<Box sx={{ cursor: "pointer", margin: "0 15px 0 5px" }}>
<Box
onClick={({ currentTarget }) => {
setAnchorElement(currentTarget);
setCurrentIndex(index);
setOpen(true);
}}
>
<Box
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
gap: "5px",
}}
>
2023-09-28 13:52:50 +00:00
{variant.emoji ? (
<Box
sx={{
width: "30px",
display: "flex",
alignItems: "center",
background: "#EEE4FC",
borderRadius: "3px",
marginRight: "15px",
}}
>
<Box sx={{ marginLeft: "3px" }}>{variant.emoji}</Box>
<Box sx={{ marginLeft: "-3px" }}>
<PlusImage />
</Box>
</Box>
) : (
<AddEmoji />
2023-09-28 12:29:48 +00:00
)}
</Box>
</Box>
</Box>
)}
</>
)}
additionalMobile={(variant, index) => (
<>
{isTablet && (
<Box
onClick={({ currentTarget }) => {
setAnchorElement(currentTarget);
setCurrentIndex(index);
setOpen(true);
}}
sx={{
display: "flex",
alignItems: "center",
m: "8px",
position: "relative",
}}
>
<Box
sx={{
width: "100%",
background: "#EEE4FC",
height: "40px",
}}
/>
{variant.emoji ? (
<Box
sx={{
position: "absolute",
color: "#7E2AEA",
fontSize: "20px",
left: "45%",
right: "55%",
}}
>
{variant.emoji}
</Box>
) : (
<EmojiIcons
style={{
position: "absolute",
color: "#7E2AEA",
fontSize: "20px",
left: "45%",
right: "55%",
}}
/>
)}
<Box
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
width: "20px",
background: "#EEE4FC",
height: "40px",
color: "white",
backgroundColor: "#7E2AEA",
}}
>
+
</Box>
</Box>
)}
</>
)}
2023-09-25 07:12:22 +00:00
/>
2023-09-28 12:29:48 +00:00
<Popover
open={open}
anchorEl={anchorElement}
onClick={(event) => event.stopPropagation()}
onClose={() => setOpen(false)}
anchorOrigin={{
vertical: "bottom",
horizontal: "right",
}}
sx={{
".MuiPaper-root.MuiPaper-rounded": {
borderRadius: "10px",
},
}}
>
<EmojiPicker
onEmojiSelect={({ native }) => {
setOpen(false);
const cloneVariants = [
...listQuestions[quizId][totalIndex].content.variants,
];
cloneVariants[currentIndex] = {
...cloneVariants[currentIndex],
emoji: native,
};
updateQuestionsList(quizId, totalIndex, {
content: {
...listQuestions[quizId][totalIndex].content,
variants: cloneVariants,
},
});
}}
/>
</Popover>
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-21 10:07:30 +00:00
const answerNew =
listQuestions[quizId][totalIndex].content.variants.slice();
2023-10-01 12:10:12 +00:00
answerNew.push({ answer: "", hints: "", emoji: "", image: "" });
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-28 12:29:48 +00:00
{!isTablet && (
2023-09-15 12:37:12 +00:00
<>
<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-21 10:07:30 +00:00
<ButtonsOptions
switchState={switchState}
SSHC={SSHC}
totalIndex={totalIndex}
/>
2023-08-24 11:09:47 +00:00
<SwitchEmoji switchState={switchState} totalIndex={totalIndex} />
</>
);
}