import { useParams } from "react-router-dom"; import { Box, FormControl, FormControlLabel, Radio, RadioGroup, Typography, useTheme, } from "@mui/material"; import CustomCheckbox from "@ui_kit/CustomCheckbox"; import { questionStore, updateQuestionsList } from "@root/questions"; import InfoIcon from "../../../assets/icons/InfoIcon"; type SettingTextFieldProps = { totalIndex: number; }; type Answer = { name: string; value: "single" | "multi" | "number"; }; const ANSWER_TYPES: Answer[] = [ { name: "Односточное", value: "single" }, { name: "Многострочное", value: "multi" }, { name: "Только числа", value: "number" }, ]; export default function SettingTextField({ totalIndex, }: SettingTextFieldProps) { const { listQuestions } = questionStore(); const quizId = Number(useParams().quizId); const theme = useTheme(); return ( Настройки ответов listQuestions[quizId][totalIndex].content[value] )} onChange={({ target }: React.ChangeEvent) => { const clonContent = { ...listQuestions[quizId][totalIndex].content, single: false, multi: false, number: false, [ANSWER_TYPES[Number(target.value)].value]: true, }; updateQuestionsList(quizId, totalIndex, { content: clonContent }); }} > {ANSWER_TYPES.map(({ name }, index) => ( } label={name} /> ))} Настройки вопросов ); }