import React, { useState, useEffect } from "react"; import { Box, CircularProgress } from "@mui/material"; import { useSearchParams, Navigate } from "react-router-dom"; import Intro from "../components/Intro"; import EvaluationDisplay from "../components/EvaluationDisplay"; function EvaluationDisplayPage() { const [searchParams] = useSearchParams(); const sessionId = searchParams.get("session"); const [isValidSession, setIsValidSession] = useState(true); const [isLoading, setIsLoading] = useState(true); useEffect(() => { if (!sessionId) { console.log( "Session ID manquante pour l'affichage des résultats, redirection vers l'accueil" ); setIsValidSession(false); return; } const checkSession = async () => { try { const response = await fetch( `http://localhost:3001/benchmark-questions/${sessionId}` ); if (!response.ok) { console.error( `Session invalide ou erreur serveur: ${response.status}` ); setIsValidSession(false); } } catch (error) { console.error("Erreur lors de la vérification de la session:", error); setIsValidSession(false); } finally { setIsLoading(false); } }; checkSession(); }, [sessionId]); if (!isValidSession) { return ; } return ( <> {isLoading ? ( ) : ( )} ); } export default EvaluationDisplayPage;