1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
import {
faChevronLeft,
faCirclePlay,
faFile,
faPen,
faPlus,
faSpinner,
faTrash,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useCallback, useEffect, useState } from "react";
import { Link, useParams } from "wouter";
import { ApiClientError, apiClient } from "../api";
import { CreateCardModal } from "../components/CreateCardModal";
import { DeleteCardModal } from "../components/DeleteCardModal";
import { EditCardModal } from "../components/EditCardModal";
interface Card {
id: string;
deckId: string;
front: string;
back: string;
state: number;
due: string;
reps: number;
lapses: number;
createdAt: string;
updatedAt: string;
}
interface Deck {
id: string;
name: string;
description: string | null;
}
const CardStateLabels: Record<number, string> = {
0: "New",
1: "Learning",
2: "Review",
3: "Relearning",
};
const CardStateColors: Record<number, string> = {
0: "bg-info/10 text-info",
1: "bg-warning/10 text-warning",
2: "bg-success/10 text-success",
3: "bg-error/10 text-error",
};
export function DeckDetailPage() {
const { deckId } = useParams<{ deckId: string }>();
const [deck, setDeck] = useState<Deck | null>(null);
const [cards, setCards] = useState<Card[]>([]);
const [isLoading, setIsLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [isCreateModalOpen, setIsCreateModalOpen] = useState(false);
const [editingCard, setEditingCard] = useState<Card | null>(null);
const [deletingCard, setDeletingCard] = useState<Card | null>(null);
const fetchDeck = useCallback(async () => {
if (!deckId) return;
const authHeader = apiClient.getAuthHeader();
if (!authHeader) {
throw new ApiClientError("Not authenticated", 401);
}
const res = await fetch(`/api/decks/${deckId}`, {
headers: authHeader,
});
if (!res.ok) {
const errorBody = await res.json().catch(() => ({}));
throw new ApiClientError(
(errorBody as { error?: string }).error ||
`Request failed with status ${res.status}`,
res.status,
);
}
const data = await res.json();
setDeck(data.deck);
}, [deckId]);
const fetchCards = useCallback(async () => {
if (!deckId) return;
const authHeader = apiClient.getAuthHeader();
if (!authHeader) {
throw new ApiClientError("Not authenticated", 401);
}
const res = await fetch(`/api/decks/${deckId}/cards`, {
headers: authHeader,
});
if (!res.ok) {
const errorBody = await res.json().catch(() => ({}));
throw new ApiClientError(
(errorBody as { error?: string }).error ||
`Request failed with status ${res.status}`,
res.status,
);
}
const data = await res.json();
setCards(data.cards);
}, [deckId]);
const fetchData = useCallback(async () => {
setIsLoading(true);
setError(null);
try {
await Promise.all([fetchDeck(), fetchCards()]);
} catch (err) {
if (err instanceof ApiClientError) {
setError(err.message);
} else {
setError("Failed to load data. Please try again.");
}
} finally {
setIsLoading(false);
}
}, [fetchDeck, fetchCards]);
useEffect(() => {
fetchData();
}, [fetchData]);
if (!deckId) {
return (
<div className="min-h-screen bg-cream flex items-center justify-center">
<div className="text-center">
<p className="text-muted mb-4">Invalid deck ID</p>
<Link
href="/"
className="text-primary hover:text-primary-dark font-medium"
>
Back to decks
</Link>
</div>
</div>
);
}
return (
<div className="min-h-screen bg-cream">
{/* Header */}
<header className="bg-white border-b border-border/50">
<div className="max-w-4xl mx-auto px-4 py-4">
<Link
href="/"
className="inline-flex items-center gap-2 text-muted hover:text-slate transition-colors text-sm"
>
<FontAwesomeIcon
icon={faChevronLeft}
className="w-4 h-4"
aria-hidden="true"
/>
Back to Decks
</Link>
</div>
</header>
{/* Main Content */}
<main className="max-w-4xl mx-auto px-4 py-8">
{/* Loading State */}
{isLoading && (
<div className="flex items-center justify-center py-12">
<FontAwesomeIcon
icon={faSpinner}
className="h-8 w-8 text-primary animate-spin"
aria-hidden="true"
/>
</div>
)}
{/* Error State */}
{error && (
<div
role="alert"
className="bg-error/5 border border-error/20 rounded-xl p-4 flex items-center justify-between"
>
<span className="text-error">{error}</span>
<button
type="button"
onClick={fetchData}
className="text-error hover:text-error/80 font-medium text-sm"
>
Retry
</button>
</div>
)}
{/* Deck Content */}
{!isLoading && !error && deck && (
<div className="animate-fade-in">
{/* Deck Header */}
<div className="mb-8">
<h1 className="font-display text-3xl font-semibold text-ink mb-2">
{deck.name}
</h1>
{deck.description && (
<p className="text-muted">{deck.description}</p>
)}
</div>
{/* Study Button */}
<div className="mb-8">
<Link
href={`/decks/${deckId}/study`}
className="inline-flex items-center gap-2 bg-success hover:bg-success/90 text-white font-medium py-3 px-6 rounded-xl transition-all duration-200 active:scale-[0.98] shadow-sm hover:shadow-md"
>
<FontAwesomeIcon
icon={faCirclePlay}
className="w-5 h-5"
aria-hidden="true"
/>
Study Now
</Link>
</div>
{/* Cards Section */}
<div className="flex items-center justify-between mb-6">
<h2 className="font-display text-xl font-medium text-slate">
Cards{" "}
<span className="text-muted font-normal">({cards.length})</span>
</h2>
<button
type="button"
onClick={() => setIsCreateModalOpen(true)}
className="inline-flex items-center gap-2 bg-primary hover:bg-primary-dark text-white font-medium py-2 px-4 rounded-lg transition-all duration-200 active:scale-[0.98]"
>
<FontAwesomeIcon
icon={faPlus}
className="w-5 h-5"
aria-hidden="true"
/>
Add Card
</button>
</div>
{/* Empty State */}
{cards.length === 0 && (
<div className="text-center py-12 bg-white rounded-xl border border-border/50">
<div className="w-14 h-14 mx-auto mb-4 bg-ivory rounded-xl flex items-center justify-center">
<FontAwesomeIcon
icon={faFile}
className="w-7 h-7 text-muted"
aria-hidden="true"
/>
</div>
<h3 className="font-display text-lg font-medium text-slate mb-2">
No cards yet
</h3>
<p className="text-muted text-sm mb-4">
Add cards to start studying
</p>
<button
type="button"
onClick={() => setIsCreateModalOpen(true)}
className="inline-flex items-center gap-2 bg-primary hover:bg-primary-dark text-white font-medium py-2 px-4 rounded-lg transition-all duration-200"
>
<FontAwesomeIcon
icon={faPlus}
className="w-5 h-5"
aria-hidden="true"
/>
Add Your First Card
</button>
</div>
)}
{/* Card List */}
{cards.length > 0 && (
<div className="space-y-3">
{cards.map((card, index) => (
<div
key={card.id}
className="bg-white rounded-xl border border-border/50 p-5 shadow-card hover:shadow-md transition-all duration-200"
style={{ animationDelay: `${index * 30}ms` }}
>
<div className="flex items-start justify-between gap-4">
<div className="flex-1 min-w-0">
{/* Front/Back Preview */}
<div className="grid grid-cols-2 gap-4 mb-3">
<div>
<span className="text-xs font-medium text-muted uppercase tracking-wide">
Front
</span>
<p className="mt-1 text-slate text-sm line-clamp-2 whitespace-pre-wrap break-words">
{card.front}
</p>
</div>
<div>
<span className="text-xs font-medium text-muted uppercase tracking-wide">
Back
</span>
<p className="mt-1 text-slate text-sm line-clamp-2 whitespace-pre-wrap break-words">
{card.back}
</p>
</div>
</div>
{/* Card Stats */}
<div className="flex items-center gap-3 text-xs">
<span
className={`px-2 py-0.5 rounded-full font-medium ${CardStateColors[card.state] || "bg-muted/10 text-muted"}`}
>
{CardStateLabels[card.state] || "Unknown"}
</span>
<span className="text-muted">
{card.reps} reviews
</span>
{card.lapses > 0 && (
<span className="text-muted">
{card.lapses} lapses
</span>
)}
</div>
</div>
{/* Actions */}
<div className="flex items-center gap-1 shrink-0">
<button
type="button"
onClick={() => setEditingCard(card)}
className="p-2 text-muted hover:text-slate hover:bg-ivory rounded-lg transition-colors"
title="Edit card"
>
<FontAwesomeIcon
icon={faPen}
className="w-4 h-4"
aria-hidden="true"
/>
</button>
<button
type="button"
onClick={() => setDeletingCard(card)}
className="p-2 text-muted hover:text-error hover:bg-error/5 rounded-lg transition-colors"
title="Delete card"
>
<FontAwesomeIcon
icon={faTrash}
className="w-4 h-4"
aria-hidden="true"
/>
</button>
</div>
</div>
</div>
))}
</div>
)}
</div>
)}
</main>
{/* Modals */}
{deckId && (
<CreateCardModal
isOpen={isCreateModalOpen}
deckId={deckId}
onClose={() => setIsCreateModalOpen(false)}
onCardCreated={fetchCards}
/>
)}
{deckId && (
<EditCardModal
isOpen={editingCard !== null}
deckId={deckId}
card={editingCard}
onClose={() => setEditingCard(null)}
onCardUpdated={fetchCards}
/>
)}
{deckId && (
<DeleteCardModal
isOpen={deletingCard !== null}
deckId={deckId}
card={deletingCard}
onClose={() => setDeletingCard(null)}
onCardDeleted={fetchCards}
/>
)}
</div>
);
}
|