2023-12-16 14:55:56 +00:00
|
|
|
import {
|
|
|
|
Box,
|
|
|
|
Typography,
|
|
|
|
RadioGroup,
|
|
|
|
FormControlLabel,
|
|
|
|
Radio,
|
|
|
|
useTheme,
|
|
|
|
} from "@mui/material";
|
|
|
|
|
2023-12-17 13:22:21 +00:00
|
|
|
import gag from "./gag.png"
|
2023-12-16 14:55:56 +00:00
|
|
|
|
2023-12-17 21:28:57 +00:00
|
|
|
import { useQuestionsStore } from "@root/quizData/store"
|
2023-12-17 13:22:21 +00:00
|
|
|
import { useQuizViewStore, updateAnswer, deleteAnswer } from "@root/quizView/store";
|
2023-12-16 14:55:56 +00:00
|
|
|
|
|
|
|
import RadioCheck from "@ui_kit/RadioCheck";
|
|
|
|
import RadioIcon from "@ui_kit/RadioIcon";
|
|
|
|
|
|
|
|
import type { QuizQuestionVarImg } from "../../../model/questionTypes/varimg";
|
2023-12-17 21:28:57 +00:00
|
|
|
import { enqueueSnackbar } from "notistack";
|
|
|
|
import { sendAnswer } from "@api/quizRelase";
|
2023-12-16 14:55:56 +00:00
|
|
|
|
|
|
|
type VarimgProps = {
|
|
|
|
currentQuestion: QuizQuestionVarImg;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Varimg = ({ currentQuestion }: VarimgProps) => {
|
2023-12-17 21:28:57 +00:00
|
|
|
const { settings } = useQuestionsStore()
|
2023-12-16 14:55:56 +00:00
|
|
|
const { answers } = useQuizViewStore();
|
|
|
|
const theme = useTheme();
|
|
|
|
const { answer } =
|
|
|
|
answers.find(
|
2023-12-17 13:22:21 +00:00
|
|
|
({ questionId }) => questionId === currentQuestion.id
|
2023-12-16 14:55:56 +00:00
|
|
|
) ?? {};
|
|
|
|
const variant = currentQuestion.content.variants.find(
|
|
|
|
({ id }) => answer === id
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Box>
|
|
|
|
<Typography variant="h5">{currentQuestion.title}</Typography>
|
|
|
|
<Box sx={{ display: "flex", marginTop: "20px" }}>
|
|
|
|
<RadioGroup
|
2023-12-17 13:22:21 +00:00
|
|
|
name={currentQuestion.id.toString()}
|
2023-12-16 14:55:56 +00:00
|
|
|
value={currentQuestion.content.variants.findIndex(
|
|
|
|
({ id }) => answer === id
|
|
|
|
)}
|
|
|
|
sx={{
|
|
|
|
display: "flex",
|
|
|
|
flexWrap: "wrap",
|
|
|
|
flexDirection: "row",
|
|
|
|
justifyContent: "space-between",
|
|
|
|
flexBasis: "100%",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Box sx={{ display: "flex", flexDirection: "column", width: "100%" }}>
|
|
|
|
{currentQuestion.content.variants.map((variant, index) => (
|
|
|
|
<FormControlLabel
|
|
|
|
key={variant.id}
|
|
|
|
sx={{
|
|
|
|
marginBottom: "15px",
|
|
|
|
borderRadius: "5px",
|
|
|
|
padding: "15px",
|
|
|
|
color: "#4D4D4D",
|
|
|
|
border: `1px solid ${theme.palette.grey2.main}`,
|
|
|
|
display: "flex",
|
|
|
|
}}
|
|
|
|
value={index}
|
2023-12-17 21:28:57 +00:00
|
|
|
onClick={async(event) => {
|
2023-12-16 14:55:56 +00:00
|
|
|
event.preventDefault();
|
|
|
|
|
2023-12-17 21:28:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
await sendAnswer({
|
|
|
|
questionId: currentQuestion.id,
|
|
|
|
body: currentQuestion.content.variants[index].id,
|
|
|
|
//@ts-ignore
|
|
|
|
qid: settings.qid
|
|
|
|
})
|
|
|
|
|
|
|
|
updateAnswer(
|
|
|
|
currentQuestion.id,
|
|
|
|
currentQuestion.content.variants[index].id
|
|
|
|
);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
enqueueSnackbar("ответ не был засчитан")
|
|
|
|
}
|
|
|
|
|
2023-12-16 14:55:56 +00:00
|
|
|
|
|
|
|
if (answer === currentQuestion.content.variants[index].id) {
|
2023-12-17 13:22:21 +00:00
|
|
|
deleteAnswer(currentQuestion.id);
|
2023-12-16 14:55:56 +00:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
control={
|
|
|
|
<Radio checkedIcon={<RadioCheck />} icon={<RadioIcon />} />
|
|
|
|
}
|
|
|
|
label={variant.answer}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</Box>
|
|
|
|
</RadioGroup>
|
|
|
|
{/* {(variant?.extendedText || currentQuestion.content.back) && ( */}
|
2023-12-17 13:22:21 +00:00
|
|
|
<Box
|
|
|
|
sx={{
|
|
|
|
maxWidth: "450px",
|
|
|
|
width: "100%",
|
|
|
|
height: "450px",
|
|
|
|
border: "1px solid #9A9AAF",
|
|
|
|
borderRadius: "12px",
|
|
|
|
overflow: "hidden",
|
|
|
|
display: "flex",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
|
|
|
backgroundColor: "#9A9AAF12",
|
|
|
|
color: "#9A9AAF"
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{
|
|
|
|
answer ?
|
|
|
|
<img
|
|
|
|
src={
|
|
|
|
variant?.extendedText || gag
|
|
|
|
}
|
2023-12-16 14:55:56 +00:00
|
|
|
style={{ width: "100%", height: "100%", objectFit: "cover" }}
|
|
|
|
alt=""
|
|
|
|
/>
|
2023-12-17 13:22:21 +00:00
|
|
|
:
|
|
|
|
(variant?.extendedText || "Выберите вариант ответа слева")
|
|
|
|
}
|
|
|
|
|
|
|
|
</Box>
|
|
|
|
{/* )} */}
|
2023-12-16 14:55:56 +00:00
|
|
|
</Box>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|