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

192 lines
6.4 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,
2023-09-18 12:34:41 +00:00
Tooltip,
2023-09-15 12:37:12 +00:00
useMediaQuery,
2023-08-25 08:29:42 +00:00
useTheme,
} from "@mui/material";
2023-09-20 09:07:33 +00:00
import { useDebouncedCallback } from "use-debounce";
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
2023-10-03 14:03:57 +00:00
import type { QuizQuestionText } from "../../../model/questionTypes/text";
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[] = [
2023-09-15 13:48:58 +00:00
{ name: "Однострочное", value: "single" },
2023-08-25 08:29:42 +00:00
{ name: "Многострочное", value: "multi" },
{ name: "Только числа", value: "number" },
];
2023-09-25 13:43:15 +00:00
export default function SettingTextField({ totalIndex }: SettingTextFieldProps) {
2023-08-25 08:29:42 +00:00
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();
2023-09-26 21:11:27 +00:00
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
2023-09-15 12:37:12 +00:00
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-10-03 14:03:57 +00:00
const question = listQuestions[quizId][totalIndex] as QuizQuestionText;
2023-09-25 13:43:15 +00:00
const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990));
2023-09-20 09:07:33 +00:00
const debounced = useDebouncedCallback((value) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionText>(quizId, totalIndex, {
2023-10-03 14:03:57 +00:00
content: { ...question.content, innerName: value },
});
2023-09-20 09:07:33 +00:00
}, 1000);
2023-08-25 08:29:42 +00:00
return (
2023-09-08 13:42:52 +00:00
<Box
sx={{
display: "flex",
justifyContent: "space-between",
2023-09-26 21:11:27 +00:00
flexDirection: isWrappColumn ? "column" : null,
2023-09-26 23:38:26 +00:00
marginRight: isFigmaTablte ? "0px" : "32px",
2023-09-08 13:42:52 +00:00
}}
>
2023-09-25 13:43:15 +00:00
<Box
sx={{
pt: isMobile ? "25px" : "20px",
pb: isMobile ? "25px" : "20px",
pl: "20px",
}}
>
<Typography sx={{ fontWeight: "500", fontSize: "18px", color: " #4D4D4D", marginBottom: "14px" }}>
Настройки ответов
</Typography>
2023-08-25 08:29:42 +00:00
<FormControl>
<RadioGroup
2023-09-25 13:43:15 +00:00
sx={{ display: "flex", flexDirection: "column", gap: "14px", width: "100%" }}
2023-08-25 08:29:42 +00:00
aria-labelledby="demo-controlled-radio-buttons-group"
name="controlled-radio-buttons-group"
2023-10-04 11:56:51 +00:00
value={ANSWER_TYPES.findIndex(
({ value }) => question.content.answerType === value
)}
2023-08-25 08:29:42 +00:00
onChange={({ target }: React.ChangeEvent<HTMLInputElement>) => {
2023-10-04 11:56:51 +00:00
updateQuestionsList<QuizQuestionText>(quizId, totalIndex, {
content: {
...question.content,
answerType: ANSWER_TYPES[Number(target.value)].value,
},
});
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={{
2023-09-25 13:43:15 +00:00
height: "26px",
2023-09-12 11:06:39 +00:00
color: theme.palette.grey2.main,
"& .MuiRadio-root": { padding: "8px 9px" },
}}
2023-08-25 08:29:42 +00:00
value={index}
2023-09-25 13:43:15 +00:00
control={<Radio icon={<CheckIcon />} checkedIcon={<CheckedIcon />} />}
2023-08-25 08:29:42 +00:00
label={name}
/>
))}
</RadioGroup>
</FormControl>
</Box>
2023-09-25 13:43:15 +00:00
<Box
sx={{
pt: isMobile ? "0px" : "20px",
pb: "20px",
2023-09-26 21:11:27 +00:00
pl: isFigmaTablte ? (isWrappColumn ? "20px" : "34px") : "20px",
2023-10-03 14:41:12 +00:00
pr: "20px",
2023-09-25 13:43:15 +00:00
display: "flex",
flexDirection: "column",
2023-10-03 14:41:12 +00:00
gap: "14px",
2023-09-25 13:43:15 +00:00
}}
>
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
Настройки вопросов
</Typography>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
2023-10-03 14:41:12 +00:00
sx={{
display: isMobile ? "flex" : "block",
mr: isMobile ? "0px" : "16px",
alignItems: isMobile ? "flex-end" : "center",
}}
2023-09-08 13:42:52 +00:00
label={"Автозаполнение адреса"}
2023-10-03 14:03:57 +00:00
checked={question.content.autofill}
2023-09-08 13:42:52 +00:00
handleChange={({ target }) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionText>(quizId, totalIndex, {
2023-10-03 14:03:57 +00:00
content: { ...question.content, autofill: target.checked },
});
2023-09-08 13:42:52 +00:00
}}
/>
<CustomCheckbox
2023-10-03 14:41:12 +00:00
sx={{
display: isMobile ? "flex" : "block",
mr: isMobile ? "0px" : "16px",
alignItems: isMobile ? "flex-end" : "center",
}}
2023-09-08 13:42:52 +00:00
label={"Необязательный вопрос"}
2023-10-03 14:03:57 +00:00
checked={!question.required}
2023-09-08 13:42:52 +00:00
handleChange={(e) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionText>(quizId, totalIndex, {
2023-09-08 13:42:52 +00:00
required: !e.target.checked,
});
}}
/>
2023-10-03 14:03:57 +00:00
<Box
sx={{
width: isMobile ? "90%" : "auto",
display: "flex",
alignItems: "center",
}}
>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
2023-10-03 14:41:12 +00:00
sx={{
alignItems: isMobile ? "flex-start" : "center",
display: isMobile ? "flex" : "block",
mr: isMobile ? "0px" : "16px",
height: isMobile ? "100%" : "26px",
}}
2023-09-08 13:42:52 +00:00
label={"Внутреннее название вопроса"}
2023-10-03 14:03:57 +00:00
checked={question.content.innerNameCheck}
handleChange={({ target }) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionText>(quizId, totalIndex, {
2023-10-03 14:03:57 +00:00
content: {
...question.content,
innerNameCheck: target.checked,
innerName: target.checked ? question.content.innerName : "",
},
});
2023-09-08 13:42:52 +00:00
}}
2023-09-18 12:34:41 +00:00
/>
2023-09-25 13:43:15 +00:00
<Tooltip title="Будет отображаться как заголовок вопроса в приходящих заявках." placement="top">
2023-09-18 12:34:41 +00:00
<Box>
<InfoIcon />
</Box>
</Tooltip>
2023-09-08 13:42:52 +00:00
</Box>
2023-10-03 14:03:57 +00:00
{question.content.innerNameCheck && (
2023-09-08 13:42:52 +00:00
<CustomTextField
placeholder={"Развёрнутое описание вопроса"}
2023-10-03 14:03:57 +00:00
text={question.content.innerName}
2023-09-20 09:07:33 +00:00
onChange={({ target }) => debounced(target.value)}
2023-09-08 13:42:52 +00:00
/>
)}
2023-08-25 08:29:42 +00:00
</Box>
</Box>
);
}