2024-02-21 10:23:25 +00:00
|
|
|
import {Box, TextField as MuiTextField, TextFieldProps, Typography, useTheme} from "@mui/material";
|
2023-12-16 14:55:56 +00:00
|
|
|
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
|
|
|
|
2024-02-12 10:58:51 +00:00
|
|
|
import { updateAnswer, useQuizViewStore } from "@stores/quizView";
|
2023-12-16 14:55:56 +00:00
|
|
|
|
2023-12-17 21:28:57 +00:00
|
|
|
import { sendAnswer } from "@api/quizRelase";
|
2024-02-19 15:04:52 +00:00
|
|
|
import { useQuizData } from "@contexts/QuizDataContext";
|
|
|
|
import { useRootContainerSize } from "@contexts/RootContainerWidthContext";
|
2024-02-08 13:42:31 +00:00
|
|
|
import { enqueueSnackbar } from "notistack";
|
2024-02-21 10:23:25 +00:00
|
|
|
import {ChangeEvent, FC, useEffect, useState} from "react";
|
2023-12-17 22:20:52 +00:00
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2024-02-08 13:42:31 +00:00
|
|
|
import type { QuizQuestionText } from "../../../model/questionTypes/text";
|
2023-12-16 14:55:56 +00:00
|
|
|
|
2024-02-21 10:23:25 +00:00
|
|
|
const TextField = MuiTextField as unknown as FC<TextFieldProps>; // temporary fix ts(2590)
|
|
|
|
|
2023-12-16 14:55:56 +00:00
|
|
|
type TextProps = {
|
2024-02-02 14:35:02 +00:00
|
|
|
currentQuestion: QuizQuestionText;
|
2024-02-20 21:24:27 +00:00
|
|
|
stepNumber: number | null;
|
2023-12-16 14:55:56 +00:00
|
|
|
};
|
|
|
|
|
2024-02-20 21:24:27 +00:00
|
|
|
const Orientation = [
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: false},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
|
|
|
{horizontal: true},
|
2024-02-20 21:40:03 +00:00
|
|
|
{horizontal: true},
|
2024-02-20 21:24:27 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
export const Text = ({ currentQuestion, stepNumber }: TextProps) => {
|
2024-02-02 14:35:02 +00:00
|
|
|
const theme = useTheme();
|
2024-02-20 19:15:53 +00:00
|
|
|
const { settings } = useQuizData();
|
|
|
|
const spec = settings.cfg.spec
|
2024-02-14 11:03:35 +00:00
|
|
|
const { quizId } = useQuizData();
|
2024-02-02 14:35:02 +00:00
|
|
|
const { answers } = useQuizViewStore();
|
2024-02-19 15:04:52 +00:00
|
|
|
const isMobile = useRootContainerSize() < 650;
|
2024-02-02 14:35:02 +00:00
|
|
|
const { answer } = answers.find(({ questionId }) => questionId === currentQuestion.id) ?? {};
|
2024-02-19 14:09:27 +00:00
|
|
|
const [isSending, setIsSending] = useState<boolean>(false);
|
2023-12-16 14:55:56 +00:00
|
|
|
|
2024-02-02 14:35:02 +00:00
|
|
|
const inputHC = useDebouncedCallback(async (text) => {
|
2024-02-19 14:09:27 +00:00
|
|
|
setIsSending(true);
|
2024-02-02 14:35:02 +00:00
|
|
|
try {
|
|
|
|
await sendAnswer({
|
|
|
|
questionId: currentQuestion.id,
|
|
|
|
body: text,
|
2024-02-14 11:03:35 +00:00
|
|
|
qid: quizId,
|
2024-02-02 14:35:02 +00:00
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
enqueueSnackbar("ответ не был засчитан");
|
|
|
|
}
|
2024-02-19 14:09:27 +00:00
|
|
|
|
|
|
|
setIsSending(false);
|
2024-02-02 14:35:02 +00:00
|
|
|
}, 400);
|
2024-02-20 23:28:34 +00:00
|
|
|
useEffect(
|
|
|
|
() => () => {
|
|
|
|
inputHC.flush();
|
|
|
|
},
|
|
|
|
[inputHC]
|
|
|
|
);
|
2024-02-20 21:24:27 +00:00
|
|
|
switch (spec) {
|
|
|
|
case true:
|
2024-02-20 23:42:39 +00:00
|
|
|
return <TextSpecial currentQuestion={currentQuestion} answer={answer} inputHC={inputHC} stepNumber={stepNumber}/>;
|
2024-02-20 21:24:27 +00:00
|
|
|
case undefined:
|
2024-02-20 23:42:39 +00:00
|
|
|
return <TextNormal currentQuestion={currentQuestion} answer={answer} inputHC={inputHC} />;
|
2024-02-20 21:24:27 +00:00
|
|
|
default:
|
2024-02-20 23:42:39 +00:00
|
|
|
return <TextNormal currentQuestion={currentQuestion} answer={answer} inputHC={inputHC} />;
|
2024-02-20 21:24:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-02-20 23:28:34 +00:00
|
|
|
interface Props {
|
|
|
|
currentQuestion: QuizQuestionText;
|
|
|
|
answer: any,
|
2024-02-20 23:42:39 +00:00
|
|
|
inputHC: (a: string) => void;
|
|
|
|
stepNumber?: number | null;
|
2024-02-20 23:28:34 +00:00
|
|
|
}
|
|
|
|
|
2024-02-20 23:42:39 +00:00
|
|
|
const TextNormal = ({currentQuestion, answer, inputHC}: Props) => {
|
2024-02-20 21:24:27 +00:00
|
|
|
const isMobile = useRootContainerSize() < 650;
|
|
|
|
const theme = useTheme();
|
|
|
|
return(
|
2024-02-02 14:35:02 +00:00
|
|
|
<Box>
|
2024-02-19 14:09:27 +00:00
|
|
|
<Typography variant="h5" color={theme.palette.text.primary} sx={{ wordBreak: "break-word" }}>{currentQuestion.title}</Typography>
|
2024-02-02 14:35:02 +00:00
|
|
|
<Box
|
|
|
|
sx={{
|
|
|
|
display: "flex",
|
|
|
|
width: "100%",
|
|
|
|
marginTop: "20px",
|
2024-02-14 03:02:15 +00:00
|
|
|
flexDirection: isMobile ? "column-reverse" : undefined,
|
|
|
|
alignItems: "center"
|
2024-02-02 14:35:02 +00:00
|
|
|
}}
|
|
|
|
>
|
2024-02-20 21:24:27 +00:00
|
|
|
<CustomTextField
|
|
|
|
placeholder={currentQuestion.content.placeholder}
|
|
|
|
value={answer || ""}
|
|
|
|
onChange={async ({ target }) => {
|
|
|
|
updateAnswer(currentQuestion.id, target.value, 0);
|
|
|
|
inputHC(target.value);
|
|
|
|
}}
|
|
|
|
sx={{
|
|
|
|
"&:focus-visible": {
|
|
|
|
borderColor: theme.palette.primary.main
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
2024-02-14 03:02:15 +00:00
|
|
|
{currentQuestion.content.back && currentQuestion.content.back !== " " && (
|
|
|
|
<Box sx={{ maxWidth: "400px", width: "100%", height: "300px", margin: "15px" }}>
|
|
|
|
<img
|
|
|
|
key={currentQuestion.id}
|
|
|
|
src={currentQuestion.content.back}
|
|
|
|
style={{ width: "100%", height: "100%", objectFit: "cover" }}
|
|
|
|
alt=""
|
|
|
|
/>
|
|
|
|
</Box>
|
|
|
|
)}
|
2024-02-02 14:35:02 +00:00
|
|
|
</Box>
|
|
|
|
</Box>
|
2024-02-20 21:24:27 +00:00
|
|
|
)
|
2023-12-16 14:55:56 +00:00
|
|
|
};
|
2024-02-20 21:24:27 +00:00
|
|
|
|
2024-02-20 23:42:39 +00:00
|
|
|
const TextSpecial = ({currentQuestion, answer, inputHC, stepNumber}: Props) => {
|
2024-02-20 21:24:27 +00:00
|
|
|
const theme = useTheme();
|
|
|
|
const isMobile = useRootContainerSize() < 650;
|
2024-02-20 23:42:39 +00:00
|
|
|
const isHorizontal = Orientation[Number(stepNumber) -1].horizontal
|
2024-02-20 21:24:27 +00:00
|
|
|
return(
|
2024-02-20 21:40:03 +00:00
|
|
|
<Box sx={{display: "flex", flexDirection: isMobile? "column" : undefined, alignItems: isMobile ? "center" : undefined,}}>
|
2024-02-20 21:24:27 +00:00
|
|
|
<Box
|
|
|
|
sx={{
|
|
|
|
display: "flex",
|
|
|
|
width: "100%",
|
|
|
|
marginTop: "20px",
|
|
|
|
flexDirection: "column",
|
|
|
|
alignItems: "center",
|
|
|
|
gap: "20px"
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Typography variant="h5" color={theme.palette.text.primary} sx={{ wordBreak: "break-word" }}>{currentQuestion.title}</Typography>
|
|
|
|
{isHorizontal && currentQuestion.content.back && currentQuestion.content.back !== " " && (
|
2024-02-21 09:11:45 +00:00
|
|
|
<Box sx={{margin: "30px", width: "50vw", maxHeight: "550px" }}>
|
2024-02-20 21:24:27 +00:00
|
|
|
<img
|
|
|
|
key={currentQuestion.id}
|
|
|
|
src={currentQuestion.content.back}
|
|
|
|
style={{ width: "100%", height: "100%", objectFit: "cover" }}
|
|
|
|
alt=""
|
|
|
|
/>
|
|
|
|
</Box>
|
|
|
|
)}
|
2024-02-20 23:49:36 +00:00
|
|
|
{
|
|
|
|
(<TextField
|
|
|
|
autoFocus={true}
|
|
|
|
multiline
|
|
|
|
maxRows={4}
|
|
|
|
placeholder={currentQuestion.content.placeholder}
|
|
|
|
value={answer || ""}
|
|
|
|
onChange={async ({ target }:ChangeEvent<HTMLInputElement>) => {
|
|
|
|
updateAnswer(currentQuestion.id, target.value, 0);
|
|
|
|
inputHC(target.value);
|
2024-02-20 21:24:27 +00:00
|
|
|
}
|
2024-02-20 23:49:36 +00:00
|
|
|
}
|
|
|
|
inputProps={{maxLength:400}}
|
|
|
|
sx={{
|
|
|
|
width: "100%",
|
|
|
|
"&:focus-visible": {
|
|
|
|
borderColor: theme.palette.primary.main
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>)
|
|
|
|
}
|
|
|
|
|
2024-02-20 21:24:27 +00:00
|
|
|
</Box>
|
|
|
|
{!isHorizontal && currentQuestion.content.back && currentQuestion.content.back !== " " && (
|
|
|
|
<Box sx={{margin: "15px", width: "40vw" }}>
|
|
|
|
<img
|
|
|
|
key={currentQuestion.id}
|
|
|
|
src={currentQuestion.content.back}
|
|
|
|
style={{ width: "100%", height: "100%", objectFit: "cover" }}
|
|
|
|
alt=""
|
|
|
|
/>
|
|
|
|
</Box>
|
|
|
|
)}
|
|
|
|
</Box>
|
|
|
|
)
|
2024-02-21 10:23:25 +00:00
|
|
|
}
|