import { useState } from "react"; import { useParams } from "react-router-dom"; import { Box, Link, Typography, Button, useTheme, useMediaQuery } from "@mui/material"; import ButtonsOptions from "../ButtonsOptions"; import { questionStore, updateQuestionsList } from "@root/questions"; import EnterIcon from "../../../assets/icons/questionsPage/enterIcon"; import AddImage from "../../../assets/icons/questionsPage/addImage"; import SwitchAnswerOptionsPict from "./switchOptionsPict"; import type { ChangeEvent } from "react"; interface Props { totalIndex: number; } export default function OptionsPicture({ totalIndex }: Props) { const theme = useTheme(); const isTablet = useMediaQuery(theme.breakpoints.down(1000)); const isMobile = useMediaQuery(theme.breakpoints.down(790)); const quizId = Number(useParams().quizId); const [switchState, setSwitchState] = useState("setting"); const { listQuestions } = questionStore(); const SSHC = (data: string) => { setSwitchState(data); }; const addImage = ({ target }: ChangeEvent) => { if (target.files?.length) { const clonContent = listQuestions[quizId][totalIndex].content; clonContent.images.push(URL.createObjectURL(target.files[0])); updateQuestionsList(quizId, totalIndex, { content: clonContent }); } }; return ( <> Добавьте ответ { // console.info("I'm a button."); // }} > Добавьте ответ {isMobile ? null : ( <> или нажмите Enter )} ); }