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

108 lines
3.3 KiB
TypeScript
Raw Normal View History

2023-09-05 16:16:34 +00:00
import { Box, Link, Typography, ButtonBase, useTheme } from "@mui/material";
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";
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();
const theme = useTheme();
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" }}>
{listQuestions[totalIndex].content.variants.map((_, index) => (
<ButtonBase
component="label"
sx={{
cursor: "pointer",
display: "flex",
alignItems: "center",
justifyContent: "flex-start",
marginBottom: "15px",
}}
>
<input
onChange={({ target }) => {
if (target.files?.length) {
const clonContent = listQuestions[totalIndex].content;
clonContent.variants[index].answer = URL.createObjectURL(
target.files[0]
);
updateQuestionsList(totalIndex, { content: clonContent });
}
}}
hidden
accept="image/*"
multiple
type="file"
/>
<AddImage />
<Typography
sx={{
padding: "0 0 0 20px",
fontWeight: 400,
fontSize: "18px",
lineHeight: "21.33px",
color: theme.palette.grey2.main,
}}
>
Добавьте ответ
</Typography>
</ButtonBase>
))}
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={() => {
const clonContent = listQuestions[totalIndex].content;
clonContent.variants.push({
answer: "",
answerLong: "",
hints: "",
});
updateQuestionsList(totalIndex, { content: clonContent });
}}
2023-08-12 08:31:21 +00:00
>
Добавьте ответ
</Link>
<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-08-24 11:09:47 +00:00
<ButtonsOptionsAndPict
switchState={switchState}
SSHC={SSHC}
totalIndex={totalIndex}
/>
<SwitchOptionsAndPict switchState={switchState} totalIndex={totalIndex} />
</>
2023-08-12 08:31:21 +00:00
);
}