133 lines
4.3 KiB
TypeScript
133 lines
4.3 KiB
TypeScript
import { useParams } from "react-router-dom";
|
||
import {
|
||
Box,
|
||
FormControl,
|
||
FormControlLabel,
|
||
Radio,
|
||
RadioGroup,
|
||
Typography,
|
||
useTheme,
|
||
} from "@mui/material";
|
||
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
||
import CustomTextField from "@ui_kit/CustomTextField";
|
||
|
||
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 (
|
||
<Box
|
||
sx={{
|
||
display: "flex",
|
||
justifyContent: "space-between",
|
||
marginRight: "50px",
|
||
}}
|
||
>
|
||
<Box sx={{ padding: "20px" }}>
|
||
<Typography>Настройки ответов</Typography>
|
||
<FormControl>
|
||
<RadioGroup
|
||
aria-labelledby="demo-controlled-radio-buttons-group"
|
||
name="controlled-radio-buttons-group"
|
||
value={ANSWER_TYPES.findIndex(
|
||
({ value }) => listQuestions[quizId][totalIndex].content[value]
|
||
)}
|
||
onChange={({ target }: React.ChangeEvent<HTMLInputElement>) => {
|
||
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) => (
|
||
<FormControlLabel
|
||
key={index}
|
||
sx={{ color: theme.palette.grey2.main }}
|
||
value={index}
|
||
control={<Radio />}
|
||
label={name}
|
||
/>
|
||
))}
|
||
</RadioGroup>
|
||
</FormControl>
|
||
</Box>
|
||
<Box sx={{ padding: "20px", display: "flex", flexDirection: "column" }}>
|
||
<Typography>Настройки вопросов</Typography>
|
||
<CustomCheckbox
|
||
label={"Автозаполнение адреса"}
|
||
checked={listQuestions[quizId][totalIndex].content.autofill}
|
||
handleChange={({ target }) => {
|
||
const clonContent = listQuestions[quizId][totalIndex].content;
|
||
clonContent.autofill = target.checked;
|
||
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
||
}}
|
||
/>
|
||
<CustomCheckbox
|
||
label={"Необязательный вопрос"}
|
||
checked={!listQuestions[quizId][totalIndex].required}
|
||
handleChange={(e) => {
|
||
updateQuestionsList(quizId, totalIndex, {
|
||
required: !e.target.checked,
|
||
});
|
||
}}
|
||
/>
|
||
<Box sx={{ display: "flex", alignItems: "center" }}>
|
||
<CustomCheckbox
|
||
label={"Внутреннее название вопроса"}
|
||
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
|
||
handleChange={(e) => {
|
||
let clonContent = listQuestions[quizId][totalIndex].content;
|
||
clonContent.innerNameCheck = e.target.checked;
|
||
|
||
if (!e.target.checked) {
|
||
clonContent.innerName = "";
|
||
}
|
||
|
||
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
||
}}
|
||
/>{" "}
|
||
<InfoIcon />
|
||
</Box>
|
||
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
|
||
<CustomTextField
|
||
placeholder={"Развёрнутое описание вопроса"}
|
||
text={listQuestions[quizId][totalIndex].content.innerName}
|
||
onChange={({ target }) => {
|
||
let clonContent = listQuestions[quizId][totalIndex].content;
|
||
clonContent.innerName = target.value;
|
||
updateQuestionsList(quizId, totalIndex, { content: clonContent });
|
||
}}
|
||
/>
|
||
)}
|
||
</Box>
|
||
</Box>
|
||
);
|
||
}
|