frontPanel/src/pages/Questions/OwnTextField/settingTextField.tsx

140 lines
4.6 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-08-25 08:29:42 +00:00
import {
Box,
FormControl,
FormControlLabel,
Radio,
RadioGroup,
Typography,
useTheme,
} from "@mui/material";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
2023-09-08 13:42:52 +00:00
import CustomTextField from "@ui_kit/CustomTextField";
2023-08-25 08:29:42 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-09-12 11:06:39 +00:00
import CheckedIcon from "@ui_kit/RadioCheck";
import CheckIcon from "@ui_kit/RadioIcon";
import InfoIcon from "../../../assets/icons/InfoIcon";
2023-08-25 08:29:42 +00:00
type SettingTextFieldProps = {
totalIndex: number;
};
type Answer = {
name: string;
2023-08-28 08:20:09 +00:00
value: "single" | "multi" | "number";
2023-08-25 08:29:42 +00:00
};
const ANSWER_TYPES: Answer[] = [
{ name: "Односточное", value: "single" },
{ name: "Многострочное", value: "multi" },
{ name: "Только числа", value: "number" },
];
export default function SettingTextField({
totalIndex,
}: SettingTextFieldProps) {
const { listQuestions } = questionStore();
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-08-25 08:29:42 +00:00
const theme = useTheme();
return (
2023-09-08 13:42:52 +00:00
<Box
sx={{
display: "flex",
justifyContent: "space-between",
marginRight: "50px",
}}
>
2023-08-25 08:29:42 +00:00
<Box sx={{ padding: "20px" }}>
<Typography>Настройки ответов</Typography>
<FormControl>
<RadioGroup
aria-labelledby="demo-controlled-radio-buttons-group"
name="controlled-radio-buttons-group"
value={ANSWER_TYPES.findIndex(
2023-09-06 13:20:12 +00:00
({ value }) => listQuestions[quizId][totalIndex].content[value]
2023-08-25 08:29:42 +00:00
)}
onChange={({ target }: React.ChangeEvent<HTMLInputElement>) => {
2023-08-28 08:20:09 +00:00
const clonContent = {
2023-09-06 13:20:12 +00:00
...listQuestions[quizId][totalIndex].content,
2023-08-28 08:20:09 +00:00
single: false,
multi: false,
number: false,
[ANSWER_TYPES[Number(target.value)].value]: true,
};
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-08-25 08:29:42 +00:00
}}
>
{ANSWER_TYPES.map(({ name }, index) => (
<FormControlLabel
key={index}
2023-09-12 11:06:39 +00:00
sx={{
color: theme.palette.grey2.main,
"& .MuiRadio-root": { padding: "8px 9px" },
}}
2023-08-25 08:29:42 +00:00
value={index}
2023-09-12 11:06:39 +00:00
control={
<Radio icon={<CheckIcon />} checkedIcon={<CheckedIcon />} />
}
2023-08-25 08:29:42 +00:00
label={name}
/>
))}
</RadioGroup>
</FormControl>
</Box>
2023-09-08 13:42:52 +00:00
<Box sx={{ padding: "20px", display: "flex", flexDirection: "column" }}>
2023-08-25 08:29:42 +00:00
<Typography>Настройки вопросов</Typography>
2023-09-08 13:42:52 +00:00
<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 });
}}
/>
)}
2023-08-25 08:29:42 +00:00
</Box>
</Box>
);
}