fix(exam): fix pretest screen start exam button

This commit is contained in:
shafin-r
2025-07-07 21:01:11 +06:00
parent 22eb8285ec
commit d42a42a8d1
10 changed files with 122 additions and 128 deletions

View File

@ -32,7 +32,6 @@ export default function PaperScreen() {
method: "GET", method: "GET",
}); });
const fetchedQuestionData: Mock[] = await questionResponse.json(); const fetchedQuestionData: Mock[] = await questionResponse.json();
console.log(fetchedQuestionData[0]?.id);
setQuestions(fetchedQuestionData); setQuestions(fetchedQuestionData);
} catch (error) { } catch (error) {
setErrorMsg(error instanceof Error ? error.message : "An error occurred"); setErrorMsg(error instanceof Error ? error.message : "An error occurred");
@ -93,6 +92,8 @@ export default function PaperScreen() {
displayTabTitle={null} displayTabTitle={null}
displayUser={false} displayUser={false}
displaySubject={name} displaySubject={name}
image={undefined}
examDuration={undefined}
/> />
<div className="mx-10 pt-10 overflow-y-auto"> <div className="mx-10 pt-10 overflow-y-auto">
<div className="border border-[#c0dafc] flex flex-col gap-4 w-full rounded-[25px] p-4"> <div className="border border-[#c0dafc] flex flex-col gap-4 w-full rounded-[25px] p-4">

View File

@ -1,7 +1,7 @@
"use client"; "use client";
import { useParams, useRouter, useSearchParams } from "next/navigation";
import React, { useEffect, useState, useCallback } from "react"; import React, { useEffect, useState, useCallback } from "react";
import { useParams, useRouter, useSearchParams } from "next/navigation";
import { useTimer } from "@/context/TimerContext"; import { useTimer } from "@/context/TimerContext";
import { useExam } from "@/context/ExamContext"; import { useExam } from "@/context/ExamContext";
import { API_URL, getToken } from "@/lib/auth"; import { API_URL, getToken } from "@/lib/auth";
@ -16,11 +16,10 @@ interface Question {
interface QuestionItemProps { interface QuestionItemProps {
question: Question; question: Question;
selectedAnswer: string | undefined; selectedAnswer?: string;
handleSelect: (questionId: number, option: string) => void; handleSelect: (questionId: number, option: string) => void;
} }
// Components
const QuestionItem = React.memo<QuestionItemProps>( const QuestionItem = React.memo<QuestionItemProps>(
({ question, selectedAnswer, handleSelect }) => ( ({ question, selectedAnswer, handleSelect }) => (
<div className="border border-[#8abdff]/50 rounded-2xl p-4"> <div className="border border-[#8abdff]/50 rounded-2xl p-4">
@ -55,16 +54,10 @@ QuestionItem.displayName = "QuestionItem";
export default function ExamPage() { export default function ExamPage() {
const router = useRouter(); const router = useRouter();
const params = useParams(); const { id } = useParams();
const searchParams = useSearchParams(); const time = useSearchParams().get("time");
const [isSubmitting, setIsSubmitting] = useState(false);
const id = params.id as string;
const time = searchParams.get("time");
const { setInitialTime, stopTimer } = useTimer(); const { setInitialTime, stopTimer } = useTimer();
// Use exam context instead of local state
const { const {
currentAttempt, currentAttempt,
setAnswer, setAnswer,
@ -75,85 +68,77 @@ export default function ExamPage() {
isExamCompleted, isExamCompleted,
isHydrated, isHydrated,
isInitialized, isInitialized,
currentExam,
} = useExam(); } = useExam();
const [questions, setQuestions] = useState<Question[] | null>(null); const [questions, setQuestions] = useState<Question[] | null>(null);
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
const [isSubmitting, setIsSubmitting] = useState(false);
const [submissionLoading, setSubmissionLoading] = useState(false); const [submissionLoading, setSubmissionLoading] = useState(false);
// Check if exam is properly started
useEffect(() => { useEffect(() => {
if (!isHydrated) return; console.log(
if (!isInitialized) return; "hydrated:",
if (isSubmitting) return; // Don't redirect while submitting isHydrated,
"initialized:",
isInitialized,
"exam:",
currentExam
);
}, [isHydrated, isInitialized, currentExam]);
if (!isExamStarted()) { // Initial checks
router.push("/unit"); useEffect(() => {
return; if (!isHydrated || !isInitialized || isSubmitting) return;
} if (!isExamStarted()) return router.push("/unit");
if (isExamCompleted()) return router.push("/exam/results");
if (isExamCompleted()) {
router.push("/exam/results");
return;
}
}, [ }, [
isHydrated, isHydrated,
isInitialized,
isExamStarted, isExamStarted,
isExamCompleted, isExamCompleted,
router,
isInitialized,
isSubmitting, isSubmitting,
router,
]); ]);
const fetchQuestions = async () => { // Fetch questions
try {
const response = await fetch(`${API_URL}/mock/${id}`, {
method: "GET",
});
const data = await response.json();
setQuestions(data.questions);
} catch (error) {
console.error("Error fetching questions:", error);
} finally {
setLoading(false);
}
};
useEffect(() => { useEffect(() => {
const fetchQuestions = async () => {
try {
const response = await fetch(`${API_URL}/mock/${id}`);
const data = await response.json();
setQuestions(data.questions);
} catch (error) {
console.error("Error fetching questions:", error);
} finally {
setLoading(false);
}
};
fetchQuestions(); fetchQuestions();
if (time) { if (time) setInitialTime(Number(time));
setInitialTime(Number(time));
}
}, [id, time, setInitialTime]); }, [id, time, setInitialTime]);
const handleSelect = useCallback( const handleSelect = useCallback(
(questionId: number, option: string) => { (questionId: number, option: string) => {
// Store answer in context instead of local reducer
setAnswer(questionId.toString(), option); setAnswer(questionId.toString(), option);
}, },
[setAnswer] [setAnswer]
); );
const handleSubmit = async () => { const handleSubmit = async () => {
if (!currentAttempt) { if (!currentAttempt) return console.error("No exam attempt found");
console.error("No exam attempt found");
return;
}
stopTimer(); stopTimer();
setSubmissionLoading(true); setSubmissionLoading(true);
setIsSubmitting(true); // Add this line setIsSubmitting(true);
// Convert context answers to the format your API expects const answersForAPI = currentAttempt.answers.reduce(
const answersForAPI = currentAttempt.answers.reduce((acc, answer) => { (acc, { questionId, answer }) => {
acc[parseInt(answer.questionId)] = answer.answer; acc[+questionId] = answer;
return acc; return acc;
}, {} as Record<number, string>); },
{} as Record<number, string>
const payload = { );
mock_id: id,
data: answersForAPI,
};
try { try {
const response = await fetch(`${API_URL}/submit`, { const response = await fetch(`${API_URL}/submit`, {
@ -162,33 +147,19 @@ export default function ExamPage() {
"Content-Type": "application/json", "Content-Type": "application/json",
Authorization: `Bearer ${await getToken()}`, Authorization: `Bearer ${await getToken()}`,
}, },
body: JSON.stringify(payload), body: JSON.stringify({ mock_id: id, data: answersForAPI }),
}); });
if (!response.ok) { if (!response.ok)
const errorData = await response.json(); throw new Error((await response.json()).message || "Submission failed");
console.error(
"Submission failed:",
errorData.message || "Unknown error"
);
setIsSubmitting(false); // Reset on error
return;
}
const responseData = await response.json(); const responseData = await response.json();
submitExamContext();
// Submit exam in context (this will store the completed attempt)
const completedAttempt = submitExamContext();
// Store API response in context for results page
setApiResponse(responseData); setApiResponse(responseData);
// Navigate to results without URL parameters
router.push("/exam/results"); router.push("/exam/results");
console.log("I'm here");
} catch (error) { } catch (error) {
console.error("Error submitting answers:", error); console.error("Error submitting answers:", error);
setIsSubmitting(false); // Reset on error setIsSubmitting(false);
} finally { } finally {
setSubmissionLoading(false); setSubmissionLoading(false);
} }
@ -201,12 +172,10 @@ export default function ExamPage() {
} }
}; };
// Handle browser back button
useEffect(() => { useEffect(() => {
const handleBeforeUnload = (e: BeforeUnloadEvent) => { const handleBeforeUnload = (e: BeforeUnloadEvent) => {
e.preventDefault(); e.preventDefault();
e.returnValue = ""; e.returnValue = "";
return "";
}; };
const handlePopState = (e: PopStateEvent) => { const handlePopState = (e: PopStateEvent) => {
@ -225,12 +194,10 @@ export default function ExamPage() {
if (submissionLoading) { if (submissionLoading) {
return ( return (
<div className="min-h-screen bg-gray-50"> <div className="min-h-screen bg-gray-50 flex items-center justify-center">
<div className="container mx-auto px-4 py-8"> <div className="text-center">
<div className="flex flex-col items-center justify-center min-h-64"> <div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-900 mb-4"></div>
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-900 mb-4"></div> <p className="text-lg font-medium text-gray-900">Submitting...</p>
<p className="text-lg font-medium text-gray-900">Submitting...</p>
</div>
</div> </div>
</div> </div>
); );
@ -252,11 +219,11 @@ export default function ExamPage() {
</div> </div>
) : ( ) : (
<div className="space-y-6 mb-20"> <div className="space-y-6 mb-20">
{questions?.map((question) => ( {questions?.map((q) => (
<QuestionItem <QuestionItem
key={question.id} key={q.id}
question={question} question={q}
selectedAnswer={getAnswer(question.id.toString())} selectedAnswer={getAnswer(q.id.toString())}
handleSelect={handleSelect} handleSelect={handleSelect}
/> />
))} ))}

View File

@ -7,6 +7,7 @@ import DestructibleAlert from "@/components/DestructibleAlert";
import BackgroundWrapper from "@/components/BackgroundWrapper"; import BackgroundWrapper from "@/components/BackgroundWrapper";
import { API_URL } from "@/lib/auth"; import { API_URL } from "@/lib/auth";
import { useExam } from "@/context/ExamContext"; import { useExam } from "@/context/ExamContext";
import { Exam } from "@/types/exam";
interface Metadata { interface Metadata {
metadata: { metadata: {
@ -20,7 +21,7 @@ interface Metadata {
export default function PretestPage() { export default function PretestPage() {
const router = useRouter(); const router = useRouter();
const searchParams = useSearchParams(); const searchParams = useSearchParams();
const [examData, setExamData] = useState(); const [examData, setExamData] = useState<Exam>();
const { startExam, setCurrentExam } = useExam(); const { startExam, setCurrentExam } = useExam();
// Get params from URL search params // Get params from URL search params
@ -41,14 +42,13 @@ export default function PretestPage() {
const questionResponse = await fetch(`${API_URL}/mock/${id}`, { const questionResponse = await fetch(`${API_URL}/mock/${id}`, {
method: "GET", method: "GET",
}); });
const data = await questionResponse.json();
console.log(data);
if (!questionResponse.ok) { if (!questionResponse.ok) {
throw new Error("Failed to fetch questions"); throw new Error("Failed to fetch questions");
} }
setExamData(data); const data = await questionResponse.json();
const fetchedMetadata: Metadata = data; const fetchedMetadata: Metadata = data;
setExamData(data);
setMetadata(fetchedMetadata); setMetadata(fetchedMetadata);
} catch (error) { } catch (error) {
console.error(error); console.error(error);
@ -79,6 +79,25 @@ export default function PretestPage() {
</BackgroundWrapper> </BackgroundWrapper>
); );
} }
const { isHydrated, isInitialized, currentExam } = useExam();
useEffect(() => {
console.log(
"hydrated:",
isHydrated,
"initialized:",
isInitialized,
"exam:",
currentExam
);
}, [isHydrated, isInitialized, currentExam]);
function handleStartExam() {
console.log(id);
setCurrentExam(examData);
startExam();
router.push(`/exam/${id}?time=${metadata?.metadata.duration}`);
}
return ( return (
<BackgroundWrapper> <BackgroundWrapper>
@ -176,11 +195,7 @@ export default function PretestPage() {
</div> </div>
<button <button
onClick={() => { onClick={async () => handleStartExam()}
setCurrentExam(examData); // Set exam first
startExam(); // Then start exam
router.push(`/exam/${id}?time=${metadata.metadata.duration}`);
}}
className="fixed bottom-0 w-full bg-[#113768] h-[78px] justify-center items-center flex text-white text-2xl font-bold" className="fixed bottom-0 w-full bg-[#113768] h-[78px] justify-center items-center flex text-white text-2xl font-bold"
> >
Start Test Start Test

View File

@ -4,6 +4,7 @@ import { useRouter } from "next/navigation";
import { useExam, useExamResults } from "@/context/ExamContext"; import { useExam, useExamResults } from "@/context/ExamContext";
import { useEffect } from "react"; import { useEffect } from "react";
import React from "react"; import React from "react";
import { ArrowLeft } from "lucide-react";
interface Question { interface Question {
solution: string; solution: string;
@ -54,7 +55,7 @@ export default function ResultsPage() {
useEffect(() => { useEffect(() => {
// Redirect if no completed exam // Redirect if no completed exam
if (!isExamCompleted()) { if (!isExamCompleted()) {
router.push("/exam/select"); router.push("/unit");
return; return;
} }
}, [isExamCompleted, router]); }, [isExamCompleted, router]);
@ -67,15 +68,10 @@ export default function ResultsPage() {
return ( return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center"> <div className="min-h-screen bg-gray-50 flex items-center justify-center">
<div className="text-center"> <div className="text-center">
<h1 className="text-2xl font-bold text-gray-900 mb-4"> <div className="mt-60 flex flex-col items-center">
No exam results found <div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-500 mb-4"></div>
</h1> <p className="text-xl font-medium text-center">Loading...</p>
<button </div>
onClick={() => router.push("/exam/select")}
className="bg-blue-900 text-white px-6 py-3 rounded-lg hover:bg-blue-800"
>
Take an Exam
</button>
</div> </div>
</div> </div>
); );
@ -85,8 +81,12 @@ export default function ResultsPage() {
const apiResponse = getApiResponse(); const apiResponse = getApiResponse();
const handleBackToHome = () => { const handleBackToHome = () => {
router.push("/unit");
clearExam(); clearExam();
// Give time for state to fully reset before pushing new route
setTimeout(() => {
router.push("/unit");
}, 400); // 50100ms is usually enough
}; };
const timeTaken = const timeTaken =
@ -100,18 +100,24 @@ export default function ResultsPage() {
return ( return (
<div className="min-h-screen bg-white"> <div className="min-h-screen bg-white">
<div className="bg-white rounded-lg shadow-lg px-10 py-20"> <button className="p-10" onClick={() => router.push("/unit")}>
<ArrowLeft size={30} color="black" />
</button>
<div className="bg-white rounded-lg shadow-lg px-10 pb-20">
<h1 className="text-2xl font-bold text-gray-900 mb-2 text-center"> <h1 className="text-2xl font-bold text-gray-900 mb-2 text-center">
Keep up the good work! Keep up the good work!
</h1> </h1>
{/* Score Display */} {/* Score Display */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8"> <div className="mb-8">
<div className="bg-blue-50 rounded-lg p-6 text-center"> <div className="bg-blue-50/60 border border-[#113678]/50 rounded-4xl h-[150px] flex flex-col items-center justify-center">
<div className="text-3xl font-bold text-blue-900 mb-2"> <div className="text-xl text-black mb-2">Accuracy:</div>
{examResults.score}% <div className="text-5xl font-bold text-[#113678]">
{((examResults.score / examResults.totalQuestions) * 100).toFixed(
1
)}
%
</div> </div>
<div className="text-sm text-gray-600">Final Score</div>
</div> </div>
</div> </div>
@ -122,7 +128,11 @@ export default function ResultsPage() {
</h3> </h3>
<div className="flex flex-col gap-7"> <div className="flex flex-col gap-7">
{apiResponse.questions?.map((question) => ( {apiResponse.questions?.map((question) => (
<QuestionItem key={question.id} question={question} /> <QuestionItem
key={question.id}
question={question}
selectedAnswer={undefined}
/>
))} ))}
</div> </div>
</div> </div>

View File

@ -15,7 +15,7 @@ const montserrat = Montserrat({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "ExamJam", title: "ExamJam",
description: "Your exam preparation platform", description: "The best place to prepare for your exams!",
}; };
export default function RootLayout({ export default function RootLayout({

View File

@ -58,7 +58,7 @@ export default function Home() {
{/* Action Buttons */} {/* Action Buttons */}
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<button <button
onClick={() => router.push("/login")} onClick={() => router.replace("/login")}
className="w-full h-[60px] flex justify-center items-center border border-[#113768] rounded-full bg-transparent hover:bg-[#113768] hover:text-white transition-colors duration-200" className="w-full h-[60px] flex justify-center items-center border border-[#113768] rounded-full bg-transparent hover:bg-[#113768] hover:text-white transition-colors duration-200"
> >
<span <span

View File

@ -4,6 +4,7 @@ import Image from "next/image";
import { ChevronLeft, Layers } from "lucide-react"; import { ChevronLeft, Layers } from "lucide-react";
import { useTimer } from "@/context/TimerContext"; import { useTimer } from "@/context/TimerContext";
import styles from "@/css/Header.module.css"; import styles from "@/css/Header.module.css";
import { useExam } from "@/context/ExamContext";
const API_URL = "https://examjam-api.pptx704.com"; const API_URL = "https://examjam-api.pptx704.com";
@ -26,6 +27,7 @@ const Header = ({
examDuration, examDuration,
}) => { }) => {
const router = useRouter(); const router = useRouter();
const { clearExam } = useExam();
const [totalSeconds, setTotalSeconds] = useState( const [totalSeconds, setTotalSeconds] = useState(
examDuration ? parseInt(examDuration) * 60 : 0 examDuration ? parseInt(examDuration) * 60 : 0
); );
@ -86,6 +88,7 @@ const Header = ({
if (stopTimer) { if (stopTimer) {
stopTimer(); stopTimer();
} }
clearExam();
router.push("/unit"); router.push("/unit");
} }
}; };

View File

@ -81,7 +81,7 @@ export const ExamProvider: React.FC<{ children: ReactNode }> = ({
const setCurrentExam = (exam: Exam) => { const setCurrentExam = (exam: Exam) => {
setCurrentExamState(exam); setCurrentExamState(exam);
// Clear any existing attempt when setting a new exam
setCurrentAttemptState(null); setCurrentAttemptState(null);
}; };
@ -167,6 +167,7 @@ export const ExamProvider: React.FC<{ children: ReactNode }> = ({
...currentAttempt, ...currentAttempt,
endTime: new Date(), endTime: new Date(),
score, score,
totalQuestions,
passed: currentAttempt.exam.passingScore passed: currentAttempt.exam.passingScore
? score >= currentAttempt.exam.passingScore ? score >= currentAttempt.exam.passingScore
: undefined, : undefined,
@ -176,7 +177,7 @@ export const ExamProvider: React.FC<{ children: ReactNode }> = ({
return completedAttempt; return completedAttempt;
}; };
const clearExam = () => { const clearExam = (): void => {
setCurrentExamState(null); setCurrentExamState(null);
setCurrentAttemptState(null); setCurrentAttemptState(null);
}; };
@ -205,10 +206,7 @@ export const ExamProvider: React.FC<{ children: ReactNode }> = ({
return totalQuestions > 0 ? (answeredQuestions / totalQuestions) * 100 : 0; return totalQuestions > 0 ? (answeredQuestions / totalQuestions) * 100 : 0;
}; };
const isExamStarted = (): boolean => { const isExamStarted = () => !!currentExam && !!currentAttempt;
if (!isHydrated) return false; // ⛔ wait for hydration
return currentAttempt !== null && !currentAttempt.endTime;
};
const isExamCompleted = (): boolean => { const isExamCompleted = (): boolean => {
if (!isHydrated) return false; // ⛔ wait for hydration if (!isHydrated) return false; // ⛔ wait for hydration

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

1
types/exam.d.ts vendored
View File

@ -29,6 +29,7 @@ export interface ExamAttempt {
score?: number; score?: number;
passed?: boolean; passed?: boolean;
apiResponse?: any; apiResponse?: any;
totalQuestions: number;
} }
export interface ExamContextType { export interface ExamContextType {