frontPanel/src/pages/Questions/OptionsPicture/OptionsPicture.tsx

281 lines
9.1 KiB
TypeScript
Raw Normal View History

2023-08-28 11:03:25 +00:00
import { useState } from "react";
2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-25 13:43:15 +00:00
import {
Box,
Link,
Typography,
Button,
useTheme,
useMediaQuery,
InputAdornment,
IconButton,
TextareaAutosize,
Popover,
TextField,
} from "@mui/material";
2023-08-28 11:03:25 +00:00
import ButtonsOptions from "../ButtonsOptions";
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-25 13:43:15 +00:00
import { EnterIcon } from "../../../assets/icons/questionsPage/enterIcon";
import AddImage from "../../../assets/icons/questionsPage/addImage";
import SwitchAnswerOptionsPict from "./switchOptionsPict";
2023-08-28 11:03:25 +00:00
import type { ChangeEvent } from "react";
2023-09-25 13:43:15 +00:00
import { PointsIcon } from "@icons/questionsPage/PointsIcon";
import { MessageIcon } from "@icons/messagIcon";
import { DeleteIcon } from "@icons/questionsPage/deleteIcon";
2023-09-21 07:00:08 +00:00
import { ImageAddIcons } from "@icons/ImageAddIcons";
2023-08-24 11:09:47 +00:00
interface Props {
totalIndex: number;
}
2023-08-28 11:03:25 +00:00
2023-08-24 11:09:47 +00:00
export default function OptionsPicture({ totalIndex }: Props) {
const theme = useTheme();
2023-09-15 12:37:12 +00:00
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-08-28 11:03:25 +00:00
const [switchState, setSwitchState] = useState("setting");
const { listQuestions } = questionStore();
2023-08-24 11:09:47 +00:00
const SSHC = (data: string) => {
setSwitchState(data);
};
2023-08-28 11:03:25 +00:00
const addImage = ({ target }: ChangeEvent<HTMLInputElement>) => {
if (target.files?.length) {
2023-09-06 13:20:12 +00:00
const clonContent = listQuestions[quizId][totalIndex].content;
2023-08-28 11:03:25 +00:00
clonContent.images.push(URL.createObjectURL(target.files[0]));
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-08-28 11:03:25 +00:00
}
};
2023-08-24 11:09:47 +00:00
return (
<>
2023-09-25 13:43:15 +00:00
<Box sx={{ pl: "20px", pr: "20px" }}>
<Box
sx={{
display: "flex",
alignItems: "center",
paddingBottom: isMobile ? "15px" : "20px",
marginTop: isMobile ? "15px" : "4px",
height: isMobile ? "auto" : "40px",
marginLeft: isTablet ? "0px" : "60px",
}}
>
<input type="file" hidden onChange={addImage} />
<Box sx={{ display: isTablet ? "none" : "flex", alignItems: "center" }}>
<Box
sx={{
width: "60px",
height: "40px",
background: "#EEE4FC",
display: "flex",
justifyContent: "space-between",
}}
>
2023-10-03 14:41:12 +00:00
<Box
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
width: "100%",
maxHeight: "98px",
}}
>
2023-09-25 13:43:15 +00:00
<ImageAddIcons fontSize="22px" color="#7E2AEA" />
</Box>
<span
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
background: "#7E2AEA",
height: "100%",
width: "25px",
color: "white",
fontSize: "15px",
}}
>
+
</span>
</Box>
2023-09-21 07:00:08 +00:00
<Typography
sx={{
padding: "0 0 0 20px",
fontWeight: 400,
fontSize: "18px",
lineHeight: "21.33px",
color: theme.palette.grey2.main,
}}
>
Добавьте ответ
</Typography>
</Box>
<Box
2023-08-24 11:09:47 +00:00
sx={{
2023-09-21 07:00:08 +00:00
width: "100%",
border: "1px solid #9A9AAF",
borderRadius: "8px",
display: isTablet ? "block" : "none",
2023-08-24 11:09:47 +00:00
}}
>
2023-09-21 07:00:08 +00:00
<TextField
fullWidth
focused={false}
placeholder={"Добавьте ответ"}
multiline={listQuestions[quizId][totalIndex].content.largeCheck}
InputProps={{
startAdornment: (
<>
<InputAdornment position="start">
2023-09-25 13:43:15 +00:00
<PointsIcon style={{ color: "#9A9AAF", fontSize: "30px" }} />
2023-09-21 07:00:08 +00:00
</InputAdornment>
2023-09-25 13:43:15 +00:00
{!isMobile && (
<Box
sx={{
width: "60px",
height: "40px",
background: "#EEE4FC",
display: "flex",
justifyContent: "space-between",
marginRight: "20px",
marginLeft: "12px",
}}
>
<Box sx={{ display: "flex", alignItems: "center", justifyContent: "center", width: "100%" }}>
<ImageAddIcons fontSize="22px" color="#7E2AEA" />
</Box>
<span
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
background: "#7E2AEA",
height: "100%",
width: "25px",
color: "white",
fontSize: "15px",
}}
>
+
</span>
</Box>
)}
2023-09-21 07:00:08 +00:00
</>
),
endAdornment: (
<InputAdornment position="end">
2023-09-25 13:43:15 +00:00
<IconButton sx={{ padding: "0" }} aria-describedby="my-popover-id">
<MessageIcon style={{ color: "#9A9AAF", fontSize: "30px", marginRight: "6.5px" }} />
2023-09-21 07:00:08 +00:00
</IconButton>
2023-10-03 14:41:12 +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>
2023-09-25 13:43:15 +00:00
<IconButton sx={{ padding: "0" }}>
<DeleteIcon style={{ color: theme.palette.grey2.main, marginRight: "-1px" }} />
2023-09-21 07:00:08 +00:00
</IconButton>
</InputAdornment>
),
}}
sx={{
"& .MuiInputBase-root": {
padding: "13.5px",
borderRadius: "10px",
background: "#ffffff",
2023-10-03 14:41:12 +00:00
height: isMobile ? "41px" : "48px",
2023-09-21 07:00:08 +00:00
},
"& .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",
}}
>
2023-10-03 14:41:12 +00:00
<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-24 11:09:47 +00:00
</Box>
2023-09-25 13:43:15 +00:00
<Box
sx={{
display: "flex",
alignItems: "center",
marginBottom: "17px",
}}
>
2023-08-24 11:09:47 +00:00
<Link
component="button"
variant="body2"
2023-09-25 13:43:15 +00:00
sx={{
color: theme.palette.brightPurple.main,
fontWeight: "400",
fontSize: "16px",
mr: "4px",
height: "19px",
}}
2023-08-24 11:09:47 +00:00
>
Добавьте ответ
</Link>
2023-09-15 12:37:12 +00:00
{isMobile ? null : (
<>
<Typography
sx={{
fontWeight: 400,
lineHeight: "21.33px",
color: theme.palette.grey2.main,
2023-09-25 13:43:15 +00:00
fontSize: "16px",
2023-09-15 12:37:12 +00:00
}}
>
или нажмите Enter
</Typography>
2023-09-25 13:43:15 +00:00
<EnterIcon style={{ color: "#7E2AEA", fontSize: "24px", marginLeft: "6px" }} />
2023-09-15 12:37:12 +00:00
</>
)}
2023-08-24 11:09:47 +00:00
</Box>
</Box>
2023-10-03 14:41:12 +00:00
<ButtonsOptions switchState={switchState} SSHC={SSHC} totalIndex={totalIndex} />
<SwitchAnswerOptionsPict switchState={switchState} totalIndex={totalIndex} />
2023-08-24 11:09:47 +00:00
</>
);
}