291 lines
11 KiB
TypeScript
291 lines
11 KiB
TypeScript
"use client"
|
||
|
||
import { useEffect, useState } from "react"
|
||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||
import { Button } from "@/components/ui/button"
|
||
import { Badge } from "@/components/ui/badge"
|
||
import { Progress } from "@/components/ui/progress"
|
||
import { CheckCircle, XCircle, Brain, Home, RotateCcw } from "lucide-react"
|
||
import Link from "next/link"
|
||
|
||
interface LogicQuestion {
|
||
id: number
|
||
question: string
|
||
option_a: string
|
||
option_b: string
|
||
option_c: string
|
||
option_d: string
|
||
option_e: string
|
||
correct_answer: 'A' | 'B' | 'C' | 'D' | 'E'
|
||
explanation?: string
|
||
created_at: string
|
||
}
|
||
|
||
interface LogicTestResults {
|
||
type: string
|
||
score: number
|
||
correctAnswers: number
|
||
totalQuestions: number
|
||
answers: Record<number, string>
|
||
completedAt: string
|
||
}
|
||
|
||
export default function LogicResultsPage() {
|
||
const [results, setResults] = useState<LogicTestResults | null>(null)
|
||
const [questions, setQuestions] = useState<LogicQuestion[]>([])
|
||
const [isLoading, setIsLoading] = useState(true)
|
||
|
||
useEffect(() => {
|
||
const loadData = async () => {
|
||
try {
|
||
// 載入測試結果
|
||
const savedResults = localStorage.getItem("logicTestResults")
|
||
if (savedResults) {
|
||
setResults(JSON.parse(savedResults))
|
||
}
|
||
|
||
// 載入題目數據
|
||
const response = await fetch('/api/logic-questions')
|
||
const data = await response.json()
|
||
|
||
if (data.success) {
|
||
setQuestions(data.questions)
|
||
}
|
||
} catch (error) {
|
||
console.error('載入數據失敗:', error)
|
||
} finally {
|
||
setIsLoading(false)
|
||
}
|
||
}
|
||
|
||
loadData()
|
||
}, [])
|
||
|
||
if (isLoading) {
|
||
return (
|
||
<div className="min-h-screen bg-background flex items-center justify-center">
|
||
<Card className="w-full max-w-md">
|
||
<CardContent className="text-center py-8">
|
||
<div className="w-8 h-8 border-4 border-primary border-t-transparent rounded-full animate-spin mx-auto mb-4"></div>
|
||
<p className="text-muted-foreground">載入結果中...</p>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
if (!results) {
|
||
return (
|
||
<div className="min-h-screen bg-background flex items-center justify-center">
|
||
<Card className="w-full max-w-md">
|
||
<CardContent className="text-center py-8">
|
||
<p className="text-muted-foreground mb-4">未找到測試結果</p>
|
||
<Button asChild>
|
||
<Link href="/tests/logic">重新測試</Link>
|
||
</Button>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
const getScoreLevel = (score: number) => {
|
||
if (score === 100) {
|
||
return {
|
||
level: "邏輯巔峰者",
|
||
color: "bg-purple-600",
|
||
description: "近乎完美的邏輯典範!你像一台「推理引擎」,嚴謹又高效,幾乎不受陷阱干擾。",
|
||
suggestion: "多和他人分享你的思考路徑,能幫助團隊整體邏輯力提升。"
|
||
}
|
||
}
|
||
if (score >= 80) {
|
||
return {
|
||
level: "邏輯大師",
|
||
color: "bg-green-600",
|
||
description: "你的思維如同精密儀器,能快速抓住題目關鍵,並做出有效推理。常常是團隊中「冷靜的分析者」。",
|
||
suggestion: "挑戰更高層次的難題,讓你的邏輯力更加精進。"
|
||
}
|
||
}
|
||
if (score >= 60) {
|
||
return {
|
||
level: "邏輯高手",
|
||
color: "bg-blue-500",
|
||
description: "邏輯清晰穩定,大部分情境都能正確判斷。偶爾會因粗心錯過陷阱。",
|
||
suggestion: "在思維縝密之餘,更加留心細節,就能把錯誤率降到最低。"
|
||
}
|
||
}
|
||
if (score >= 30) {
|
||
return {
|
||
level: "邏輯學徒",
|
||
color: "bg-yellow-500",
|
||
description: "已經抓到一些邏輯規律,能解決中等難度的問題。遇到複雜情境時,仍可能卡關。",
|
||
suggestion: "嘗試將問題拆解成小步驟,就像組裝樂高,每一塊拼好,答案就自然浮現。"
|
||
}
|
||
}
|
||
return {
|
||
level: "邏輯探險新手",
|
||
color: "bg-red-500",
|
||
description: "還在邏輯森林的入口徘徊。思考時可能忽略細節,或被陷阱誤導。",
|
||
suggestion: "多練習經典邏輯題,像是在拼拼圖般,慢慢建立清晰的分析步驟。"
|
||
}
|
||
}
|
||
|
||
const scoreLevel = getScoreLevel(results.score)
|
||
|
||
return (
|
||
<div className="min-h-screen bg-background">
|
||
{/* Header */}
|
||
<header className="border-b bg-card/50 backdrop-blur-sm">
|
||
<div className="container mx-auto px-4 py-4">
|
||
<div className="flex items-center gap-3">
|
||
<div className="w-10 h-10 bg-primary rounded-lg flex items-center justify-center">
|
||
<Brain className="w-6 h-6 text-primary-foreground" />
|
||
</div>
|
||
<div>
|
||
<h1 className="text-xl font-bold text-foreground">邏輯思維測試結果</h1>
|
||
<p className="text-sm text-muted-foreground">
|
||
完成時間:{new Date(results.completedAt).toLocaleString("zh-TW")}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
|
||
<div className="container mx-auto px-4 py-8">
|
||
<div className="max-w-4xl mx-auto space-y-8">
|
||
{/* Score Overview */}
|
||
<Card className="text-center">
|
||
<CardHeader>
|
||
<div
|
||
className={`w-24 h-24 ${scoreLevel.color} rounded-full flex items-center justify-center mx-auto mb-4`}
|
||
>
|
||
<span className="text-3xl font-bold text-white">{results.score}</span>
|
||
</div>
|
||
<CardTitle className="text-3xl mb-2">測試完成!</CardTitle>
|
||
<div className="flex items-center justify-center gap-2 mb-4">
|
||
<Badge variant="secondary" className="text-lg px-4 py-1">
|
||
{scoreLevel.level}
|
||
</Badge>
|
||
</div>
|
||
<p className="text-lg text-muted-foreground mb-4">{scoreLevel.description}</p>
|
||
<div className="bg-muted/50 rounded-lg p-4 border-l-4 border-primary">
|
||
<p className="text-sm font-medium text-foreground mb-1">💡 建議:</p>
|
||
<p className="text-sm text-muted-foreground">{scoreLevel.suggestion}</p>
|
||
</div>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
|
||
<div className="text-center">
|
||
<div className="text-2xl font-bold text-green-600 mb-1">{results.correctAnswers}</div>
|
||
<div className="text-sm text-muted-foreground">答對題數</div>
|
||
</div>
|
||
<div className="text-center">
|
||
<div className="text-2xl font-bold text-primary mb-1">{results.totalQuestions}</div>
|
||
<div className="text-sm text-muted-foreground">總題數</div>
|
||
</div>
|
||
<div className="text-center">
|
||
<div className="text-2xl font-bold text-accent mb-1">
|
||
{Math.round((results.correctAnswers / results.totalQuestions) * 100)}%
|
||
</div>
|
||
<div className="text-sm text-muted-foreground">正確率</div>
|
||
</div>
|
||
</div>
|
||
<Progress value={results.score} className="h-3 mb-4" />
|
||
</CardContent>
|
||
</Card>
|
||
|
||
{/* Detailed Results */}
|
||
<Card>
|
||
<CardHeader>
|
||
<CardTitle>詳細結果</CardTitle>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="space-y-6">
|
||
{questions.map((question, index) => {
|
||
const userAnswer = results.answers[index]
|
||
const isCorrect = userAnswer === question.correct_answer
|
||
|
||
// 獲取選項文字
|
||
const getOptionText = (option: string) => {
|
||
switch (option) {
|
||
case 'A': return question.option_a
|
||
case 'B': return question.option_b
|
||
case 'C': return question.option_c
|
||
case 'D': return question.option_d
|
||
case 'E': return question.option_e
|
||
default: return '未知選項'
|
||
}
|
||
}
|
||
|
||
const correctOptionText = getOptionText(question.correct_answer)
|
||
const userOptionText = userAnswer ? getOptionText(userAnswer) : '未作答'
|
||
|
||
return (
|
||
<div key={question.id} className="border rounded-lg p-4">
|
||
<div className="flex items-start gap-3 mb-3">
|
||
<div className="flex-shrink-0 mt-1">
|
||
{isCorrect ? (
|
||
<CheckCircle className="w-5 h-5 text-green-500" />
|
||
) : (
|
||
<XCircle className="w-5 h-5 text-red-500" />
|
||
)}
|
||
</div>
|
||
<div className="flex-1">
|
||
<h3 className="font-medium mb-2 text-balance">
|
||
第{index + 1}題:{question.question}
|
||
</h3>
|
||
<div className="space-y-2 text-sm">
|
||
<div className="flex items-center gap-2">
|
||
<span className="text-muted-foreground">你的答案:</span>
|
||
<Badge variant={isCorrect ? "default" : "destructive"}>
|
||
{userAnswer ? `${userAnswer}. ${userOptionText}` : "未作答"}
|
||
</Badge>
|
||
</div>
|
||
{!isCorrect && (
|
||
<div className="flex items-center gap-2">
|
||
<span className="text-muted-foreground">正確答案:</span>
|
||
<Badge variant="outline" className="border-green-500 text-green-700">
|
||
{question.correct_answer}. {correctOptionText}
|
||
</Badge>
|
||
</div>
|
||
)}
|
||
{question.explanation && (
|
||
<div className="mt-2 p-3 bg-muted/50 rounded text-sm">
|
||
<strong>解析:</strong>
|
||
{question.explanation}
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
})}
|
||
</div>
|
||
</CardContent>
|
||
</Card>
|
||
|
||
{/* Actions */}
|
||
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
||
<Button asChild size="lg">
|
||
<Link href="/">
|
||
<Home className="w-4 h-4 mr-2" />
|
||
<span className="hidden sm:inline">返回首頁</span>
|
||
</Link>
|
||
</Button>
|
||
<Button asChild variant="outline" size="lg">
|
||
<Link href="/tests/logic">
|
||
<RotateCcw className="w-4 h-4 mr-2" />
|
||
重新測試
|
||
</Link>
|
||
</Button>
|
||
<Button asChild variant="outline" size="lg">
|
||
<Link href="/tests/creative">開始創意測試</Link>
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|