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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
|
import {
faChevronLeft,
faCirclePlay,
faFile,
faLayerGroup,
faPen,
faPlus,
faSpinner,
faTrash,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useCallback, useEffect, useMemo, useState } from "react";
import { Link, useParams } from "wouter";
import { ApiClientError, apiClient } from "../api";
import { CreateNoteModal } from "../components/CreateNoteModal";
import { DeleteCardModal } from "../components/DeleteCardModal";
import { DeleteNoteModal } from "../components/DeleteNoteModal";
import { EditCardModal } from "../components/EditCardModal";
import { EditNoteModal } from "../components/EditNoteModal";
interface Card {
id: string;
deckId: string;
noteId: string;
isReversed: boolean;
front: string;
back: string;
state: number;
due: string;
reps: number;
lapses: number;
createdAt: string;
updatedAt: string;
}
/** Combined type for display: note group */
type CardDisplayItem = { type: "note"; noteId: string; cards: Card[] };
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",
};
/** Component for displaying a group of cards from the same note */
function NoteGroupCard({
noteId,
cards,
index,
onEditNote,
onDeleteNote,
}: {
noteId: string;
cards: Card[];
index: number;
onEditNote: () => void;
onDeleteNote: () => void;
}) {
// Use the first card's front/back as preview (normal card takes precedence)
const previewCard = cards.find((c) => !c.isReversed) ?? cards[0];
if (!previewCard) return null;
return (
<div
data-testid="note-group"
data-note-id={noteId}
className="bg-white rounded-xl border border-border/50 shadow-card hover:shadow-md transition-all duration-200 overflow-hidden"
style={{ animationDelay: `${index * 30}ms` }}
>
{/* Note Header */}
<div className="flex items-center justify-between px-5 py-3 border-b border-border/30 bg-ivory/30">
<div className="flex items-center gap-2">
<FontAwesomeIcon
icon={faLayerGroup}
className="w-4 h-4 text-muted"
aria-hidden="true"
/>
<span className="text-sm font-medium text-slate">
Note ({cards.length} card{cards.length !== 1 ? "s" : ""})
</span>
</div>
<div className="flex items-center gap-1">
<button
type="button"
onClick={onEditNote}
className="p-2 text-muted hover:text-slate hover:bg-white rounded-lg transition-colors"
title="Edit note"
>
<FontAwesomeIcon
icon={faPen}
className="w-4 h-4"
aria-hidden="true"
/>
</button>
<button
type="button"
onClick={onDeleteNote}
className="p-2 text-muted hover:text-error hover:bg-error/5 rounded-lg transition-colors"
title="Delete note"
>
<FontAwesomeIcon
icon={faTrash}
className="w-4 h-4"
aria-hidden="true"
/>
</button>
</div>
</div>
{/* Note Content Preview */}
<div className="p-5">
<div className="grid grid-cols-2 gap-4 mb-4">
<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">
{previewCard.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">
{previewCard.back}
</p>
</div>
</div>
{/* Cards within this note */}
<div className="space-y-2">
{cards.map((card) => (
<div
key={card.id}
data-testid="note-card"
className="flex items-center gap-3 text-xs p-2 bg-ivory/50 rounded-lg"
>
<span
className={`px-2 py-0.5 rounded-full font-medium ${CardStateColors[card.state] || "bg-muted/10 text-muted"}`}
>
{CardStateLabels[card.state] || "Unknown"}
</span>
{card.isReversed ? (
<span className="px-2 py-0.5 rounded-full font-medium bg-purple-100 text-purple-700">
Reversed
</span>
) : (
<span className="px-2 py-0.5 rounded-full font-medium bg-blue-100 text-blue-700">
Normal
</span>
)}
<span className="text-muted">{card.reps} reviews</span>
{card.lapses > 0 && (
<span className="text-muted">{card.lapses} lapses</span>
)}
</div>
))}
</div>
</div>
</div>
);
}
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 [editingNoteId, setEditingNoteId] = useState<string | null>(null);
const [deletingCard, setDeletingCard] = useState<Card | null>(null);
const [deletingNoteId, setDeletingNoteId] = useState<string | null>(null);
// Group cards by note for display
const displayItems = useMemo((): CardDisplayItem[] => {
const noteGroups = new Map<string, Card[]>();
for (const card of cards) {
const existing = noteGroups.get(card.noteId);
if (existing) {
existing.push(card);
} else {
noteGroups.set(card.noteId, [card]);
}
}
// Sort note groups by earliest card creation (newest first)
const sortedNoteGroups = Array.from(noteGroups.entries()).sort(
([, cardsA], [, cardsB]) => {
const minA = Math.min(
...cardsA.map((c) => new Date(c.createdAt).getTime()),
);
const minB = Math.min(
...cardsB.map((c) => new Date(c.createdAt).getTime()),
);
return minB - minA; // Newest first
},
);
const items: CardDisplayItem[] = [];
for (const [noteId, noteCards] of sortedNoteGroups) {
// Sort cards within group: normal first, then reversed
noteCards.sort((a, b) => {
if (a.isReversed === b.isReversed) return 0;
return a.isReversed ? 1 : -1;
});
items.push({ type: "note", noteId, cards: noteCards });
}
return items;
}, [cards]);
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 Note
</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 notes 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 Note
</button>
</div>
)}
{/* Card List - Grouped by Note */}
{cards.length > 0 && (
<div className="space-y-4">
{displayItems.map((item, index) => (
<NoteGroupCard
key={item.noteId}
noteId={item.noteId}
cards={item.cards}
index={index}
onEditNote={() => setEditingNoteId(item.noteId)}
onDeleteNote={() => setDeletingNoteId(item.noteId)}
/>
))}
</div>
)}
</div>
)}
</main>
{/* Modals */}
{deckId && (
<CreateNoteModal
isOpen={isCreateModalOpen}
deckId={deckId}
onClose={() => setIsCreateModalOpen(false)}
onNoteCreated={fetchCards}
/>
)}
{deckId && (
<EditCardModal
isOpen={editingCard !== null}
deckId={deckId}
card={editingCard}
onClose={() => setEditingCard(null)}
onCardUpdated={fetchCards}
/>
)}
{deckId && (
<EditNoteModal
isOpen={editingNoteId !== null}
deckId={deckId}
noteId={editingNoteId}
onClose={() => setEditingNoteId(null)}
onNoteUpdated={fetchCards}
/>
)}
{deckId && (
<DeleteCardModal
isOpen={deletingCard !== null}
deckId={deckId}
card={deletingCard}
onClose={() => setDeletingCard(null)}
onCardDeleted={fetchCards}
/>
)}
{deckId && (
<DeleteNoteModal
isOpen={deletingNoteId !== null}
deckId={deckId}
noteId={deletingNoteId}
onClose={() => setDeletingNoteId(null)}
onNoteDeleted={fetchCards}
/>
)}
</div>
);
}
|