import { useParams } from "react-router-dom"; import { Box, FormControl, FormControlLabel, Radio, RadioGroup, Typography, Tooltip, useMediaQuery, useTheme, } from "@mui/material"; import { useDebouncedCallback } from "use-debounce"; import CustomCheckbox from "@ui_kit/CustomCheckbox"; import CustomTextField from "@ui_kit/CustomTextField"; import { questionStore, updateQuestionsList } from "@root/questions"; import CheckedIcon from "@ui_kit/RadioCheck"; import CheckIcon from "@ui_kit/RadioIcon"; import InfoIcon from "../../../assets/icons/InfoIcon"; import type { QuizQuestionText } from "../../../model/questionTypes/text"; type SettingTextFieldProps = { totalIndex: number; }; type Answer = { name: string; value: "single" | "multi"; }; const ANSWER_TYPES: Answer[] = [ { name: "Однострочное", value: "single" }, { name: "Многострочное", value: "multi" }, ]; export default function SettingTextField({ totalIndex, }: SettingTextFieldProps) { const { listQuestions } = questionStore(); const quizId = Number(useParams().quizId); const theme = useTheme(); const isWrappColumn = useMediaQuery(theme.breakpoints.down(980)); const isMobile = useMediaQuery(theme.breakpoints.down(790)); const question = listQuestions[quizId][totalIndex] as QuizQuestionText; const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990)); const debounced = useDebouncedCallback((value) => { updateQuestionsList(quizId, totalIndex, { content: { ...question.content, innerName: value }, }); }, 1000); return ( Настройки ответов question.content.answerType === value )} onChange={({ target }: React.ChangeEvent) => { updateQuestionsList(quizId, totalIndex, { content: { ...question.content, answerType: ANSWER_TYPES[Number(target.value)].value, }, }); }} > {ANSWER_TYPES.map(({ name }, index) => ( } checkedIcon={} /> } label={name} /> ))} { updateQuestionsList(quizId, totalIndex, { content: { ...question.content, onlyNumbers: target.checked }, }); }} /> Настройки вопросов { updateQuestionsList(quizId, totalIndex, { content: { ...question.content, autofill: target.checked }, }); }} /> { updateQuestionsList(quizId, totalIndex, { required: !e.target.checked, }); }} /> { updateQuestionsList(quizId, totalIndex, { content: { ...question.content, innerNameCheck: target.checked, innerName: target.checked ? question.content.innerName : "", }, }); }} /> {question.content.innerNameCheck && ( debounced(target.value)} /> )} ); }