2024-02-26 15:56:07 +00:00
|
|
|
|
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
|
|
|
|
|
import { updateQuestion } from "@root/questions/actions";
|
2023-03-15 22:56:53 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-10-04 09:07:59 +00:00
|
|
|
|
import type { QuizQuestionVariant } from "../../../model/questionTypes/variant";
|
2024-02-29 11:23:52 +00:00
|
|
|
|
import { memo } from "react";
|
2023-10-04 09:07:59 +00:00
|
|
|
|
|
2023-07-11 10:43:04 +00:00
|
|
|
|
interface Props {
|
2024-02-29 11:23:52 +00:00
|
|
|
|
questionId: string;
|
|
|
|
|
isRequired: boolean;
|
2023-07-11 10:43:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 11:23:52 +00:00
|
|
|
|
const ResponseSettings = memo<Props>(function ({ questionId, isRequired }) {
|
2023-12-13 18:19:12 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(900));
|
|
|
|
|
const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990));
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
2023-08-25 11:18:25 +00:00
|
|
|
|
|
2023-12-13 18:19:12 +00:00
|
|
|
|
return (
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
flexDirection: isTablet ? "column" : "none",
|
|
|
|
|
marginRight: isFigmaTablte ? (isMobile ? "0" : "0px") : "30px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
boxSizing: "border-box",
|
2024-01-04 15:18:29 +00:00
|
|
|
|
pt: "20px",
|
2023-12-13 18:19:12 +00:00
|
|
|
|
pb: "20px",
|
|
|
|
|
pl: isFigmaTablte ? (isTablet ? "20px" : "34px") : "28px",
|
|
|
|
|
pr: isFigmaTablte ? "19px" : "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "14px",
|
|
|
|
|
width: "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
|
|
|
|
<CustomCheckbox
|
2024-01-10 10:43:04 +00:00
|
|
|
|
dataCy="checkbox-optional-question"
|
2023-12-13 18:19:12 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
|
|
|
|
label={"Необязательный вопрос"}
|
2024-02-29 11:23:52 +00:00
|
|
|
|
checked={!isRequired}
|
2023-12-13 18:19:12 +00:00
|
|
|
|
handleChange={({ target }) => {
|
2024-02-29 11:23:52 +00:00
|
|
|
|
updateQuestion<QuizQuestionVariant>(questionId, (question) => {
|
2023-12-13 18:19:12 +00:00
|
|
|
|
question.content.required = !target.checked;
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
2024-02-29 11:23:52 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ResponseSettings.displayName = "ResponseSettings";
|
|
|
|
|
|
|
|
|
|
export default ResponseSettings;
|