2024-06-19 20:22:37 +00:00
|
|
|
|
import type { QuizQuestionVarImg, QuizQuestionVariant } from "@frontend/squzanswerer";
|
2024-02-26 15:56:07 +00:00
|
|
|
|
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
|
|
|
|
|
|
import { updateQuestion } from "@root/questions/actions";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2024-02-29 11:23:52 +00:00
|
|
|
|
import { memo } from "react";
|
2023-10-03 14:03:57 +00:00
|
|
|
|
|
2023-09-07 14:14:48 +00:00
|
|
|
|
type SettingOptionsAndPictProps = {
|
2024-02-29 11:23:52 +00:00
|
|
|
|
questionId: string;
|
|
|
|
|
|
replText: string;
|
|
|
|
|
|
isRequired: boolean;
|
2024-05-29 16:41:41 +00:00
|
|
|
|
isOwn: boolean;
|
2023-09-07 14:14:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2024-05-29 16:41:41 +00:00
|
|
|
|
const SettingOptionsAndPict = memo<SettingOptionsAndPictProps>(function ({ questionId, replText, isRequired, isOwn }) {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
|
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
|
|
|
|
|
|
const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990));
|
2024-05-29 16:41:41 +00:00
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(985));
|
2023-12-31 02:53:25 +00:00
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(680));
|
|
|
|
|
|
|
2024-02-26 15:56:07 +00:00
|
|
|
|
const setReplText = (replText: string) => {
|
2024-02-29 11:23:52 +00:00
|
|
|
|
updateQuestion(questionId, (question) => {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
if (question.type !== "varimg") return;
|
2023-09-25 13:43:15 +00:00
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
|
question.content.replText = replText;
|
|
|
|
|
|
});
|
2024-02-26 15:56:07 +00:00
|
|
|
|
};
|
2023-11-16 16:41:25 +00:00
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Box
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
display: "flex",
|
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
|
flexDirection: isWrappColumn ? "column" : "none",
|
2024-05-29 16:41:41 +00:00
|
|
|
|
pb: "20px",
|
|
|
|
|
|
pl: "20px",
|
|
|
|
|
|
pt: isTablet ? "5px" : "0px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Box
|
|
|
|
|
|
sx={{
|
2024-05-29 16:41:41 +00:00
|
|
|
|
pt: "20px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
|
gap: "14px",
|
|
|
|
|
|
maxWidth: isFigmaTablte ? "297px" : "360px",
|
|
|
|
|
|
width: "100%",
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2024-07-07 17:12:27 +00:00
|
|
|
|
{/* <Typography
|
2023-12-31 02:53:25 +00:00
|
|
|
|
sx={{
|
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
Настройки ответов
|
2024-07-07 17:12:27 +00:00
|
|
|
|
</Typography> */}
|
|
|
|
|
|
{/* <CustomCheckbox
|
2024-05-29 16:41:41 +00:00
|
|
|
|
dataCy="checkbox-own-answer"
|
|
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
|
|
|
|
|
label={'Вариант "свой ответ"'}
|
|
|
|
|
|
checked={isOwn}
|
|
|
|
|
|
handleChange={({ target }) => {
|
|
|
|
|
|
updateQuestion<QuizQuestionVariant>(questionId, (question) => {
|
|
|
|
|
|
question.content.own = target.checked;
|
|
|
|
|
|
});
|
|
|
|
|
|
}}
|
2024-07-07 17:12:27 +00:00
|
|
|
|
/> */}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
{!isWrappColumn && (
|
|
|
|
|
|
<Box sx={{ mt: isMobile ? "11px" : "6px", width: "100%" }}>
|
|
|
|
|
|
<Typography
|
2023-10-03 14:03:57 +00:00
|
|
|
|
sx={{
|
2023-12-31 02:53:25 +00:00
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
|
mb: "14px",
|
2023-10-03 14:03:57 +00:00
|
|
|
|
}}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
>
|
|
|
|
|
|
Текст-заглушка на картинке
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
<CustomTextField
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
maxWidth: "330px",
|
|
|
|
|
|
width: "100%",
|
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
|
}}
|
2024-02-11 19:21:12 +00:00
|
|
|
|
maxLength={60}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
placeholder={"Пример текста"}
|
2024-02-29 11:23:52 +00:00
|
|
|
|
value={replText}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
onChange={({ target }) => setReplText(target.value)}
|
|
|
|
|
|
/>
|
2023-09-26 23:38:26 +00:00
|
|
|
|
</Box>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
)}
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Box
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
pt: isMobile ? "0px" : "20px",
|
|
|
|
|
|
pr: isFigmaTablte ? "19px" : "20px",
|
|
|
|
|
|
display: "flex",
|
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
|
gap: isMobile ? "13px" : "14px",
|
|
|
|
|
|
width: isMobile ? "auto" : "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-31 02:53:25 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
|
|
|
|
|
label={"Необязательный вопрос"}
|
2024-02-29 11:23:52 +00:00
|
|
|
|
checked={!isRequired}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
handleChange={({ target }) =>
|
2024-02-29 11:23:52 +00:00
|
|
|
|
updateQuestion<QuizQuestionVarImg>(questionId, (question) => {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
if (question.type !== "varimg") return;
|
|
|
|
|
|
|
|
|
|
|
|
question.content.required = !target.checked;
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{isWrappColumn && (
|
2024-05-29 16:41:41 +00:00
|
|
|
|
<Box
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
pt: "20px",
|
|
|
|
|
|
display: "flex",
|
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
|
gap: "14px",
|
|
|
|
|
|
maxWidth: isFigmaTablte ? "297px" : "360px",
|
|
|
|
|
|
width: "100%",
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<Typography
|
|
|
|
|
|
sx={{
|
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
Текст-заглушка на картинке
|
|
|
|
|
|
</Typography>
|
|
|
|
|
|
<CustomTextField
|
|
|
|
|
|
sx={{ maxWidth: "360px", width: "100%" }}
|
|
|
|
|
|
placeholder={"Пример текста"}
|
2024-02-29 11:23:52 +00:00
|
|
|
|
value={replText}
|
2024-02-11 19:21:12 +00:00
|
|
|
|
maxLength={60}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
onChange={({ target }) => setReplText(target.value)}
|
|
|
|
|
|
/>
|
2024-05-29 16:41:41 +00:00
|
|
|
|
</Box>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
)}
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
2024-02-29 11:23:52 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
SettingOptionsAndPict.displayName = "SettingOptionsAndPict";
|
|
|
|
|
|
|
|
|
|
|
|
export default SettingOptionsAndPict;
|