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

164 lines
5.2 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-20 17:39:17 +00:00
import {
Box,
IconButton,
InputAdornment,
Link,
Popover,
TextField,
TextareaAutosize,
Typography,
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";
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-20 17:39:17 +00:00
import PointsIcon from "@icons/questionsPage/PointsIcon";
import MessageIcon from "@icons/messagIcon";
import DeleteIcon from "@icons/questionsPage/deleteIcon";
import { ImageAddIcons } from "@icons/ImageAddIcons";
import { EmojiIcons } from "@icons/EmojiIocns";
2023-09-22 07:26:07 +00:00
import AddEmoji from "../../../assets/icons/questionsPage/addEmoji";
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-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-20 17:39:17 +00:00
const isTablet = useMediaQuery(theme.breakpoints.down(790));
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-20 17:39:17 +00:00
<Box
sx={{
width: "100%",
border: "1px solid #9A9AAF",
borderRadius: "8px",
}}
>
<TextField
fullWidth
focused={false}
placeholder={"Добавьте ответ"}
multiline={listQuestions[quizId][totalIndex].content.largeCheck}
InputProps={{
startAdornment: (
<>
<InputAdornment position="start">
<PointsIcon />
</InputAdornment>
{!isMobile && <AddEmoji />}
</>
),
endAdornment: (
<InputAdornment position="end">
<IconButton aria-describedby="my-popover-id">
<MessageIcon />
</IconButton>
<Popover id="my-popover-id" anchorOrigin={{ vertical: "bottom", horizontal: "left" }} open={false}>
<TextareaAutosize style={{ margin: "10px" }} placeholder="Подсказка для этого ответа" />
</Popover>
<IconButton>
<DeleteIcon color={theme.palette.grey2.main} />
</IconButton>
</InputAdornment>
),
}}
sx={{
"& .MuiInputBase-root": {
padding: "13.5px",
borderRadius: "10px",
background: "#ffffff",
},
"& .MuiOutlinedInput-notchedOutline": {
border: "none",
},
}}
inputProps={{
sx: { fontSize: "18px", lineHeight: "21px", py: 0 },
}}
/>
{isMobile && (
<Box sx={{ display: "flex", alignItems: "center", m: "8px", position: "relative" }}>
<Box sx={{ width: "100%", background: "#EEE4FC", height: "40px" }} />
<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>
2023-09-06 07:30:27 +00:00
</Box>
2023-09-20 17:39:17 +00:00
)}
</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-21 10:07:30 +00:00
const answerNew =
listQuestions[quizId][totalIndex].content.variants.slice();
answerNew.push({ answer: "", hints: "", emoji: "" });
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-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} />
</>
);
}