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

232 lines
7.3 KiB
TypeScript
Raw Normal View History

2023-09-20 17:39:17 +00:00
import {
Box,
Link,
Typography,
ButtonBase,
useTheme,
useMediaQuery,
InputAdornment,
IconButton,
Popover,
TextareaAutosize,
TextField,
} from "@mui/material";
2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
import AddImage from "../../../assets/icons/questionsPage/addImage";
import EnterIcon from "../../../assets/icons/questionsPage/enterIcon";
import ButtonsOptionsAndPict from "../ButtonsOptionsAndPict";
import SwitchOptionsAndPict from "./switchOptionsAndPict";
import React from "react";
2023-09-05 16:16:34 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-21 07:00:08 +00:00
import { ImageAddIcons } from "@icons/ImageAddIcons";
import PointsIcon from "@icons/questionsPage/PointsIcon";
import MessageIcon from "@icons/messagIcon";
import DeleteIcon from "@icons/questionsPage/deleteIcon";
2023-10-03 14:03:57 +00:00
import type { QuizQuestionVarImg } from "../../../model/questionTypes/varimg";
interface Props {
2023-08-12 08:31:21 +00:00
totalIndex: number;
}
2023-08-12 08:31:21 +00:00
export default function OptionsAndPicture({ totalIndex }: Props) {
const [switchState, setSwitchState] = React.useState("setting");
2023-09-05 16:16:34 +00:00
const { listQuestions } = questionStore();
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-09-05 16:16:34 +00:00
const theme = useTheme();
2023-09-21 07:00:08 +00:00
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
2023-09-15 12:37:12 +00:00
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-10-03 14:03:57 +00:00
const question = listQuestions[quizId][totalIndex] as QuizQuestionVarImg;
2023-09-15 12:37:12 +00:00
2023-08-12 08:31:21 +00:00
const SSHC = (data: string) => {
setSwitchState(data);
};
2023-09-05 16:16:34 +00:00
2023-08-12 08:31:21 +00:00
return (
<>
2023-08-12 08:31:21 +00:00
<Box sx={{ padding: "20px" }}>
2023-09-05 16:16:34 +00:00
<Box sx={{ paddingBottom: "25px" }}>
2023-10-03 14:03:57 +00:00
{question.content.variants.map((_, index) => (
<ButtonBase
key={index}
component="label"
sx={{
display: isTablet ? "none" : "flex",
cursor: "pointer",
alignItems: "center",
justifyContent: "flex-start",
marginBottom: "15px",
}}
>
<input
onChange={({ target }) => {
if (target.files?.length) {
const clonContent = { ...question.content };
clonContent.variants[index].answer = URL.createObjectURL(
target.files[0]
);
updateQuestionsList(quizId, totalIndex, {
content: clonContent,
});
}
}}
hidden
accept="image/*"
multiple
type="file"
/>
<AddImage />
<Typography
2023-09-05 16:16:34 +00:00
sx={{
2023-10-03 14:03:57 +00:00
padding: "0 0 0 20px",
fontWeight: 400,
fontSize: "18px",
lineHeight: "21.33px",
color: theme.palette.grey2.main,
2023-09-05 16:16:34 +00:00
}}
>
2023-10-03 14:03:57 +00:00
Добавьте ответ
</Typography>
</ButtonBase>
))}
2023-09-21 07:00:08 +00:00
<Box
sx={{
width: "100%",
border: "1px solid #9A9AAF",
borderRadius: "8px",
display: isTablet ? "block" : "none",
}}
>
<TextField
fullWidth
focused={false}
placeholder={"Добавьте ответ"}
2023-10-03 14:03:57 +00:00
multiline={question.content.largeCheck}
2023-09-21 07:00:08 +00:00
InputProps={{
startAdornment: (
<>
<InputAdornment position="start">
<PointsIcon />
</InputAdornment>
2023-09-22 07:26:07 +00:00
{!isMobile && (
<AddImage sx={{ h: "100%", margin: "0px 20px" }} />
)}
2023-09-21 07:00:08 +00:00
</>
),
endAdornment: (
<InputAdornment position="end">
<IconButton aria-describedby="my-popover-id">
<MessageIcon />
</IconButton>
2023-09-22 07:26:07 +00:00
<Popover
id="my-popover-id"
anchorOrigin={{ vertical: "bottom", horizontal: "left" }}
open={false}
>
<TextareaAutosize
style={{ margin: "10px" }}
placeholder="Подсказка для этого ответа"
/>
2023-09-21 07:00:08 +00:00
</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 && (
2023-09-22 07:26:07 +00:00
<Box
sx={{
display: "flex",
alignItems: "center",
m: "8px",
position: "relative",
}}
>
<Box
sx={{ width: "100%", background: "#EEE4FC", height: "40px" }}
/>
2023-09-21 07:00:08 +00:00
<ImageAddIcons
2023-09-22 07:26:07 +00:00
style={{
position: "absolute",
color: "#7E2AEA",
fontSize: "20px",
left: "45%",
right: "55%",
}}
2023-09-21 07:00:08 +00:00
/>
<Box
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
width: "20px",
background: "#EEE4FC",
height: "40px",
color: "white",
backgroundColor: "#7E2AEA",
}}
>
+
</Box>
</Box>
)}
</Box>
2023-08-12 08:31:21 +00:00
</Box>
<Box sx={{ display: "flex", alignItems: "center", gap: "10px" }}>
<Link
component="button"
variant="body2"
sx={{ color: theme.palette.brightPurple.main }}
2023-09-05 16:16:34 +00:00
onClick={() => {
2023-10-03 14:03:57 +00:00
const clonContent = { ...question.content };
clonContent.variants.push({ answer: "", hints: "", extendedText: "" });
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-05 16:16:34 +00:00
}}
2023-08-12 08:31:21 +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 />
</>
)}
</Box>
2023-08-12 08:31:21 +00:00
</Box>
2023-09-22 07:26:07 +00:00
<ButtonsOptionsAndPict
switchState={switchState}
SSHC={SSHC}
totalIndex={totalIndex}
/>
2023-08-24 11:09:47 +00:00
<SwitchOptionsAndPict switchState={switchState} totalIndex={totalIndex} />
</>
2023-08-12 08:31:21 +00:00
);
}