This commit is contained in:
Stefan
2025-11-29 10:18:23 +01:00
parent 4102135acd
commit 0e678e0187
5 changed files with 613 additions and 180 deletions
+258 -169
View File
@@ -3,7 +3,7 @@
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { Chess } from "chess.js";
import { Chessboard } from "react-chessboard";
import { Brain, ChevronLeft, ChevronRight, Loader2, ArrowLeft, Download, PlayCircle } from "lucide-react";
import { Brain, ChevronLeft, ChevronRight, Loader2, ArrowLeft, Download, PlayCircle, Upload, RotateCcw } from "lucide-react";
import { useRouter } from "next/navigation";
import Header from "@/components/Header";
@@ -19,6 +19,7 @@ import { ChatSession } from "@google/generative-ai";
import ReactMarkdown from "react-markdown";
import { useDebug } from "@/contexts/DebugContext";
import { GameImportModal } from "@/components/GameImportModal";
import { OpeningsModal } from "@/components/OpeningsModal";
interface MoveStep {
san: string;
@@ -65,6 +66,7 @@ export default function AnalysisPage() {
const [chatSession, setChatSession] = useState<ChatSession | null>(null);
const [showImportModal, setShowImportModal] = useState(false);
const [showPlayModal, setShowPlayModal] = useState(false);
const [showOpeningsModal, setShowOpeningsModal] = useState(false);
const [playPersonality, setPlayPersonality] = useState<Personality>(PERSONALITIES[0]);
const [playColor, setPlayColor] = useState<"white" | "black">("white");
const [playStrength, setPlayStrength] = useState(15);
@@ -74,6 +76,18 @@ export default function AnalysisPage() {
const storedLang = localStorage.getItem("chess_tutor_language");
if (storedKey) setApiKey(storedKey);
if (storedLang) setLanguage(storedLang as SupportedLanguage);
// Check for pending analysis from saved game
const pendingAnalysis = localStorage.getItem("chess_tutor_pending_analysis");
if (pendingAnalysis) {
localStorage.removeItem("chess_tutor_pending_analysis");
setInput(pendingAnalysis);
setDetectedFormat(detectChessFormat(pendingAnalysis));
// Load the game after a short delay to ensure stockfish is ready
setTimeout(() => {
loadGameFromPgnOrFen(pendingAnalysis);
}, 100);
}
}, []);
useEffect(() => {
@@ -226,6 +240,19 @@ IMPORTANT:
loadGameFromPgnOrFen(pgn);
};
const handleResetAnalysis = () => {
setInput("");
setDetectedFormat(null);
setSteps([]);
setCurrentIndex(0);
setStepDetails({});
setComments({});
setInitialFen(DEFAULT_START);
evaluationCache.current = {};
setEvaluationVersion(v => v + 1);
setError(null);
};
const handleStartGameFromPosition = () => {
const payload = {
fen: currentFen,
@@ -400,90 +427,137 @@ INSTRUCTIONS:
<main className="flex-grow w-full flex justify-center px-4 py-8">
<div className="w-full max-w-6xl space-y-8">
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow-lg p-6 md:p-8 border border-gray-200 dark:border-gray-700">
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div>
<h1 className="text-3xl font-bold text-gray-900 dark:text-white flex items-center gap-2">
<Brain className="text-purple-600" /> {t.analysis.modeTitle}
</h1>
<p className="text-gray-600 dark:text-gray-300 mt-2">{t.analysis.modeDescription}</p>
{/* Phase 1: Import View - shown when no game is loaded */}
{steps.length === 0 && (
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow-lg p-6 md:p-8 border border-gray-200 dark:border-gray-700">
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div>
<h1 className="text-3xl font-bold text-gray-900 dark:text-white flex items-center gap-2">
<Brain className="text-purple-600" /> {t.analysis.modeTitle}
</h1>
<p className="text-gray-600 dark:text-gray-300 mt-2">{t.analysis.modeDescription}</p>
</div>
</div>
<div className="flex items-center gap-3">
<label className="text-sm font-medium text-gray-700 dark:text-gray-300">{t.analysis.orientation}</label>
<select
value={orientation}
onChange={(e) => setOrientation(e.target.value as "white" | "black")}
className="p-2 rounded-lg border border-gray-300 dark:border-gray-600 dark:bg-gray-700"
>
<option value="white">White</option>
<option value="black">Black</option>
</select>
<div className="mt-6 grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="space-y-4">
<label className="block text-sm font-semibold text-gray-700 dark:text-gray-300">{t.analysis.pasteLabel}</label>
<textarea
value={input}
onChange={(e) => handleInputChange(e.target.value)}
placeholder={t.analysis.pastePlaceholder}
className="w-full p-3 border rounded-lg dark:bg-gray-700 dark:border-gray-600 font-mono text-sm min-h-[180px]"
/>
{detectedFormat && (
<p className="text-xs text-gray-500">Detected: {detectedFormat.toUpperCase()}</p>
)}
{error && <p className="text-sm text-red-500">{error}</p>}
<div className="space-y-2">
<p className="text-sm font-semibold text-gray-700 dark:text-gray-300">{t.analysis.chooseCoach}</p>
<div className="grid grid-cols-2 gap-2">
{PERSONALITIES.map(p => (
<button
key={p.id}
onClick={() => setSelectedPersonality(p)}
className={`p-3 rounded-lg border flex items-center gap-2 ${selectedPersonality.id === p.id
? "border-purple-500 bg-purple-50 dark:bg-purple-900/20"
: "border-gray-200 dark:border-gray-700"}`}
>
<span className="text-xl">{p.image}</span>
<span className="text-sm text-left text-gray-800 dark:text-gray-100">{p.name}</span>
</button>
))}
</div>
</div>
<button
onClick={handleLoadGame}
className="w-full py-3 bg-purple-600 text-white rounded-xl hover:bg-purple-700 font-semibold shadow-lg"
>
{t.analysis.startButton}
</button>
{/* Import from Online Platforms */}
<div className="pt-4 border-t border-gray-200 dark:border-gray-700">
<p className="text-xs text-gray-500 dark:text-gray-400 mb-2 text-center">
Or import from online platforms
</p>
<div className="grid grid-cols-2 gap-2">
<button
onClick={() => setShowImportModal(true)}
className="py-2 px-3 bg-green-600 text-white rounded-lg hover:bg-green-700 font-medium text-sm flex items-center justify-center gap-2 shadow"
>
<Download size={16} />
Chess.com
</button>
<button
onClick={() => setShowImportModal(true)}
className="py-2 px-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 font-medium text-sm flex items-center justify-center gap-2 shadow"
>
<Download size={16} />
Lichess
</button>
</div>
</div>
</div>
<div className="bg-gray-50 dark:bg-gray-900 rounded-xl p-4 flex flex-col items-center justify-center border border-gray-200 dark:border-gray-700">
<div className="w-full max-w-md">
<Chessboard
options={{
position: currentFen,
boardOrientation: orientation,
allowDragging: false,
darkSquareStyle: { backgroundColor: '#779954' },
lightSquareStyle: { backgroundColor: '#e9edcc' },
animationDurationInMs: 200,
boardStyle: { borderRadius: "12px", boxShadow: "0 8px 30px rgba(0,0,0,0.12)" }
}}
/>
</div>
<p className="mt-4 text-sm text-gray-500 dark:text-gray-400 text-center">
{t.analysis.currentPosition}
</p>
</div>
</div>
</div>
)}
<div className="mt-6 grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="space-y-4">
<label className="block text-sm font-semibold text-gray-700 dark:text-gray-300">{t.analysis.pasteLabel}</label>
<textarea
value={input}
onChange={(e) => handleInputChange(e.target.value)}
placeholder={t.analysis.pastePlaceholder}
className="w-full p-3 border rounded-lg dark:bg-gray-700 dark:border-gray-600 font-mono text-sm min-h-[180px]"
/>
{detectedFormat && (
<p className="text-xs text-gray-500">Detected: {detectedFormat.toUpperCase()}</p>
)}
{error && <p className="text-sm text-red-500">{error}</p>}
<div className="space-y-2">
<p className="text-sm font-semibold text-gray-700 dark:text-gray-300">{t.analysis.chooseCoach}</p>
<div className="grid grid-cols-2 gap-2">
{PERSONALITIES.map(p => (
<button
key={p.id}
onClick={() => setSelectedPersonality(p)}
className={`p-3 rounded-lg border flex items-center gap-2 ${selectedPersonality.id === p.id
? "border-purple-500 bg-purple-50 dark:bg-purple-900/20"
: "border-gray-200 dark:border-gray-700"}`}
>
<span className="text-xl">{p.image}</span>
<span className="text-sm text-left text-gray-800 dark:text-gray-100">{p.name}</span>
</button>
))}
{/* Phase 2: Analysis View - shown when game is loaded */}
{steps.length > 0 && (
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow-lg p-6 md:p-8 border border-gray-200 dark:border-gray-700">
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-4 mb-6">
<div className="flex items-center gap-3">
<span className="text-2xl">{selectedPersonality.image}</span>
<div>
<h1 className="text-xl font-bold text-gray-900 dark:text-white">
{t.analysis.modeTitle}
</h1>
<p className="text-sm text-gray-500 dark:text-gray-400">
Coach: {selectedPersonality.name}
</p>
</div>
</div>
<button
onClick={handleLoadGame}
className="w-full py-3 bg-purple-600 text-white rounded-xl hover:bg-purple-700 font-semibold shadow-lg"
>
{t.analysis.startButton}
</button>
{/* Import from Online Platforms */}
<div className="pt-4 border-t border-gray-200 dark:border-gray-700">
<p className="text-xs text-gray-500 dark:text-gray-400 mb-2 text-center">
Or import from online platforms
</p>
<div className="grid grid-cols-2 gap-2">
<button
onClick={() => setShowImportModal(true)}
className="py-2 px-3 bg-green-600 text-white rounded-lg hover:bg-green-700 font-medium text-sm flex items-center justify-center gap-2 shadow"
>
<Download size={16} />
Chess.com
</button>
<button
onClick={() => setShowImportModal(true)}
className="py-2 px-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 font-medium text-sm flex items-center justify-center gap-2 shadow"
>
<Download size={16} />
Lichess
</button>
</div>
<div className="flex items-center gap-3">
<button
onClick={handleResetAnalysis}
className="px-3 py-2 text-sm font-medium text-gray-600 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-600 flex items-center gap-2"
>
<RotateCcw size={16} />
{t.analysis.loadNewGame}
</button>
<select
value={orientation}
onChange={(e) => setOrientation(e.target.value as "white" | "black")}
className="p-2 rounded-lg border border-gray-300 dark:border-gray-600 dark:bg-gray-700 text-sm"
>
<option value="white">White</option>
<option value="black">Black</option>
</select>
</div>
</div>
<div className="bg-gray-50 dark:bg-gray-900 rounded-xl p-4 flex flex-col items-center gap-3 border border-gray-200 dark:border-gray-700">
<div className="w-full max-w-md">
<div className="flex flex-col items-center gap-4">
<div className="w-full max-w-lg">
<Chessboard
options={{
position: currentFen,
@@ -499,124 +573,128 @@ INSTRUCTIONS:
<div className="flex items-center gap-4">
<button
onClick={() => setCurrentIndex(i => Math.max(0, i - 1))}
className="p-2 rounded-lg bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 hover:bg-gray-100 dark:hover:bg-gray-700 disabled:opacity-50"
className="p-2 rounded-lg bg-white dark:bg-gray-700 border border-gray-200 dark:border-gray-600 hover:bg-gray-100 dark:hover:bg-gray-600 disabled:opacity-50"
disabled={currentIndex === 0}
aria-label={t.analysis.previous}
>
<ChevronLeft size={20} />
</button>
<div className="text-sm text-gray-600 dark:text-gray-300">
<div className="text-sm text-gray-600 dark:text-gray-300 min-w-[100px] text-center">
{t.analysis.step} {currentIndex} / {steps.length}
</div>
<button
onClick={() => setCurrentIndex(i => Math.min(steps.length, i + 1))}
className="p-2 rounded-lg bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 hover:bg-gray-100 dark:hover:bg-gray-700 disabled:opacity-50"
className="p-2 rounded-lg bg-white dark:bg-gray-700 border border-gray-200 dark:border-gray-600 hover:bg-gray-100 dark:hover:bg-gray-600 disabled:opacity-50"
disabled={currentIndex >= steps.length}
aria-label={t.analysis.next}
>
<ChevronRight size={20} />
</button>
</div>
<div className="w-full">
<button
onClick={() => {
setPlayColor(orientation);
setShowPlayModal(true);
}}
className="mt-3 inline-flex items-center gap-2 px-4 py-2 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition-colors w-full justify-center"
>
<PlayCircle size={18} /> {t.analysis.playFromHere}
</button>
</div>
<button
onClick={() => {
setPlayColor(orientation);
setShowPlayModal(true);
}}
className="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition-colors"
>
<PlayCircle size={18} /> {t.analysis.playFromHere}
</button>
</div>
</div>
</div>
)}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div className="lg:col-span-2 bg-white dark:bg-gray-800 rounded-2xl shadow border border-gray-200 dark:border-gray-700 p-6 space-y-4">
<div className="flex items-center justify-between">
<h2 className="text-xl font-bold text-gray-900 dark:text-white">{t.analysis.title}</h2>
{possibleOpenings.length > 0 && (
<span className="text-sm text-blue-700 dark:text-blue-300">
{t.analysis.opening}: {possibleOpenings.length === 1
? `${possibleOpenings[0].name} (${possibleOpenings[0].eco})`
: `${possibleOpenings.length} possible openings`
}
</span>
{/* Analysis Panels - only shown when game is loaded */}
{steps.length > 0 && (
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div className="lg:col-span-2 bg-white dark:bg-gray-800 rounded-2xl shadow border border-gray-200 dark:border-gray-700 p-6 space-y-4">
<div className="flex items-center justify-between">
<h2 className="text-xl font-bold text-gray-900 dark:text-white">{t.analysis.title}</h2>
{possibleOpenings.length > 0 && (
<button
onClick={() => setShowOpeningsModal(true)}
className="text-sm text-blue-700 dark:text-blue-300 hover:text-blue-900 dark:hover:text-blue-100 hover:underline cursor-pointer transition-colors"
>
{t.analysis.opening}: {possibleOpenings.length === 1
? `${possibleOpenings[0].name} (${possibleOpenings[0].eco})`
: `${possibleOpenings.length} ${t.analysis.possibleOpenings}`
}
</button>
)}
</div>
{currentIndex === 0 ? (
<p className="text-gray-600 dark:text-gray-300">{t.analysis.currentPosition}</p>
) : (
<div className="space-y-3">
<div className="flex flex-wrap gap-4 text-sm text-gray-700 dark:text-gray-200">
<div>
<div className="font-semibold">{t.analysis.step} {currentIndex}</div>
<div>{steps[currentIndex - 1]?.san}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.evaluation}</div>
<div>{formatEval(currentDetails?.evalAfter)}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.cpLoss}</div>
<div>{formatCpLoss(currentDetails?.cpLoss)}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.bestMove}</div>
<div>{currentDetails?.bestMoveSan || t.analysis.enginePending}</div>
</div>
</div>
<div>
<div className="font-semibold text-gray-800 dark:text-gray-100 mb-2">{t.analysis.missedTactics}</div>
{tacticSummary.length === 0 && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.none}</p>
)}
{tacticSummary.length > 0 && (
<ul className="list-disc pl-5 space-y-1 text-sm text-gray-700 dark:text-gray-300">
{tacticSummary.map((tactic, idx) => (
<li key={`${tactic.move}-${idx}`}>
{tactic.tactic_type}
{tactic.material_delta ? ` (~${(tactic.material_delta / 100).toFixed(1)} pawns)` : ""}
{tactic.affected_squares ? ` on ${tactic.affected_squares.join(", ")}` : ""}
</li>
))}
</ul>
)}
</div>
</div>
)}
</div>
{currentIndex === 0 ? (
<p className="text-gray-600 dark:text-gray-300">{t.analysis.currentPosition}</p>
) : (
<div className="space-y-3">
<div className="flex flex-wrap gap-4 text-sm text-gray-700 dark:text-gray-200">
<div>
<div className="font-semibold">{t.analysis.step} {currentIndex}</div>
<div>{steps[currentIndex - 1]?.san}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.evaluation}</div>
<div>{formatEval(currentDetails?.evalAfter)}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.cpLoss}</div>
<div>{formatCpLoss(currentDetails?.cpLoss)}</div>
</div>
<div>
<div className="font-semibold">{t.analysis.bestMove}</div>
<div>{currentDetails?.bestMoveSan || t.analysis.enginePending}</div>
</div>
</div>
<div>
<div className="font-semibold text-gray-800 dark:text-gray-100 mb-2">{t.analysis.missedTactics}</div>
{tacticSummary.length === 0 && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.none}</p>
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow border border-gray-200 dark:border-gray-700 p-6 space-y-4">
<h2 className="text-xl font-bold text-gray-900 dark:text-white">{t.analysis.aiAnalysis}</h2>
{!apiKey && (
<p className="text-sm text-gray-600 dark:text-gray-400">Please add an API key in settings to receive commentary.</p>
)}
{currentIndex === 0 && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.currentPosition}</p>
)}
{currentIndex > 0 && (
<div className="min-h-[140px]">
{isCommenting && (
<div className="flex items-center gap-2 text-gray-600 dark:text-gray-300">
<Loader2 className="animate-spin" size={18} />
<span>{t.analysis.coachPending}</span>
</div>
)}
{tacticSummary.length > 0 && (
<ul className="list-disc pl-5 space-y-1 text-sm text-gray-700 dark:text-gray-300">
{tacticSummary.map((tactic, idx) => (
<li key={`${tactic.move}-${idx}`}>
{tactic.tactic_type}
{tactic.material_delta ? ` (~${(tactic.material_delta / 100).toFixed(1)} pawns)` : ""}
{tactic.affected_squares ? ` on ${tactic.affected_squares.join(", ")}` : ""}
</li>
))}
</ul>
{!isCommenting && comments[currentIndex] && (
<div className="prose prose-sm dark:prose-invert max-w-none">
<ReactMarkdown>{comments[currentIndex]}</ReactMarkdown>
</div>
)}
{!isCommenting && !comments[currentIndex] && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.coachPending}</p>
)}
</div>
</div>
)}
)}
</div>
</div>
<div className="bg-white dark:bg-gray-800 rounded-2xl shadow border border-gray-200 dark:border-gray-700 p-6 space-y-4">
<h2 className="text-xl font-bold text-gray-900 dark:text-white">{t.analysis.aiAnalysis}</h2>
{!apiKey && (
<p className="text-sm text-gray-600 dark:text-gray-400">Please add an API key in settings to receive commentary.</p>
)}
{currentIndex === 0 && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.currentPosition}</p>
)}
{currentIndex > 0 && (
<div className="min-h-[140px]">
{isCommenting && (
<div className="flex items-center gap-2 text-gray-600 dark:text-gray-300">
<Loader2 className="animate-spin" size={18} />
<span>{t.analysis.coachPending}</span>
</div>
)}
{!isCommenting && comments[currentIndex] && (
<div className="prose prose-sm dark:prose-invert max-w-none">
<ReactMarkdown>{comments[currentIndex]}</ReactMarkdown>
</div>
)}
{!isCommenting && !comments[currentIndex] && (
<p className="text-sm text-gray-600 dark:text-gray-400">{t.analysis.coachPending}</p>
)}
</div>
)}
</div>
</div>
)}
</div>
</main>
@@ -629,6 +707,17 @@ INSTRUCTIONS:
/>
)}
{/* Openings Explorer Modal */}
{showOpeningsModal && possibleOpenings.length > 0 && (
<OpeningsModal
openings={possibleOpenings}
currentFen={currentFen}
language={language}
personality={selectedPersonality}
onClose={() => setShowOpeningsModal(false)}
/>
)}
{/* Play From Position Modal */}
{showPlayModal && (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50 px-4 py-8">