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

383 lines
17 KiB
TypeScript
Raw Normal View History

2023-09-20 17:39:17 +00:00
import {
2023-10-12 15:20:46 +00:00
Box,
IconButton,
2023-10-19 10:34:48 +00:00
InputAdornment,
Link,
2023-10-12 15:20:46 +00:00
Popover,
TextField,
2023-10-19 10:34:48 +00:00
TextareaAutosize,
Typography,
useMediaQuery,
useTheme
2023-09-20 17:39:17 +00:00
} from "@mui/material";
2023-10-19 10:34:48 +00:00
import { useState } from "react";
2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-10-01 12:48:39 +00:00
import { CropModal } from "@ui_kit/Modal/CropModal";
2023-10-19 10:34:48 +00:00
import { AnswerDraggableList } from "../AnswerDraggableList";
2023-10-01 12:48:39 +00:00
import { UploadImageModal } from "../UploadImage/UploadImageModal";
2023-09-21 07:00:08 +00:00
import { ImageAddIcons } from "@icons/ImageAddIcons";
2023-09-25 13:43:15 +00:00
import { MessageIcon } from "@icons/messagIcon";
2023-10-19 10:34:48 +00:00
import { PointsIcon } from "@icons/questionsPage/PointsIcon";
2023-09-25 13:43:15 +00:00
import { DeleteIcon } from "@icons/questionsPage/deleteIcon";
2023-10-19 10:34:48 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
import { EnterIcon } from "../../../assets/icons/questionsPage/enterIcon";
import ButtonsOptionsAndPict from "../ButtonsOptionsAndPict";
import SwitchOptionsAndPict from "./switchOptionsAndPict";
2023-09-21 07:00:08 +00:00
2023-10-19 10:34:48 +00:00
import AddOrEditImageButton from "@ui_kit/AddOrEditImageButton";
2023-10-12 15:20:46 +00:00
import { produce } from "immer";
2023-10-19 10:34:48 +00:00
import type { QuizQuestionVarImg } from "../../../model/questionTypes/varimg";
import { openCropModal } from "@root/cropModal";
2023-10-03 14:03:57 +00:00
interface Props {
2023-10-12 15:20:46 +00:00
totalIndex: number;
}
2023-08-12 08:31:21 +00:00
export default function OptionsAndPicture({ totalIndex }: Props) {
2023-10-19 10:34:48 +00:00
const [isUploadImageModalOpen, setIsUploadImageModalOpen] = useState(false);
2023-10-12 15:20:46 +00:00
const [switchState, setSwitchState] = useState("setting");
const [currentIndex, setCurrentIndex] = useState<number>(0);
const quizId = Number(useParams().quizId);
const { listQuestions } = questionStore();
const theme = useTheme();
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
const isMobile = useMediaQuery(theme.breakpoints.down(790));
const question = listQuestions[quizId][totalIndex] as QuizQuestionVarImg;
2023-09-15 12:37:12 +00:00
2023-10-12 15:20:46 +00:00
const SSHC = (data: string) => {
setSwitchState(data);
};
2023-09-05 16:16:34 +00:00
2023-10-12 15:20:46 +00:00
const uploadImage = (files: FileList | null) => {
if (files?.length) {
const [file] = Array.from(files);
2023-10-01 12:48:39 +00:00
2023-10-12 15:20:46 +00:00
const clonedContent = { ...question.content };
clonedContent.variants[currentIndex].extendedText =
URL.createObjectURL(file);
updateQuestionsList<QuizQuestionVarImg>(quizId, totalIndex, {
content: clonedContent,
});
2023-10-01 12:48:39 +00:00
2023-10-19 10:34:48 +00:00
setIsUploadImageModalOpen(false);
openCropModal(
question.content.variants[currentIndex]?.extendedText,
question.content.variants[currentIndex]?.originalImageUrl
);
2023-10-12 15:20:46 +00:00
}
};
2023-10-01 12:48:39 +00:00
2023-10-12 15:20:46 +00:00
return (
<>
<Box sx={{ pl: "20px", pr: "20px" }}>
<AnswerDraggableList
variants={question.content.variants}
totalIndex={totalIndex}
additionalContent={(variant, index) => (
<>
{!isMobile && (
2023-10-19 10:34:48 +00:00
<AddOrEditImageButton
imageSrc={variant.extendedText}
onImageClick={() => {
if (!("originalImageUrl" in variant)) return;
2023-10-12 15:20:46 +00:00
setCurrentIndex(index);
if (variant.extendedText) return openCropModal(
variant.extendedText,
variant.originalImageUrl
);
2023-10-19 10:34:48 +00:00
setIsUploadImageModalOpen(true);
2023-10-12 15:20:46 +00:00
}}
2023-10-19 10:34:48 +00:00
onPlusClick={() => {
setCurrentIndex(index);
setIsUploadImageModalOpen(true);
}}
sx={{ mx: "10px" }}
/>
2023-10-12 15:20:46 +00:00
)}
</>
)}
additionalMobile={(variant, index) => (
<>
{isMobile && (
2023-10-19 10:34:48 +00:00
<AddOrEditImageButton
imageSrc={variant.extendedText}
onImageClick={() => {
if (!("originalImageUrl" in variant)) return;
2023-10-12 15:20:46 +00:00
setCurrentIndex(index);
if (variant.extendedText) return openCropModal(
variant.extendedText,
variant.originalImageUrl
);
2023-10-19 10:34:48 +00:00
setIsUploadImageModalOpen(true);
2023-10-12 15:20:46 +00:00
}}
2023-10-19 10:34:48 +00:00
onPlusClick={() => {
setCurrentIndex(index);
setIsUploadImageModalOpen(true);
2023-10-12 15:20:46 +00:00
}}
2023-10-19 10:34:48 +00:00
sx={{ m: "8px", width: "auto" }}
/>
2023-10-12 15:20:46 +00:00
)}
</>
)}
/>
<UploadImageModal
2023-10-19 10:34:48 +00:00
open={isUploadImageModalOpen}
onClose={() => setIsUploadImageModalOpen(false)}
2023-10-12 15:20:46 +00:00
imgHC={uploadImage}
/>
<CropModal
onSaveImageClick={url => {
2023-10-12 15:20:46 +00:00
const content = produce(question.content, draft => {
draft.variants[currentIndex].extendedText = url;
});
updateQuestionsList<QuizQuestionVarImg>(quizId, totalIndex, {
content,
});
}}
/>
2023-09-25 13:43:15 +00:00
<Box
2023-10-01 12:48:39 +00:00
sx={{
2023-10-12 15:20:46 +00:00
width: "100%",
border: "1px solid #9A9AAF",
borderRadius: "8px",
display: isTablet ? "block" : "none",
2023-10-01 12:48:39 +00:00
}}
2023-10-12 15:20:46 +00:00
>
<TextField
fullWidth
focused={false}
placeholder={"Добавьте ответ"}
multiline={question.content.largeCheck}
InputProps={{
startAdornment: (
<>
<InputAdornment position="start">
<PointsIcon
style={{ color: "#9A9AAF", fontSize: "30px" }}
/>
</InputAdornment>
{!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>
)}
</>
),
endAdornment: (
<InputAdornment position="end">
<IconButton
sx={{ padding: "0" }}
aria-describedby="my-popover-id"
>
<MessageIcon
style={{
color: "#9A9AAF",
fontSize: "30px",
marginRight: "6.5px",
}}
/>
</IconButton>
<Popover
id="my-popover-id"
anchorOrigin={{ vertical: "bottom", horizontal: "left" }}
open={false}
>
<TextareaAutosize
style={{ margin: "10px" }}
placeholder="Подсказка для этого ответа"
/>
</Popover>
<IconButton sx={{ padding: "0" }}>
<DeleteIcon
style={{
color: theme.palette.grey2.main,
marginRight: "-1px",
}}
/>
</IconButton>
</InputAdornment>
),
2023-10-01 12:48:39 +00:00
}}
2023-09-25 13:43:15 +00:00
sx={{
2023-10-12 15:20:46 +00:00
"& .MuiInputBase-root": {
padding: "13.5px",
borderRadius: "10px",
background: "#ffffff",
height: "48px",
},
"& .MuiOutlinedInput-notchedOutline": {
border: "none",
},
2023-09-25 13:43:15 +00:00
}}
2023-10-12 15:20:46 +00:00
inputProps={{
sx: { fontSize: "18px", lineHeight: "21px", py: 0 },
2023-10-01 12:48:39 +00:00
}}
/>
2023-10-12 15:20:46 +00:00
{isMobile && (
<Box
sx={{
display: "flex",
alignItems: "center",
m: "8px",
position: "relative",
}}
>
<Box
sx={{ width: "100%", background: "#EEE4FC", height: "40px" }}
/>
<ImageAddIcons
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
sx={{ width: "100%", background: "#EEE4FC", height: "40px" }}
/>
<ImageAddIcons
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>
</Box>
)}
</Box>
2023-09-21 07:00:08 +00:00
<Box
2023-10-12 15:20:46 +00:00
sx={{
display: "flex",
alignItems: "center",
marginBottom: "17px",
}}
2023-09-21 07:00:08 +00:00
>
2023-10-12 15:20:46 +00:00
<Link
component="button"
variant="body2"
sx={{
color: theme.palette.brightPurple.main,
fontWeight: "400",
fontSize: "16px",
mr: "4px",
height: "19px",
}}
onClick={() => {
const clonedContent = { ...question.content };
clonedContent.variants.push({
answer: "",
hints: "",
extendedText: "",
originalImageUrl: "",
2023-10-12 15:20:46 +00:00
});
updateQuestionsList<QuizQuestionVarImg>(quizId, totalIndex, {
content: clonedContent,
});
}}
>
Добавьте ответ
</Link>
{isMobile ? null : (
<>
<Typography
sx={{
fontWeight: 400,
lineHeight: "21.33px",
color: theme.palette.grey2.main,
fontSize: "16px",
}}
>
или нажмите Enter
</Typography>
<EnterIcon
style={{
color: "#7E2AEA",
fontSize: "24px",
marginLeft: "6px",
}}
/>
</>
)}
2023-09-21 07:00:08 +00:00
</Box>
2023-10-01 12:48:39 +00:00
</Box>
2023-10-12 15:20:46 +00:00
<ButtonsOptionsAndPict
switchState={switchState}
SSHC={SSHC}
totalIndex={totalIndex}
/>
<SwitchOptionsAndPict switchState={switchState} totalIndex={totalIndex} />
</>
);
2023-08-12 08:31:21 +00:00
}