'use client' import { useState, useEffect, use } from 'react' import { useRouter, useSearchParams } from 'next/navigation' import { Navigation } from '@/components/Navigation' import { ProtectedRoute } from '@/components/ProtectedRoute' import { useToast } from '@/components/Toast' import { flashcardsService, type Flashcard } from '@/lib/services/flashcards' interface FlashcardDetailPageProps { params: Promise<{ id: string }> } export default function FlashcardDetailPage({ params }: FlashcardDetailPageProps) { const { id } = use(params) return ( ) } function FlashcardDetailContent({ cardId }: { cardId: string }) { const router = useRouter() const searchParams = useSearchParams() const toast = useToast() const [flashcard, setFlashcard] = useState(null) const [loading, setLoading] = useState(true) const [error, setError] = useState(null) const [isEditing, setIsEditing] = useState(false) const [editedCard, setEditedCard] = useState(null) // 圖片生成狀態 const [isGeneratingImage, setIsGeneratingImage] = useState(false) const [generationProgress, setGenerationProgress] = useState('') // 假資料 - 用於展示效果 const mockCards: {[key: string]: any} = { 'mock1': { id: 'mock1', word: 'hello', translation: '你好', partOfSpeech: 'interjection', pronunciation: '/həˈloʊ/', definition: 'A greeting word used when meeting someone or beginning a phone conversation', example: 'Hello, how are you today?', exampleTranslation: '你好,你今天怎麼樣?', masteryLevel: 95, timesReviewed: 15, isFavorite: true, nextReviewDate: '2025-09-21', cardSet: { name: '基礎詞彙', color: 'bg-blue-500' }, difficultyLevel: 'A1', createdAt: '2025-09-17', synonyms: ['hi', 'greetings', 'good day'], // 添加圖片欄位 exampleImages: [], hasExampleImage: false, primaryImageUrl: null }, 'mock2': { id: 'mock2', word: 'elaborate', translation: '詳細說明', partOfSpeech: 'verb', pronunciation: '/ɪˈlæbərət/', definition: 'To explain something in more detail; to develop or present a theory, policy, or system in further detail', example: 'Could you elaborate on your proposal?', exampleTranslation: '你能詳細說明一下你的提案嗎?', masteryLevel: 45, timesReviewed: 5, isFavorite: false, nextReviewDate: '2025-09-19', cardSet: { name: '高級詞彙', color: 'bg-purple-500' }, difficultyLevel: 'B2', createdAt: '2025-09-14', synonyms: ['explain', 'detail', 'expand', 'clarify'], // 添加圖片欄位 exampleImages: [], hasExampleImage: false, primaryImageUrl: null } } // 載入詞卡資料 useEffect(() => { const loadFlashcard = async () => { try { setLoading(true) // 首先檢查是否為假資料 if (mockCards[cardId]) { setFlashcard(mockCards[cardId]) setEditedCard(mockCards[cardId]) setLoading(false) return } // 載入真實詞卡 - 使用直接 API 調用 const result = await flashcardsService.getFlashcard(cardId) if (result.success && result.data) { setFlashcard(result.data) setEditedCard(result.data) } else { throw new Error(result.error || '詞卡不存在') } } catch (err) { setError('載入詞卡時發生錯誤') } finally { setLoading(false) } } loadFlashcard() }, [cardId]) // 檢查 URL 參數,自動開啟編輯模式 useEffect(() => { if (searchParams.get('edit') === 'true' && flashcard) { setIsEditing(true) // 清理 URL 參數,保持 URL 乾淨 router.replace(`/flashcards/${cardId}`) } }, [flashcard, searchParams, cardId, router]) // 獲取CEFR等級顏色 const getCEFRColor = (level: string) => { switch (level) { case 'A1': return 'bg-green-100 text-green-700 border-green-200' case 'A2': return 'bg-blue-100 text-blue-700 border-blue-200' case 'B1': return 'bg-yellow-100 text-yellow-700 border-yellow-200' case 'B2': return 'bg-orange-100 text-orange-700 border-orange-200' case 'C1': return 'bg-red-100 text-red-700 border-red-200' case 'C2': return 'bg-purple-100 text-purple-700 border-purple-200' default: return 'bg-gray-100 text-gray-700 border-gray-200' } } // 獲取例句圖片 - 使用 API 資料 const getExampleImage = (card: Flashcard): string | null => { return card.primaryImageUrl || null } // 檢查詞彙是否有例句圖片 - 使用 API 資料 const hasExampleImage = (card: Flashcard): boolean => { return card.hasExampleImage } // 詞性簡寫轉換 const getPartOfSpeechDisplay = (partOfSpeech: string): string => { const shortMap: {[key: string]: string} = { 'noun': 'n.', 'verb': 'v.', 'adjective': 'adj.', 'adverb': 'adv.', 'preposition': 'prep.', 'interjection': 'int.', 'phrase': 'phr.' } // 處理複合詞性 (如 "preposition/adverb") if (partOfSpeech?.includes('/')) { return partOfSpeech.split('/').map(p => shortMap[p.trim()] || p.trim()).join('/') } return shortMap[partOfSpeech] || partOfSpeech || '' } // 處理收藏切換 const handleToggleFavorite = async () => { if (!flashcard) return try { // 假資料處理 if (flashcard.id.startsWith('mock')) { const updated = { ...flashcard, isFavorite: !flashcard.isFavorite } setFlashcard(updated) setEditedCard(updated) toast.success(`${flashcard.isFavorite ? '已取消收藏' : '已加入收藏'}「${flashcard.word}」`) return } // 真實API調用 const result = await flashcardsService.toggleFavorite(flashcard.id) if (result.success) { setFlashcard(prev => prev ? { ...prev, isFavorite: !prev.isFavorite } : null) toast.success(`${flashcard.isFavorite ? '已取消收藏' : '已加入收藏'}「${flashcard.word}」`) } } catch (error) { toast.error('操作失敗,請重試') } } // 處理編輯保存 const handleSaveEdit = async () => { if (!flashcard || !editedCard) return try { // 假資料處理 if (flashcard.id.startsWith('mock')) { setFlashcard(editedCard) setIsEditing(false) toast.success('詞卡更新成功!') return } // 真實API調用 const result = await flashcardsService.updateFlashcard(flashcard.id, { word: editedCard.word, translation: editedCard.translation, definition: editedCard.definition, pronunciation: editedCard.pronunciation, partOfSpeech: editedCard.partOfSpeech, example: editedCard.example, exampleTranslation: editedCard.exampleTranslation, difficultyLevel: editedCard.difficultyLevel }) if (result.success) { setFlashcard(editedCard) setIsEditing(false) toast.success('詞卡更新成功!') } else { toast.error(result.error || '更新失敗') } } catch (error) { toast.error('更新失敗,請重試') } } // 處理刪除 const handleDelete = async () => { if (!flashcard) return if (!confirm(`確定要刪除詞卡「${flashcard.word}」嗎?`)) { return } try { // 假資料處理 if (flashcard.id.startsWith('mock')) { toast.success('詞卡已刪除(模擬)') router.push('/flashcards') return } // 真實API調用 const result = await flashcardsService.deleteFlashcard(flashcard.id) if (result.success) { toast.success('詞卡已刪除') router.push('/flashcards') } else { toast.error(result.error || '刪除失敗') } } catch (error) { toast.error('刪除失敗,請重試') } } // 處理圖片生成 const handleGenerateImage = async () => { if (!flashcard || isGeneratingImage) return try { setIsGeneratingImage(true) setGenerationProgress('啟動生成中...') toast.info(`開始為「${flashcard.word}」生成例句圖片...`) const generateResult = await imageGenerationService.generateImage(flashcard.id) if (!generateResult.success || !generateResult.data) { throw new Error(generateResult.error || '啟動生成失敗') } const requestId = generateResult.data.requestId setGenerationProgress('Gemini 生成描述中...') const finalStatus = await imageGenerationService.pollUntilComplete( requestId, (status) => { const stage = status.stages.gemini.status === 'completed' ? 'Replicate 生成圖片中...' : 'Gemini 生成描述中...' setGenerationProgress(stage) }, 5 ) if (finalStatus.overallStatus === 'completed') { setGenerationProgress('生成完成,載入中...') // 重新載入詞卡資料 const result = await flashcardsService.getFlashcard(cardId) if (result.success && result.data) { setFlashcard(result.data) setEditedCard(result.data) } toast.success(`「${flashcard.word}」的例句圖片生成完成!`) } else { throw new Error('圖片生成未完成') } } catch (error: any) { toast.error(`圖片生成失敗: ${error.message || '未知錯誤'}`) } finally { setIsGeneratingImage(false) setGenerationProgress('') } } if (loading) { return (
載入中...
) } if (error || !flashcard) { return (
{error || '詞卡不存在'}
) } return (
{/* 導航欄 */}
{/* 主要詞卡內容 - 學習功能風格 */}
{/* CEFR標籤 - 右上角 */}
{(flashcard as any).difficultyLevel || 'A1'}
{/* 標題區 */}

{flashcard.word}

{getPartOfSpeechDisplay(flashcard.partOfSpeech)} {flashcard.pronunciation}
{/* 學習統計 */}
{flashcard.masteryLevel}%
掌握程度
{flashcard.timesReviewed}
複習次數
{Math.ceil((new Date(flashcard.nextReviewDate).getTime() - new Date().getTime()) / (1000 * 60 * 60 * 24))}
天後複習
{/* 內容區 - 學習卡片風格 */}
{/* 翻譯區塊 */}

中文翻譯

{isEditing ? ( setEditedCard((prev: any) => ({ ...prev, translation: e.target.value }))} className="w-full p-3 border border-green-300 rounded-lg focus:ring-2 focus:ring-green-500 bg-white" placeholder="輸入中文翻譯" /> ) : (

{flashcard.translation}

)}
{/* 定義區塊 */}

英文定義

{isEditing ? (