frontPanel/src/pages/Questions/Emoji/settingEmoji.tsx

164 lines
5.0 KiB
TypeScript
Raw Normal View History

import type { QuestionType, QuizQuestionEmoji, QuizQuestionVariant } from "@frontend/squzanswerer";
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
import { updateQuestion } from "@root/questions/actions";
import CustomCheckbox from "@ui_kit/CustomCheckbox";
import { memo } from "react";
import CustomTextField from "@ui_kit/CustomTextField";
import { useAddAnswer } from "@/utils/hooks/useAddAnswer";
2023-10-03 14:03:57 +00:00
2023-09-06 07:30:27 +00:00
type SettingEmojiProps = {
question: QuizQuestionEmoji;
questionId: string;
isRequired: boolean;
2024-05-29 16:41:41 +00:00
isMulti: boolean;
isOwn: boolean;
isLargeCheck?: boolean;
2023-09-06 07:30:27 +00:00
};
const SettingEmoji = memo<SettingEmojiProps>(function ({ question, questionId, isRequired, isLargeCheck, isMulti, isOwn }) {
2023-12-31 02:53:25 +00:00
const theme = useTheme();
const {switchOwn} = useAddAnswer();
2023-12-31 02:53:25 +00:00
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(790));
2023-09-25 13:43:15 +00:00
const setOwnPlaceholder = (replText: string) => {
updateQuestion(questionId, (question) => {
if (question.type !== "varimg") return;
question.content.ownPlaceholder = replText;
});
};
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
2024-05-29 16:41:41 +00:00
sx={{
boxSizing: "border-box",
pt: "20px",
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
dataCy="checkbox-long-text-answer"
sx={{ mr: isMobile ? "0px" : "16px" }}
label={"Многострочный ответ"}
checked={isLargeCheck}
handleChange={({ target }) => {
updateQuestion<QuizQuestionVariant>(questionId, (question) => {
question.content.largeCheck = target.checked;
});
}}
/> */}
2024-05-29 16:41:41 +00:00
<CustomCheckbox
dataCy="checkbox-multiple-answers"
sx={{ mr: isMobile ? "0px" : "16px" }}
label={"Можно несколько"}
checked={isMulti}
handleChange={({ target }) => {
updateQuestion<QuizQuestionVariant>(questionId, (question) => {
question.content.multi = target.checked;
});
}}
/>
<CustomCheckbox
dataCy="checkbox-own-answer"
sx={{ mr: isMobile ? "0px" : "16px" }}
label={'Вариант "свой ответ"'}
checked={isOwn}
handleChange={({ target }) => {
switchOwn({question, checked:target.checked})
2024-05-29 16:41:41 +00:00
}}
/>
{/* <Box sx={{ mt: isMobile ? "11px" : "6px", width: "100%" }}>
<Typography
sx={{
height: isMobile ? "18px" : "auto",
fontWeight: "500",
fontSize: "18px",
color: " #4D4D4D",
mb: "14px",
}}
>
Подсказка "своего ответа"
</Typography>
<CustomTextField
sx={{
maxWidth: "330px",
width: "100%",
mr: isMobile ? "0px" : "16px",
}}
maxLength={60}
placeholder={"мой ответ: три"}
value={ownPlaceholder}
onChange={({ target }) => setOwnPlaceholder(target.value)}
/>
</Box> */}
</Box>
2023-12-31 02:53:25 +00:00
<Box
sx={{
pt: "20px",
2023-12-31 02:53:25 +00:00
pr: isFigmaTablte ? "30px" : "20px",
display: "flex",
flexDirection: "column",
gap: "14px",
width: isMobile ? "auto" : "100%",
}}
>
<Typography
sx={{
height: isMobile ? "18px" : "auto",
fontWeight: "500",
fontSize: "18px",
color: " #4D4D4D",
}}
>
Настройки вопросов
</Typography>
<CustomCheckbox
dataCy="checkbox-optional-question"
2023-12-31 02:53:25 +00:00
sx={{ mr: isMobile ? "0px" : "16px" }}
label={"Необязательный вопрос"}
checked={!isRequired}
2023-12-31 02:53:25 +00:00
handleChange={({ target }) =>
updateQuestion<QuizQuestionEmoji>(questionId, (question) => {
2023-12-31 02:53:25 +00:00
if (question.type !== "emoji") return;
2023-12-31 02:53:25 +00:00
question.content.required = !target.checked;
})
}
/>
</Box>
</Box>
);
});
SettingEmoji.displayName = "SettingEmoji";
export default SettingEmoji;