Added a button to review the exam from the selected module forward
This commit is contained in:
@@ -1,251 +1,333 @@
|
|||||||
import Button from "@/components/Low/Button";
|
import Button from "@/components/Low/Button";
|
||||||
import ModuleTitle from "@/components/Medium/ModuleTitle";
|
import ModuleTitle from "@/components/Medium/ModuleTitle";
|
||||||
import {moduleResultText} from "@/constants/ielts";
|
import { moduleResultText } from "@/constants/ielts";
|
||||||
import {Module} from "@/interfaces";
|
import { Module } from "@/interfaces";
|
||||||
import {User} from "@/interfaces/user";
|
import { User } from "@/interfaces/user";
|
||||||
import useExamStore from "@/stores/examStore";
|
import useExamStore from "@/stores/examStore";
|
||||||
import {calculateBandScore} from "@/utils/score";
|
import { calculateBandScore } from "@/utils/score";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import {useRouter} from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import {Fragment, useEffect, useState} from "react";
|
import { Fragment, useEffect, useState } from "react";
|
||||||
import {BsArrowCounterclockwise, BsBook, BsClipboard, BsEyeFill, BsHeadphones, BsMegaphone, BsPen, BsShareFill} from "react-icons/bs";
|
import {
|
||||||
import {LevelScore} from "@/constants/ielts";
|
BsArrowCounterclockwise,
|
||||||
import {getLevelScore} from "@/utils/score";
|
BsBook,
|
||||||
|
BsClipboard,
|
||||||
|
BsEyeFill,
|
||||||
|
BsHeadphones,
|
||||||
|
BsMegaphone,
|
||||||
|
BsPen,
|
||||||
|
BsShareFill,
|
||||||
|
} from "react-icons/bs";
|
||||||
|
import { LevelScore } from "@/constants/ielts";
|
||||||
|
import { getLevelScore } from "@/utils/score";
|
||||||
|
import { capitalize } from "lodash";
|
||||||
|
|
||||||
interface Score {
|
interface Score {
|
||||||
module: Module;
|
module: Module;
|
||||||
correct: number;
|
correct: number;
|
||||||
total: number;
|
total: number;
|
||||||
missing: number;
|
missing: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
user: User;
|
user: User;
|
||||||
modules: Module[];
|
modules: Module[];
|
||||||
scores: Score[];
|
scores: Score[];
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
onViewResults: () => void;
|
onViewResults: (moduleIndex?: number) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Finish({user, scores, modules, isLoading, onViewResults}: Props) {
|
export default function Finish({
|
||||||
const [selectedModule, setSelectedModule] = useState(modules[0]);
|
user,
|
||||||
const [selectedScore, setSelectedScore] = useState<Score>(scores.find((x) => x.module === modules[0])!);
|
scores,
|
||||||
|
modules,
|
||||||
|
isLoading,
|
||||||
|
onViewResults,
|
||||||
|
}: Props) {
|
||||||
|
const [selectedModule, setSelectedModule] = useState(modules[0]);
|
||||||
|
const [selectedScore, setSelectedScore] = useState<Score>(
|
||||||
|
scores.find((x) => x.module === modules[0])!,
|
||||||
|
);
|
||||||
|
|
||||||
const exams = useExamStore((state) => state.exams);
|
const exams = useExamStore((state) => state.exams);
|
||||||
|
|
||||||
useEffect(() => setSelectedScore(scores.find((x) => x.module === selectedModule)!), [scores, selectedModule]);
|
useEffect(
|
||||||
|
() => setSelectedScore(scores.find((x) => x.module === selectedModule)!),
|
||||||
|
[scores, selectedModule],
|
||||||
|
);
|
||||||
|
|
||||||
const moduleColors: {[key in Module]: {progress: string; inner: string}} = {
|
const moduleColors: { [key in Module]: { progress: string; inner: string } } =
|
||||||
reading: {
|
{
|
||||||
progress: "text-ielts-reading",
|
reading: {
|
||||||
inner: "bg-ielts-reading-light",
|
progress: "text-ielts-reading",
|
||||||
},
|
inner: "bg-ielts-reading-light",
|
||||||
listening: {
|
},
|
||||||
progress: "text-ielts-listening",
|
listening: {
|
||||||
inner: "bg-ielts-listening-light",
|
progress: "text-ielts-listening",
|
||||||
},
|
inner: "bg-ielts-listening-light",
|
||||||
writing: {
|
},
|
||||||
progress: "text-ielts-writing",
|
writing: {
|
||||||
inner: "bg-ielts-writing-light",
|
progress: "text-ielts-writing",
|
||||||
},
|
inner: "bg-ielts-writing-light",
|
||||||
speaking: {
|
},
|
||||||
progress: "text-ielts-speaking",
|
speaking: {
|
||||||
inner: "bg-ielts-speaking-light",
|
progress: "text-ielts-speaking",
|
||||||
},
|
inner: "bg-ielts-speaking-light",
|
||||||
level: {
|
},
|
||||||
progress: "text-ielts-level",
|
level: {
|
||||||
inner: "bg-ielts-level-light",
|
progress: "text-ielts-level",
|
||||||
},
|
inner: "bg-ielts-level-light",
|
||||||
};
|
},
|
||||||
|
};
|
||||||
|
|
||||||
const getTotalExercises = () => {
|
const getTotalExercises = () => {
|
||||||
const exam = exams.find((x) => x.module === selectedModule)!;
|
const exam = exams.find((x) => x.module === selectedModule)!;
|
||||||
if (exam.module === "reading" || exam.module === "listening") {
|
if (exam.module === "reading" || exam.module === "listening") {
|
||||||
return exam.parts.flatMap((x) => x.exercises).length;
|
return exam.parts.flatMap((x) => x.exercises).length;
|
||||||
}
|
}
|
||||||
|
|
||||||
return exam.exercises.length;
|
return exam.exercises.length;
|
||||||
};
|
};
|
||||||
|
|
||||||
const bandScore: number = calculateBandScore(selectedScore.correct, selectedScore.total, selectedModule, user.focus);
|
const bandScore: number = calculateBandScore(
|
||||||
|
selectedScore.correct,
|
||||||
|
selectedScore.total,
|
||||||
|
selectedModule,
|
||||||
|
user.focus,
|
||||||
|
);
|
||||||
|
|
||||||
const showLevel = (level: number) => {
|
const showLevel = (level: number) => {
|
||||||
if (selectedModule === "level") {
|
if (selectedModule === "level") {
|
||||||
const [levelStr, grade] = getLevelScore(level);
|
const [levelStr, grade] = getLevelScore(level);
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center justify-center gap-1">
|
<div className="flex flex-col items-center justify-center gap-1">
|
||||||
<span className="text-xl font-bold">{levelStr}</span>
|
<span className="text-xl font-bold">{levelStr}</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <span className="text-3xl font-bold">{level}</span>;
|
return <span className="text-3xl font-bold">{level}</span>;
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="flex h-fit min-h-full w-full flex-col items-center justify-between gap-8">
|
<div className="flex h-fit min-h-full w-full flex-col items-center justify-between gap-8">
|
||||||
<ModuleTitle
|
<ModuleTitle
|
||||||
module={selectedModule}
|
module={selectedModule}
|
||||||
totalExercises={getTotalExercises()}
|
totalExercises={getTotalExercises()}
|
||||||
exerciseIndex={getTotalExercises()}
|
exerciseIndex={getTotalExercises()}
|
||||||
minTimer={exams.find((x) => x.module === selectedModule)!.minTimer}
|
minTimer={exams.find((x) => x.module === selectedModule)!.minTimer}
|
||||||
disableTimer
|
disableTimer
|
||||||
/>
|
/>
|
||||||
<div className="flex gap-4 self-start">
|
<div className="flex gap-4 self-start">
|
||||||
{modules.includes("reading") && (
|
{modules.includes("reading") && (
|
||||||
<div
|
<div
|
||||||
onClick={() => setSelectedModule("reading")}
|
onClick={() => setSelectedModule("reading")}
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"hover:bg-ielts-reading flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
"hover:bg-ielts-reading flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
||||||
selectedModule === "reading" ? "bg-ielts-reading text-white" : "bg-mti-gray-smoke text-ielts-reading",
|
selectedModule === "reading"
|
||||||
)}>
|
? "bg-ielts-reading text-white"
|
||||||
<BsBook className="h-6 w-6" />
|
: "bg-mti-gray-smoke text-ielts-reading",
|
||||||
<span className="font-semibold">Reading</span>
|
)}
|
||||||
</div>
|
>
|
||||||
)}
|
<BsBook className="h-6 w-6" />
|
||||||
{modules.includes("listening") && (
|
<span className="font-semibold">Reading</span>
|
||||||
<div
|
</div>
|
||||||
onClick={() => setSelectedModule("listening")}
|
)}
|
||||||
className={clsx(
|
{modules.includes("listening") && (
|
||||||
"hover:bg-ielts-listening flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
<div
|
||||||
selectedModule === "listening" ? "bg-ielts-listening text-white" : "bg-mti-gray-smoke text-ielts-listening",
|
onClick={() => setSelectedModule("listening")}
|
||||||
)}>
|
className={clsx(
|
||||||
<BsHeadphones className="h-6 w-6" />
|
"hover:bg-ielts-listening flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
||||||
<span className="font-semibold">Listening</span>
|
selectedModule === "listening"
|
||||||
</div>
|
? "bg-ielts-listening text-white"
|
||||||
)}
|
: "bg-mti-gray-smoke text-ielts-listening",
|
||||||
{modules.includes("writing") && (
|
)}
|
||||||
<div
|
>
|
||||||
onClick={() => setSelectedModule("writing")}
|
<BsHeadphones className="h-6 w-6" />
|
||||||
className={clsx(
|
<span className="font-semibold">Listening</span>
|
||||||
"hover:bg-ielts-writing flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
</div>
|
||||||
selectedModule === "writing" ? "bg-ielts-writing text-white" : "bg-mti-gray-smoke text-ielts-writing",
|
)}
|
||||||
)}>
|
{modules.includes("writing") && (
|
||||||
<BsPen className="h-6 w-6" />
|
<div
|
||||||
<span className="font-semibold">Writing</span>
|
onClick={() => setSelectedModule("writing")}
|
||||||
</div>
|
className={clsx(
|
||||||
)}
|
"hover:bg-ielts-writing flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
||||||
{modules.includes("speaking") && (
|
selectedModule === "writing"
|
||||||
<div
|
? "bg-ielts-writing text-white"
|
||||||
onClick={() => setSelectedModule("speaking")}
|
: "bg-mti-gray-smoke text-ielts-writing",
|
||||||
className={clsx(
|
)}
|
||||||
"hover:bg-ielts-speaking flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
>
|
||||||
selectedModule === "speaking" ? "bg-ielts-speaking text-white" : "bg-mti-gray-smoke text-ielts-speaking",
|
<BsPen className="h-6 w-6" />
|
||||||
)}>
|
<span className="font-semibold">Writing</span>
|
||||||
<BsMegaphone className="h-6 w-6" />
|
</div>
|
||||||
<span className="font-semibold">Speaking</span>
|
)}
|
||||||
</div>
|
{modules.includes("speaking") && (
|
||||||
)}
|
<div
|
||||||
{modules.includes("level") && (
|
onClick={() => setSelectedModule("speaking")}
|
||||||
<div
|
className={clsx(
|
||||||
onClick={() => setSelectedModule("level")}
|
"hover:bg-ielts-speaking flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
||||||
className={clsx(
|
selectedModule === "speaking"
|
||||||
"hover:bg-ielts-level flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
? "bg-ielts-speaking text-white"
|
||||||
selectedModule === "level" ? "bg-ielts-level text-white" : "bg-mti-gray-smoke text-ielts-level",
|
: "bg-mti-gray-smoke text-ielts-speaking",
|
||||||
)}>
|
)}
|
||||||
<BsClipboard className="h-6 w-6" />
|
>
|
||||||
<span className="font-semibold">Level</span>
|
<BsMegaphone className="h-6 w-6" />
|
||||||
</div>
|
<span className="font-semibold">Speaking</span>
|
||||||
)}
|
</div>
|
||||||
</div>
|
)}
|
||||||
{isLoading && (
|
{modules.includes("level") && (
|
||||||
<div className="absolute left-1/2 top-1/2 flex h-fit w-fit -translate-x-1/2 -translate-y-1/2 animate-pulse flex-col items-center gap-12">
|
<div
|
||||||
<span className={clsx("loading loading-infinity w-32", moduleColors[selectedModule].progress)} />
|
onClick={() => setSelectedModule("level")}
|
||||||
<span className={clsx("text-center text-2xl font-bold", moduleColors[selectedModule].progress)}>
|
className={clsx(
|
||||||
Evaluating your answers, please be patient...
|
"hover:bg-ielts-level flex cursor-pointer items-center gap-2 rounded-xl p-4 transition duration-300 ease-in-out hover:text-white hover:shadow-lg",
|
||||||
<br />
|
selectedModule === "level"
|
||||||
You can also check it later on your records page!
|
? "bg-ielts-level text-white"
|
||||||
</span>
|
: "bg-mti-gray-smoke text-ielts-level",
|
||||||
</div>
|
)}
|
||||||
)}
|
>
|
||||||
{!isLoading && (
|
<BsClipboard className="h-6 w-6" />
|
||||||
<div className="mb-20 mt-32 flex w-full items-center justify-between gap-9">
|
<span className="font-semibold">Level</span>
|
||||||
<span className="max-w-3xl">{moduleResultText(selectedModule, bandScore)}</span>
|
</div>
|
||||||
<div className="flex gap-9 px-16">
|
)}
|
||||||
<div
|
</div>
|
||||||
className={clsx("radial-progress overflow-hidden", moduleColors[selectedModule].progress)}
|
{isLoading && (
|
||||||
style={
|
<div className="absolute left-1/2 top-1/2 flex h-fit w-fit -translate-x-1/2 -translate-y-1/2 animate-pulse flex-col items-center gap-12">
|
||||||
{
|
<span
|
||||||
"--value": (selectedScore.correct / selectedScore.total) * 100,
|
className={clsx(
|
||||||
"--thickness": "12px",
|
"loading loading-infinity w-32",
|
||||||
"--size": "13rem",
|
moduleColors[selectedModule].progress,
|
||||||
} as any
|
)}
|
||||||
}>
|
/>
|
||||||
<div
|
<span
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"flex h-48 w-48 flex-col items-center justify-center rounded-full",
|
"text-center text-2xl font-bold",
|
||||||
moduleColors[selectedModule].inner,
|
moduleColors[selectedModule].progress,
|
||||||
)}>
|
)}
|
||||||
<span className="text-xl">Level</span>
|
>
|
||||||
{showLevel(bandScore)}
|
Evaluating your answers, please be patient...
|
||||||
</div>
|
<br />
|
||||||
</div>
|
You can also check it later on your records page!
|
||||||
{!["writing", "speaking"].includes(selectedModule) ? (
|
</span>
|
||||||
<div className="flex flex-col gap-5 w-28">
|
</div>
|
||||||
<div className="flex gap-2">
|
)}
|
||||||
<div className="bg-mti-red-light mt-1 h-3 w-3 rounded-full" />
|
{!isLoading && (
|
||||||
<div className="flex flex-col">
|
<div className="mb-20 mt-32 flex w-full items-center justify-between gap-9">
|
||||||
<span className="text-mti-red-light">
|
<span className="max-w-3xl">
|
||||||
{(((selectedScore.total - selectedScore.missing) / selectedScore.total) * 100).toFixed(0)}%
|
{moduleResultText(selectedModule, bandScore)}
|
||||||
</span>
|
</span>
|
||||||
<span className="text-lg">Completion</span>
|
<div className="flex gap-9 px-16">
|
||||||
</div>
|
<div
|
||||||
</div>
|
className={clsx(
|
||||||
<div className="flex gap-2">
|
"radial-progress overflow-hidden",
|
||||||
<div className="bg-mti-purple-light mt-1 h-3 w-3 rounded-full" />
|
moduleColors[selectedModule].progress,
|
||||||
<div className="flex flex-col">
|
)}
|
||||||
<span className="text-mti-purple-light">{selectedScore.correct.toString().padStart(2, "0")}</span>
|
style={
|
||||||
<span className="text-lg">Correct</span>
|
{
|
||||||
</div>
|
"--value":
|
||||||
</div>
|
(selectedScore.correct / selectedScore.total) * 100,
|
||||||
<div className="flex gap-2">
|
"--thickness": "12px",
|
||||||
<div className="bg-mti-rose-light mt-1 h-3 w-3 rounded-full" />
|
"--size": "13rem",
|
||||||
<div className="flex flex-col">
|
} as any
|
||||||
<span className="text-mti-rose-light">
|
}
|
||||||
{(selectedScore.total - selectedScore.correct).toString().padStart(2, "0")}
|
>
|
||||||
</span>
|
<div
|
||||||
<span className="text-lg">Wrong</span>
|
className={clsx(
|
||||||
</div>
|
"flex h-48 w-48 flex-col items-center justify-center rounded-full",
|
||||||
</div>
|
moduleColors[selectedModule].inner,
|
||||||
</div>
|
)}
|
||||||
) : (
|
>
|
||||||
<div className="w-28 h-full" />
|
<span className="text-xl">Level</span>
|
||||||
)}
|
{showLevel(bandScore)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
{!["writing", "speaking"].includes(selectedModule) ? (
|
||||||
</div>
|
<div className="flex flex-col gap-5 w-28">
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<div className="bg-mti-red-light mt-1 h-3 w-3 rounded-full" />
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<span className="text-mti-red-light">
|
||||||
|
{(
|
||||||
|
((selectedScore.total - selectedScore.missing) /
|
||||||
|
selectedScore.total) *
|
||||||
|
100
|
||||||
|
).toFixed(0)}
|
||||||
|
%
|
||||||
|
</span>
|
||||||
|
<span className="text-lg">Completion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<div className="bg-mti-purple-light mt-1 h-3 w-3 rounded-full" />
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<span className="text-mti-purple-light">
|
||||||
|
{selectedScore.correct.toString().padStart(2, "0")}
|
||||||
|
</span>
|
||||||
|
<span className="text-lg">Correct</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<div className="bg-mti-rose-light mt-1 h-3 w-3 rounded-full" />
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<span className="text-mti-rose-light">
|
||||||
|
{(selectedScore.total - selectedScore.correct)
|
||||||
|
.toString()
|
||||||
|
.padStart(2, "0")}
|
||||||
|
</span>
|
||||||
|
<span className="text-lg">Wrong</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="w-28 h-full" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
{!isLoading && (
|
{!isLoading && (
|
||||||
<div className="absolute bottom-8 left-0 flex w-full justify-between gap-8 self-end px-8">
|
<div className="absolute bottom-8 left-0 flex w-full justify-between gap-8 self-end px-8">
|
||||||
<div className="flex gap-8">
|
<div className="flex gap-8">
|
||||||
<div className="flex w-fit cursor-pointer flex-col items-center gap-1">
|
<div className="flex w-fit cursor-pointer flex-col items-center gap-1">
|
||||||
<button
|
<button
|
||||||
onClick={() => window.location.reload()}
|
onClick={() => window.location.reload()}
|
||||||
className="bg-mti-purple-light hover:bg-mti-purple flex h-11 w-11 items-center justify-center rounded-full transition duration-300 ease-in-out">
|
className="bg-mti-purple-light hover:bg-mti-purple flex h-11 w-11 items-center justify-center rounded-full transition duration-300 ease-in-out"
|
||||||
<BsArrowCounterclockwise className="h-7 w-7 text-white" />
|
>
|
||||||
</button>
|
<BsArrowCounterclockwise className="h-7 w-7 text-white" />
|
||||||
<span>Play Again</span>
|
</button>
|
||||||
</div>
|
<span>Play Again</span>
|
||||||
<div className="flex w-fit cursor-pointer flex-col items-center gap-1">
|
</div>
|
||||||
<button
|
<div className="flex w-fit cursor-pointer flex-col items-center gap-1">
|
||||||
onClick={onViewResults}
|
<button
|
||||||
className="bg-mti-purple-light hover:bg-mti-purple flex h-11 w-11 items-center justify-center rounded-full transition duration-300 ease-in-out">
|
onClick={() => onViewResults()}
|
||||||
<BsEyeFill className="h-7 w-7 text-white" />
|
className="bg-mti-purple-light hover:bg-mti-purple flex h-11 w-11 items-center justify-center rounded-full transition duration-300 ease-in-out"
|
||||||
</button>
|
>
|
||||||
<span>Review Answers</span>
|
<BsEyeFill className="h-7 w-7 text-white" />
|
||||||
</div>
|
</button>
|
||||||
</div>
|
<span>Review All</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex w-fit cursor-pointer flex-col items-center gap-1">
|
||||||
|
<button
|
||||||
|
onClick={() =>
|
||||||
|
onViewResults(modules.findIndex((x) => x === selectedModule))
|
||||||
|
}
|
||||||
|
className="bg-mti-purple-light hover:bg-mti-purple flex h-11 w-11 items-center justify-center rounded-full transition duration-300 ease-in-out"
|
||||||
|
>
|
||||||
|
<BsEyeFill className="h-7 w-7 text-white" />
|
||||||
|
</button>
|
||||||
|
<span>Review {capitalize(selectedModule)}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<Link href="/" className="w-full max-w-[200px] self-end">
|
<Link href="/" className="w-full max-w-[200px] self-end">
|
||||||
<Button color="purple" className="w-full max-w-[200px] self-end">
|
<Button color="purple" className="w-full max-w-[200px] self-end">
|
||||||
Dashboard
|
Dashboard
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable @next/next/no-img-element */
|
/* eslint-disable @next/next/no-img-element */
|
||||||
import {Module} from "@/interfaces";
|
import { Module } from "@/interfaces";
|
||||||
import {useEffect, useState} from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
|
||||||
import AbandonPopup from "@/components/AbandonPopup";
|
import AbandonPopup from "@/components/AbandonPopup";
|
||||||
import Layout from "@/components/High/Layout";
|
import Layout from "@/components/High/Layout";
|
||||||
@@ -12,437 +12,567 @@ import Selection from "@/exams/Selection";
|
|||||||
import Speaking from "@/exams/Speaking";
|
import Speaking from "@/exams/Speaking";
|
||||||
import Writing from "@/exams/Writing";
|
import Writing from "@/exams/Writing";
|
||||||
import useUser from "@/hooks/useUser";
|
import useUser from "@/hooks/useUser";
|
||||||
import {Exam, UserSolution, Variant} from "@/interfaces/exam";
|
import { Exam, UserSolution, Variant } from "@/interfaces/exam";
|
||||||
import {Stat} from "@/interfaces/user";
|
import { Stat } from "@/interfaces/user";
|
||||||
import useExamStore from "@/stores/examStore";
|
import useExamStore from "@/stores/examStore";
|
||||||
import {evaluateSpeakingAnswer, evaluateWritingAnswer} from "@/utils/evaluation";
|
import {
|
||||||
import {defaultExamUserSolutions, getExam} from "@/utils/exams";
|
evaluateSpeakingAnswer,
|
||||||
|
evaluateWritingAnswer,
|
||||||
|
} from "@/utils/evaluation";
|
||||||
|
import { defaultExamUserSolutions, getExam } from "@/utils/exams";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import {useRouter} from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import {toast, ToastContainer} from "react-toastify";
|
import { toast, ToastContainer } from "react-toastify";
|
||||||
import {v4 as uuidv4} from "uuid";
|
import { v4 as uuidv4 } from "uuid";
|
||||||
import useSessions from "@/hooks/useSessions";
|
import useSessions from "@/hooks/useSessions";
|
||||||
import ShortUniqueId from "short-unique-id";
|
import ShortUniqueId from "short-unique-id";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
page: "exams" | "exercises";
|
page: "exams" | "exercises";
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ExamPage({page}: Props) {
|
export default function ExamPage({ page }: Props) {
|
||||||
const [variant, setVariant] = useState<Variant>("full");
|
const [variant, setVariant] = useState<Variant>("full");
|
||||||
const [avoidRepeated, setAvoidRepeated] = useState(false);
|
const [avoidRepeated, setAvoidRepeated] = useState(false);
|
||||||
const [hasBeenUploaded, setHasBeenUploaded] = useState(false);
|
const [hasBeenUploaded, setHasBeenUploaded] = useState(false);
|
||||||
const [showAbandonPopup, setShowAbandonPopup] = useState(false);
|
const [showAbandonPopup, setShowAbandonPopup] = useState(false);
|
||||||
const [isEvaluationLoading, setIsEvaluationLoading] = useState(false);
|
const [isEvaluationLoading, setIsEvaluationLoading] = useState(false);
|
||||||
const [statsAwaitingEvaluation, setStatsAwaitingEvaluation] = useState<string[]>([]);
|
const [statsAwaitingEvaluation, setStatsAwaitingEvaluation] = useState<
|
||||||
const [timeSpent, setTimeSpent] = useState(0);
|
string[]
|
||||||
|
>([]);
|
||||||
|
const [timeSpent, setTimeSpent] = useState(0);
|
||||||
|
|
||||||
const resetStore = useExamStore((state) => state.reset);
|
const resetStore = useExamStore((state) => state.reset);
|
||||||
const assignment = useExamStore((state) => state.assignment);
|
const assignment = useExamStore((state) => state.assignment);
|
||||||
const initialTimeSpent = useExamStore((state) => state.timeSpent);
|
const initialTimeSpent = useExamStore((state) => state.timeSpent);
|
||||||
|
|
||||||
const examStore = useExamStore;
|
const examStore = useExamStore;
|
||||||
|
|
||||||
const {exam, setExam} = useExamStore((state) => state);
|
const { exam, setExam } = useExamStore((state) => state);
|
||||||
const {exams, setExams} = useExamStore((state) => state);
|
const { exams, setExams } = useExamStore((state) => state);
|
||||||
const {sessionId, setSessionId} = useExamStore((state) => state);
|
const { sessionId, setSessionId } = useExamStore((state) => state);
|
||||||
const {partIndex, setPartIndex} = useExamStore((state) => state);
|
const { partIndex, setPartIndex } = useExamStore((state) => state);
|
||||||
const {moduleIndex, setModuleIndex} = useExamStore((state) => state);
|
const { moduleIndex, setModuleIndex } = useExamStore((state) => state);
|
||||||
const {questionIndex, setQuestionIndex} = useExamStore((state) => state);
|
const { questionIndex, setQuestionIndex } = useExamStore((state) => state);
|
||||||
const {exerciseIndex, setExerciseIndex} = useExamStore((state) => state);
|
const { exerciseIndex, setExerciseIndex } = useExamStore((state) => state);
|
||||||
const {userSolutions, setUserSolutions} = useExamStore((state) => state);
|
const { userSolutions, setUserSolutions } = useExamStore((state) => state);
|
||||||
const {showSolutions, setShowSolutions} = useExamStore((state) => state);
|
const { showSolutions, setShowSolutions } = useExamStore((state) => state);
|
||||||
const {selectedModules, setSelectedModules} = useExamStore((state) => state);
|
const { selectedModules, setSelectedModules } = useExamStore(
|
||||||
|
(state) => state,
|
||||||
|
);
|
||||||
|
|
||||||
const {user} = useUser({redirectTo: "/login"});
|
const { user } = useUser({ redirectTo: "/login" });
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
const reset = () => {
|
const reset = () => {
|
||||||
resetStore();
|
resetStore();
|
||||||
setVariant("full");
|
setVariant("full");
|
||||||
setAvoidRepeated(false);
|
setAvoidRepeated(false);
|
||||||
setHasBeenUploaded(false);
|
setHasBeenUploaded(false);
|
||||||
setShowAbandonPopup(false);
|
setShowAbandonPopup(false);
|
||||||
setIsEvaluationLoading(false);
|
setIsEvaluationLoading(false);
|
||||||
setStatsAwaitingEvaluation([]);
|
setStatsAwaitingEvaluation([]);
|
||||||
setTimeSpent(0);
|
setTimeSpent(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
const saveSession = async () => {
|
const saveSession = async () => {
|
||||||
console.log("Saving your session...");
|
console.log("Saving your session...");
|
||||||
|
|
||||||
await axios.post("/api/sessions", {
|
await axios.post("/api/sessions", {
|
||||||
id: sessionId,
|
id: sessionId,
|
||||||
sessionId,
|
sessionId,
|
||||||
date: new Date().toISOString(),
|
date: new Date().toISOString(),
|
||||||
userSolutions,
|
userSolutions,
|
||||||
moduleIndex,
|
moduleIndex,
|
||||||
selectedModules,
|
selectedModules,
|
||||||
assignment,
|
assignment,
|
||||||
timeSpent,
|
timeSpent,
|
||||||
exams,
|
exams,
|
||||||
exam,
|
exam,
|
||||||
partIndex,
|
partIndex,
|
||||||
exerciseIndex,
|
exerciseIndex,
|
||||||
questionIndex,
|
questionIndex,
|
||||||
user: user?.id,
|
user: user?.id,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => setTimeSpent((prev) => prev + initialTimeSpent), [initialTimeSpent]);
|
useEffect(
|
||||||
|
() => setTimeSpent((prev) => prev + initialTimeSpent),
|
||||||
|
[initialTimeSpent],
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (userSolutions.length === 0 && exams.length > 0) {
|
if (userSolutions.length === 0 && exams.length > 0) {
|
||||||
const defaultSolutions = exams.map(defaultExamUserSolutions).flat();
|
const defaultSolutions = exams.map(defaultExamUserSolutions).flat();
|
||||||
setUserSolutions(defaultSolutions);
|
setUserSolutions(defaultSolutions);
|
||||||
}
|
}
|
||||||
}, [exams, setUserSolutions, userSolutions]);
|
}, [exams, setUserSolutions, userSolutions]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (
|
if (
|
||||||
sessionId.length > 0 &&
|
sessionId.length > 0 &&
|
||||||
userSolutions.length > 0 &&
|
userSolutions.length > 0 &&
|
||||||
selectedModules.length > 0 &&
|
selectedModules.length > 0 &&
|
||||||
exams.length > 0 &&
|
exams.length > 0 &&
|
||||||
!!exam &&
|
!!exam &&
|
||||||
timeSpent > 0 &&
|
timeSpent > 0 &&
|
||||||
!showSolutions &&
|
!showSolutions &&
|
||||||
moduleIndex < selectedModules.length
|
moduleIndex < selectedModules.length
|
||||||
)
|
)
|
||||||
saveSession();
|
saveSession();
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [assignment, exam, exams, moduleIndex, selectedModules, sessionId, userSolutions, user, exerciseIndex, partIndex, questionIndex]);
|
}, [
|
||||||
|
assignment,
|
||||||
|
exam,
|
||||||
|
exams,
|
||||||
|
moduleIndex,
|
||||||
|
selectedModules,
|
||||||
|
sessionId,
|
||||||
|
userSolutions,
|
||||||
|
user,
|
||||||
|
exerciseIndex,
|
||||||
|
partIndex,
|
||||||
|
questionIndex,
|
||||||
|
]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (timeSpent % 20 === 0 && timeSpent > 0 && moduleIndex < selectedModules.length && !showSolutions) saveSession();
|
if (
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
timeSpent % 20 === 0 &&
|
||||||
}, [timeSpent]);
|
timeSpent > 0 &&
|
||||||
|
moduleIndex < selectedModules.length &&
|
||||||
|
!showSolutions
|
||||||
|
)
|
||||||
|
saveSession();
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [timeSpent]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (selectedModules.length > 0 && sessionId.length === 0) {
|
if (selectedModules.length > 0 && sessionId.length === 0) {
|
||||||
const shortUID = new ShortUniqueId();
|
const shortUID = new ShortUniqueId();
|
||||||
setSessionId(shortUID.randomUUID(8));
|
setSessionId(shortUID.randomUUID(8));
|
||||||
}
|
}
|
||||||
}, [setSessionId, selectedModules, sessionId]);
|
}, [setSessionId, selectedModules, sessionId]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (user?.type === "developer") console.log(exam);
|
if (user?.type === "developer") console.log(exam);
|
||||||
}, [exam, user]);
|
}, [exam, user]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (selectedModules.length > 0 && timeSpent === 0 && !showSolutions) {
|
if (selectedModules.length > 0 && timeSpent === 0 && !showSolutions) {
|
||||||
const timerInterval = setInterval(() => {
|
const timerInterval = setInterval(() => {
|
||||||
setTimeSpent((prev) => prev + 1);
|
setTimeSpent((prev) => prev + 1);
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
clearInterval(timerInterval);
|
clearInterval(timerInterval);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [selectedModules.length]);
|
}, [selectedModules.length]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (showSolutions) setModuleIndex(-1);
|
if (showSolutions) setModuleIndex(-1);
|
||||||
}, [setModuleIndex, showSolutions]);
|
}, [setModuleIndex, showSolutions]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
(async () => {
|
(async () => {
|
||||||
if (selectedModules.length > 0 && exams.length > 0 && moduleIndex < selectedModules.length) {
|
if (
|
||||||
const nextExam = exams[moduleIndex];
|
selectedModules.length > 0 &&
|
||||||
|
exams.length > 0 &&
|
||||||
|
moduleIndex < selectedModules.length
|
||||||
|
) {
|
||||||
|
const nextExam = exams[moduleIndex];
|
||||||
|
|
||||||
if (partIndex === -1 && nextExam.module !== "listening") setPartIndex(0);
|
if (partIndex === -1 && nextExam.module !== "listening")
|
||||||
if (exerciseIndex === -1 && !["reading", "listening"].includes(nextExam.module)) setExerciseIndex(0);
|
setPartIndex(0);
|
||||||
setExam(nextExam ? updateExamWithUserSolutions(nextExam) : undefined);
|
if (
|
||||||
}
|
exerciseIndex === -1 &&
|
||||||
})();
|
!["reading", "listening"].includes(nextExam?.module)
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
)
|
||||||
}, [selectedModules, moduleIndex, exams]);
|
setExerciseIndex(0);
|
||||||
|
setExam(nextExam ? updateExamWithUserSolutions(nextExam) : undefined);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [selectedModules, moduleIndex, exams]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
(async () => {
|
(async () => {
|
||||||
if (selectedModules.length > 0 && exams.length === 0) {
|
if (selectedModules.length > 0 && exams.length === 0) {
|
||||||
const examPromises = selectedModules.map((module) =>
|
const examPromises = selectedModules.map((module) =>
|
||||||
getExam(
|
getExam(
|
||||||
module,
|
module,
|
||||||
avoidRepeated,
|
avoidRepeated,
|
||||||
variant,
|
variant,
|
||||||
user?.type === "student" || user?.type === "developer" ? user.preferredGender : undefined,
|
user?.type === "student" || user?.type === "developer"
|
||||||
),
|
? user.preferredGender
|
||||||
);
|
: undefined,
|
||||||
Promise.all(examPromises).then((values) => {
|
),
|
||||||
if (values.every((x) => !!x)) {
|
);
|
||||||
setExams(values.map((x) => x!));
|
Promise.all(examPromises).then((values) => {
|
||||||
} else {
|
if (values.every((x) => !!x)) {
|
||||||
toast.error("Something went wrong, please try again");
|
setExams(values.map((x) => x!));
|
||||||
setTimeout(router.reload, 500);
|
} else {
|
||||||
}
|
toast.error("Something went wrong, please try again");
|
||||||
});
|
setTimeout(router.reload, 500);
|
||||||
}
|
}
|
||||||
})();
|
});
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
}
|
||||||
}, [selectedModules, setExams, exams]);
|
})();
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [selectedModules, setExams, exams]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (selectedModules.length > 0 && exams.length !== 0 && moduleIndex >= selectedModules.length && !hasBeenUploaded && !showSolutions) {
|
if (
|
||||||
const newStats: Stat[] = userSolutions.map((solution) => ({
|
selectedModules.length > 0 &&
|
||||||
...solution,
|
exams.length !== 0 &&
|
||||||
id: solution.id || uuidv4(),
|
moduleIndex >= selectedModules.length &&
|
||||||
timeSpent,
|
!hasBeenUploaded &&
|
||||||
session: sessionId,
|
!showSolutions
|
||||||
exam: solution.exam!,
|
) {
|
||||||
module: solution.module!,
|
const newStats: Stat[] = userSolutions.map((solution) => ({
|
||||||
user: user?.id || "",
|
...solution,
|
||||||
date: new Date().getTime(),
|
id: solution.id || uuidv4(),
|
||||||
isDisabled: solution.isDisabled,
|
timeSpent,
|
||||||
...(assignment ? {assignment: assignment.id} : {}),
|
session: sessionId,
|
||||||
}));
|
exam: solution.exam!,
|
||||||
|
module: solution.module!,
|
||||||
|
user: user?.id || "",
|
||||||
|
date: new Date().getTime(),
|
||||||
|
isDisabled: solution.isDisabled,
|
||||||
|
...(assignment ? { assignment: assignment.id } : {}),
|
||||||
|
}));
|
||||||
|
|
||||||
axios
|
axios
|
||||||
.post<{ok: boolean}>("/api/stats", newStats)
|
.post<{ ok: boolean }>("/api/stats", newStats)
|
||||||
.then((response) => setHasBeenUploaded(response.data.ok))
|
.then((response) => setHasBeenUploaded(response.data.ok))
|
||||||
.catch(() => setHasBeenUploaded(false));
|
.catch(() => setHasBeenUploaded(false));
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [selectedModules, moduleIndex, hasBeenUploaded]);
|
}, [selectedModules, moduleIndex, hasBeenUploaded]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setIsEvaluationLoading(statsAwaitingEvaluation.length !== 0);
|
setIsEvaluationLoading(statsAwaitingEvaluation.length !== 0);
|
||||||
}, [statsAwaitingEvaluation]);
|
}, [statsAwaitingEvaluation]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (statsAwaitingEvaluation.length > 0) {
|
if (statsAwaitingEvaluation.length > 0) {
|
||||||
checkIfStatsHaveBeenEvaluated(statsAwaitingEvaluation);
|
checkIfStatsHaveBeenEvaluated(statsAwaitingEvaluation);
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [statsAwaitingEvaluation]);
|
}, [statsAwaitingEvaluation]);
|
||||||
|
|
||||||
const checkIfStatsHaveBeenEvaluated = (ids: string[]) => {
|
const checkIfStatsHaveBeenEvaluated = (ids: string[]) => {
|
||||||
setTimeout(async () => {
|
setTimeout(async () => {
|
||||||
try {
|
try {
|
||||||
const awaitedStats = await Promise.all(ids.map(async (id) => (await axios.get<Stat>(`/api/stats/${id}`)).data));
|
const awaitedStats = await Promise.all(
|
||||||
const solutionsEvaluated = awaitedStats.every((stat) => stat.solutions.every((x) => x.evaluation !== null));
|
ids.map(
|
||||||
if (solutionsEvaluated) {
|
async (id) => (await axios.get<Stat>(`/api/stats/${id}`)).data,
|
||||||
const statsUserSolutions: UserSolution[] = awaitedStats.map((stat) => ({
|
),
|
||||||
id: stat.id,
|
);
|
||||||
exercise: stat.exercise,
|
const solutionsEvaluated = awaitedStats.every((stat) =>
|
||||||
score: stat.score,
|
stat.solutions.every((x) => x.evaluation !== null),
|
||||||
solutions: stat.solutions,
|
);
|
||||||
type: stat.type,
|
if (solutionsEvaluated) {
|
||||||
exam: stat.exam,
|
const statsUserSolutions: UserSolution[] = awaitedStats.map(
|
||||||
module: stat.module,
|
(stat) => ({
|
||||||
}));
|
id: stat.id,
|
||||||
|
exercise: stat.exercise,
|
||||||
|
score: stat.score,
|
||||||
|
solutions: stat.solutions,
|
||||||
|
type: stat.type,
|
||||||
|
exam: stat.exam,
|
||||||
|
module: stat.module,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
const updatedUserSolutions = userSolutions.map((x) => {
|
const updatedUserSolutions = userSolutions.map((x) => {
|
||||||
const respectiveSolution = statsUserSolutions.find((y) => y.exercise === x.exercise);
|
const respectiveSolution = statsUserSolutions.find(
|
||||||
return respectiveSolution ? respectiveSolution : x;
|
(y) => y.exercise === x.exercise,
|
||||||
});
|
);
|
||||||
|
return respectiveSolution ? respectiveSolution : x;
|
||||||
|
});
|
||||||
|
|
||||||
setUserSolutions(updatedUserSolutions);
|
setUserSolutions(updatedUserSolutions);
|
||||||
return setStatsAwaitingEvaluation((prev) => prev.filter((x) => !ids.includes(x)));
|
return setStatsAwaitingEvaluation((prev) =>
|
||||||
}
|
prev.filter((x) => !ids.includes(x)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return checkIfStatsHaveBeenEvaluated(ids);
|
return checkIfStatsHaveBeenEvaluated(ids);
|
||||||
} catch {
|
} catch {
|
||||||
return checkIfStatsHaveBeenEvaluated(ids);
|
return checkIfStatsHaveBeenEvaluated(ids);
|
||||||
}
|
}
|
||||||
}, 5 * 1000);
|
}, 5 * 1000);
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateExamWithUserSolutions = (exam: Exam): Exam => {
|
const updateExamWithUserSolutions = (exam: Exam): Exam => {
|
||||||
if (exam.module === "reading" || exam.module === "listening") {
|
if (exam.module === "reading" || exam.module === "listening") {
|
||||||
const parts = exam.parts.map((p) =>
|
const parts = exam.parts.map((p) =>
|
||||||
Object.assign(p, {
|
Object.assign(p, {
|
||||||
exercises: p.exercises.map((x) =>
|
exercises: p.exercises.map((x) =>
|
||||||
Object.assign(x, {
|
Object.assign(x, {
|
||||||
userSolutions: userSolutions.find((y) => x.id === y.exercise)?.solutions,
|
userSolutions: userSolutions.find((y) => x.id === y.exercise)
|
||||||
}),
|
?.solutions,
|
||||||
),
|
}),
|
||||||
}),
|
),
|
||||||
);
|
}),
|
||||||
return Object.assign(exam, {parts});
|
);
|
||||||
}
|
return Object.assign(exam, { parts });
|
||||||
|
}
|
||||||
|
|
||||||
const exercises = exam.exercises.map((x) =>
|
const exercises = exam.exercises.map((x) =>
|
||||||
Object.assign(x, {
|
Object.assign(x, {
|
||||||
userSolutions: userSolutions.find((y) => x.id === y.exercise)?.solutions,
|
userSolutions: userSolutions.find((y) => x.id === y.exercise)
|
||||||
}),
|
?.solutions,
|
||||||
);
|
}),
|
||||||
return Object.assign(exam, {exercises});
|
);
|
||||||
};
|
return Object.assign(exam, { exercises });
|
||||||
|
};
|
||||||
|
|
||||||
const onFinish = async (solutions: UserSolution[]) => {
|
const onFinish = async (solutions: UserSolution[]) => {
|
||||||
const solutionIds = solutions.map((x) => x.exercise);
|
const solutionIds = solutions.map((x) => x.exercise);
|
||||||
const solutionExams = solutions.map((x) => x.exam);
|
const solutionExams = solutions.map((x) => x.exam);
|
||||||
|
|
||||||
let newSolutions = [...solutions];
|
let newSolutions = [...solutions];
|
||||||
|
|
||||||
if (exam && !solutionExams.includes(exam.id)) return;
|
if (exam && !solutionExams.includes(exam.id)) return;
|
||||||
|
|
||||||
if (exam && (exam.module === "writing" || exam.module === "speaking") && solutions.length > 0 && !showSolutions) {
|
if (
|
||||||
setHasBeenUploaded(true);
|
exam &&
|
||||||
setIsEvaluationLoading(true);
|
(exam.module === "writing" || exam.module === "speaking") &&
|
||||||
|
solutions.length > 0 &&
|
||||||
|
!showSolutions
|
||||||
|
) {
|
||||||
|
setHasBeenUploaded(true);
|
||||||
|
setIsEvaluationLoading(true);
|
||||||
|
|
||||||
const responses: UserSolution[] = (
|
const responses: UserSolution[] = (
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
exam.exercises.map(async (exercise, index) => {
|
exam.exercises.map(async (exercise, index) => {
|
||||||
const evaluationID = uuidv4();
|
const evaluationID = uuidv4();
|
||||||
if (exercise.type === "writing")
|
if (exercise.type === "writing")
|
||||||
return await evaluateWritingAnswer(exercise, index + 1, solutions.find((x) => x.exercise === exercise.id)!, evaluationID);
|
return await evaluateWritingAnswer(
|
||||||
|
exercise,
|
||||||
|
index + 1,
|
||||||
|
solutions.find((x) => x.exercise === exercise.id)!,
|
||||||
|
evaluationID,
|
||||||
|
);
|
||||||
|
|
||||||
if (exercise.type === "interactiveSpeaking" || exercise.type === "speaking")
|
if (
|
||||||
return await evaluateSpeakingAnswer(exercise, solutions.find((x) => x.exercise === exercise.id)!, evaluationID);
|
exercise.type === "interactiveSpeaking" ||
|
||||||
}),
|
exercise.type === "speaking"
|
||||||
)
|
)
|
||||||
).filter((x) => !!x) as UserSolution[];
|
return await evaluateSpeakingAnswer(
|
||||||
|
exercise,
|
||||||
|
solutions.find((x) => x.exercise === exercise.id)!,
|
||||||
|
evaluationID,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
).filter((x) => !!x) as UserSolution[];
|
||||||
|
|
||||||
newSolutions = [...newSolutions.filter((x) => !responses.map((y) => y.exercise).includes(x.exercise)), ...responses];
|
newSolutions = [
|
||||||
setStatsAwaitingEvaluation((prev) => [...prev, ...responses.filter((x) => !!x).map((r) => (r as any).id)]);
|
...newSolutions.filter(
|
||||||
setHasBeenUploaded(false);
|
(x) => !responses.map((y) => y.exercise).includes(x.exercise),
|
||||||
}
|
),
|
||||||
|
...responses,
|
||||||
|
];
|
||||||
|
setStatsAwaitingEvaluation((prev) => [
|
||||||
|
...prev,
|
||||||
|
...responses.filter((x) => !!x).map((r) => (r as any).id),
|
||||||
|
]);
|
||||||
|
setHasBeenUploaded(false);
|
||||||
|
}
|
||||||
|
|
||||||
axios.get("/api/stats/update");
|
axios.get("/api/stats/update");
|
||||||
|
|
||||||
setUserSolutions([...userSolutions.filter((x) => !solutionIds.includes(x.exercise)), ...newSolutions]);
|
setUserSolutions([
|
||||||
setModuleIndex(moduleIndex + 1);
|
...userSolutions.filter((x) => !solutionIds.includes(x.exercise)),
|
||||||
|
...newSolutions,
|
||||||
|
]);
|
||||||
|
setModuleIndex(moduleIndex + 1);
|
||||||
|
|
||||||
setPartIndex(-1);
|
setPartIndex(-1);
|
||||||
setExerciseIndex(-1);
|
setExerciseIndex(-1);
|
||||||
setQuestionIndex(0);
|
setQuestionIndex(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
const aggregateScoresByModule = (): {module: Module; total: number; missing: number; correct: number}[] => {
|
const aggregateScoresByModule = (): {
|
||||||
const scores: {
|
module: Module;
|
||||||
[key in Module]: {total: number; missing: number; correct: number};
|
total: number;
|
||||||
} = {
|
missing: number;
|
||||||
reading: {
|
correct: number;
|
||||||
total: 0,
|
}[] => {
|
||||||
correct: 0,
|
const scores: {
|
||||||
missing: 0,
|
[key in Module]: { total: number; missing: number; correct: number };
|
||||||
},
|
} = {
|
||||||
listening: {
|
reading: {
|
||||||
total: 0,
|
total: 0,
|
||||||
correct: 0,
|
correct: 0,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
},
|
},
|
||||||
writing: {
|
listening: {
|
||||||
total: 0,
|
total: 0,
|
||||||
correct: 0,
|
correct: 0,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
},
|
},
|
||||||
speaking: {
|
writing: {
|
||||||
total: 0,
|
total: 0,
|
||||||
correct: 0,
|
correct: 0,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
},
|
},
|
||||||
level: {
|
speaking: {
|
||||||
total: 0,
|
total: 0,
|
||||||
correct: 0,
|
correct: 0,
|
||||||
missing: 0,
|
missing: 0,
|
||||||
},
|
},
|
||||||
};
|
level: {
|
||||||
|
total: 0,
|
||||||
|
correct: 0,
|
||||||
|
missing: 0,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
userSolutions.forEach((x) => {
|
userSolutions.forEach((x) => {
|
||||||
const examModule =
|
const examModule =
|
||||||
x.module || (x.type === "writing" ? "writing" : x.type === "speaking" || x.type === "interactiveSpeaking" ? "speaking" : undefined);
|
x.module ||
|
||||||
|
(x.type === "writing"
|
||||||
|
? "writing"
|
||||||
|
: x.type === "speaking" || x.type === "interactiveSpeaking"
|
||||||
|
? "speaking"
|
||||||
|
: undefined);
|
||||||
|
|
||||||
scores[examModule!] = {
|
scores[examModule!] = {
|
||||||
total: scores[examModule!].total + x.score.total,
|
total: scores[examModule!].total + x.score.total,
|
||||||
correct: scores[examModule!].correct + x.score.correct,
|
correct: scores[examModule!].correct + x.score.correct,
|
||||||
missing: scores[examModule!].missing + x.score.missing,
|
missing: scores[examModule!].missing + x.score.missing,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
return Object.keys(scores)
|
return Object.keys(scores)
|
||||||
.filter((x) => scores[x as Module].total > 0)
|
.filter((x) => scores[x as Module].total > 0)
|
||||||
.map((x) => ({module: x as Module, ...scores[x as Module]}));
|
.map((x) => ({ module: x as Module, ...scores[x as Module] }));
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderScreen = () => {
|
const renderScreen = () => {
|
||||||
if (selectedModules.length === 0) {
|
if (selectedModules.length === 0) {
|
||||||
return (
|
return (
|
||||||
<Selection
|
<Selection
|
||||||
page={page}
|
page={page}
|
||||||
user={user!}
|
user={user!}
|
||||||
disableSelection={page === "exams"}
|
disableSelection={page === "exams"}
|
||||||
onStart={(modules: Module[], avoid: boolean, variant: Variant) => {
|
onStart={(modules: Module[], avoid: boolean, variant: Variant) => {
|
||||||
setModuleIndex(0);
|
setModuleIndex(0);
|
||||||
setAvoidRepeated(avoid);
|
setAvoidRepeated(avoid);
|
||||||
setSelectedModules(modules);
|
setSelectedModules(modules);
|
||||||
setVariant(variant);
|
setVariant(variant);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (moduleIndex >= selectedModules.length || moduleIndex === -1) {
|
if (moduleIndex >= selectedModules.length || moduleIndex === -1) {
|
||||||
return (
|
return (
|
||||||
<Finish
|
<Finish
|
||||||
isLoading={isEvaluationLoading}
|
isLoading={isEvaluationLoading}
|
||||||
user={user!}
|
user={user!}
|
||||||
modules={selectedModules}
|
modules={selectedModules}
|
||||||
onViewResults={() => {
|
onViewResults={(index?: number) => {
|
||||||
setShowSolutions(true);
|
setShowSolutions(true);
|
||||||
setModuleIndex(0);
|
setModuleIndex(index || 0);
|
||||||
setExerciseIndex(["reading", "listening"].includes(exams[0].module) ? -1 : 0);
|
setExerciseIndex(
|
||||||
setPartIndex(exams[0].module === "listening" ? -1 : 0);
|
["reading", "listening"].includes(exams[0].module) ? -1 : 0,
|
||||||
setExam(exams[0]);
|
);
|
||||||
}}
|
setPartIndex(exams[0].module === "listening" ? -1 : 0);
|
||||||
scores={aggregateScoresByModule()}
|
setExam(exams[0]);
|
||||||
/>
|
}}
|
||||||
);
|
scores={aggregateScoresByModule()}
|
||||||
}
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (exam && exam.module === "reading") {
|
if (exam && exam.module === "reading") {
|
||||||
return <Reading exam={exam} onFinish={onFinish} showSolutions={showSolutions} />;
|
return (
|
||||||
}
|
<Reading
|
||||||
|
exam={exam}
|
||||||
|
onFinish={onFinish}
|
||||||
|
showSolutions={showSolutions}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (exam && exam.module === "listening") {
|
if (exam && exam.module === "listening") {
|
||||||
return <Listening exam={exam} onFinish={onFinish} showSolutions={showSolutions} />;
|
return (
|
||||||
}
|
<Listening
|
||||||
|
exam={exam}
|
||||||
|
onFinish={onFinish}
|
||||||
|
showSolutions={showSolutions}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (exam && exam.module === "writing") {
|
if (exam && exam.module === "writing") {
|
||||||
return <Writing exam={exam} onFinish={onFinish} showSolutions={showSolutions} />;
|
return (
|
||||||
}
|
<Writing
|
||||||
|
exam={exam}
|
||||||
|
onFinish={onFinish}
|
||||||
|
showSolutions={showSolutions}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (exam && exam.module === "speaking") {
|
if (exam && exam.module === "speaking") {
|
||||||
return <Speaking exam={exam} onFinish={onFinish} showSolutions={showSolutions} />;
|
return (
|
||||||
}
|
<Speaking
|
||||||
|
exam={exam}
|
||||||
|
onFinish={onFinish}
|
||||||
|
showSolutions={showSolutions}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (exam && exam.module === "level") {
|
if (exam && exam.module === "level") {
|
||||||
return <Level exam={exam} onFinish={onFinish} showSolutions={showSolutions} />;
|
return (
|
||||||
}
|
<Level exam={exam} onFinish={onFinish} showSolutions={showSolutions} />
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return <>Loading...</>;
|
return <>Loading...</>;
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ToastContainer />
|
<ToastContainer />
|
||||||
{user && (
|
{user && (
|
||||||
<Layout
|
<Layout
|
||||||
user={user}
|
user={user}
|
||||||
className="justify-between"
|
className="justify-between"
|
||||||
focusMode={selectedModules.length !== 0 && !showSolutions && moduleIndex < selectedModules.length}
|
focusMode={
|
||||||
onFocusLayerMouseEnter={() => setShowAbandonPopup(true)}>
|
selectedModules.length !== 0 &&
|
||||||
<>
|
!showSolutions &&
|
||||||
{renderScreen()}
|
moduleIndex < selectedModules.length
|
||||||
{!showSolutions && moduleIndex < selectedModules.length && (
|
}
|
||||||
<AbandonPopup
|
onFocusLayerMouseEnter={() => setShowAbandonPopup(true)}
|
||||||
isOpen={showAbandonPopup}
|
>
|
||||||
abandonPopupTitle="Leave Exercise"
|
<>
|
||||||
abandonPopupDescription="Are you sure you want to leave the exercise? Your progress will be saved and this exam can be resumed on the Dashboard."
|
{renderScreen()}
|
||||||
abandonConfirmButtonText="Confirm"
|
{!showSolutions && moduleIndex < selectedModules.length && (
|
||||||
onAbandon={() => {
|
<AbandonPopup
|
||||||
reset();
|
isOpen={showAbandonPopup}
|
||||||
}}
|
abandonPopupTitle="Leave Exercise"
|
||||||
onCancel={() => setShowAbandonPopup(false)}
|
abandonPopupDescription="Are you sure you want to leave the exercise? Your progress will be saved and this exam can be resumed on the Dashboard."
|
||||||
/>
|
abandonConfirmButtonText="Confirm"
|
||||||
)}
|
onAbandon={() => {
|
||||||
</>
|
reset();
|
||||||
</Layout>
|
}}
|
||||||
)}
|
onCancel={() => setShowAbandonPopup(false)}
|
||||||
</>
|
/>
|
||||||
);
|
)}
|
||||||
|
</>
|
||||||
|
</Layout>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user