63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import {renderExercise} from "@/components/Exercises";
|
|
import ModuleTitle from "@/components/Medium/ModuleTitle";
|
|
import {renderSolution} from "@/components/Solutions";
|
|
import {infoButtonStyle} from "@/constants/buttonStyles";
|
|
import {UserSolution, WritingExam} from "@/interfaces/exam";
|
|
import {mdiArrowRight} from "@mdi/js";
|
|
import Icon from "@mdi/react";
|
|
import clsx from "clsx";
|
|
import {Fragment, useEffect, useState} from "react";
|
|
import {toast} from "react-toastify";
|
|
|
|
interface Props {
|
|
exam: WritingExam;
|
|
showSolutions?: boolean;
|
|
onFinish: (userSolutions: UserSolution[]) => void;
|
|
}
|
|
|
|
export default function Writing({exam, showSolutions = false, onFinish}: Props) {
|
|
const [exerciseIndex, setExerciseIndex] = useState(0);
|
|
const [userSolutions, setUserSolutions] = useState<UserSolution[]>([]);
|
|
|
|
const nextExercise = (solution?: UserSolution) => {
|
|
if (solution) {
|
|
setUserSolutions((prev) => [...prev.filter((x) => x.exercise !== solution.exercise), solution]);
|
|
}
|
|
|
|
if (exerciseIndex + 1 < exam.exercises.length) {
|
|
setExerciseIndex((prev) => prev + 1);
|
|
return;
|
|
}
|
|
|
|
if (solution) {
|
|
onFinish(
|
|
[...userSolutions.filter((x) => x.exercise !== solution.exercise), solution].map((x) => ({...x, module: "writing", exam: exam.id})),
|
|
);
|
|
} else {
|
|
onFinish(userSolutions.map((x) => ({...x, module: "writing", exam: exam.id})));
|
|
}
|
|
};
|
|
|
|
const previousExercise = () => {
|
|
if (exerciseIndex > 0) {
|
|
setExerciseIndex((prev) => prev - 1);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="flex flex-col h-full w-full gap-8 items-center">
|
|
<ModuleTitle minTimer={exam.minTimer} exerciseIndex={exerciseIndex + 1} module="writing" totalExercises={exam.exercises.length} />
|
|
{exerciseIndex > -1 &&
|
|
exerciseIndex < exam.exercises.length &&
|
|
!showSolutions &&
|
|
renderExercise(exam.exercises[exerciseIndex], nextExercise, previousExercise)}
|
|
{exerciseIndex > -1 &&
|
|
exerciseIndex < exam.exercises.length &&
|
|
showSolutions &&
|
|
renderSolution(exam.exercises[exerciseIndex], nextExercise, previousExercise)}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|