aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/components/EditDeckModal.tsx
blob: 9a79de828f0614d338255f7d55c0dc11e7cd13d7 (plain)
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
import { type FormEvent, useCallback, useEffect, useState } from "react";
import { ApiClientError, apiClient } from "../api";

interface Deck {
	id: string;
	name: string;
	description: string | null;
	defaultNoteTypeId: string | null;
}

interface NoteTypeSummary {
	id: string;
	name: string;
}

interface EditDeckModalProps {
	isOpen: boolean;
	deck: Deck | null;
	onClose: () => void;
	onDeckUpdated: () => void;
}

export function EditDeckModal({
	isOpen,
	deck,
	onClose,
	onDeckUpdated,
}: EditDeckModalProps) {
	const [name, setName] = useState("");
	const [description, setDescription] = useState("");
	const [defaultNoteTypeId, setDefaultNoteTypeId] = useState<string | null>(
		null,
	);
	const [noteTypes, setNoteTypes] = useState<NoteTypeSummary[]>([]);
	const [isLoadingNoteTypes, setIsLoadingNoteTypes] = useState(false);
	const [error, setError] = useState<string | null>(null);
	const [isSubmitting, setIsSubmitting] = useState(false);

	const fetchNoteTypes = useCallback(async () => {
		setIsLoadingNoteTypes(true);
		try {
			const res = await apiClient.rpc.api["note-types"].$get();
			const data = await apiClient.handleResponse<{
				noteTypes: NoteTypeSummary[];
			}>(res);
			setNoteTypes(data.noteTypes);
		} catch {
			// Non-critical: note type list is optional
		} finally {
			setIsLoadingNoteTypes(false);
		}
	}, []);

	// Sync form state when deck changes
	useEffect(() => {
		if (deck) {
			setName(deck.name);
			setDescription(deck.description ?? "");
			setDefaultNoteTypeId(deck.defaultNoteTypeId);
			setError(null);
		}
	}, [deck]);

	useEffect(() => {
		if (isOpen) {
			fetchNoteTypes();
		}
	}, [isOpen, fetchNoteTypes]);

	const handleClose = () => {
		setError(null);
		onClose();
	};

	const handleSubmit = async (e: FormEvent) => {
		e.preventDefault();
		if (!deck) return;

		setError(null);
		setIsSubmitting(true);

		try {
			const res = await apiClient.rpc.api.decks[":id"].$put({
				param: { id: deck.id },
				json: {
					name: name.trim(),
					description: description.trim() || null,
					defaultNoteTypeId: defaultNoteTypeId || null,
				},
			});
			await apiClient.handleResponse(res);

			onDeckUpdated();
			onClose();
		} catch (err) {
			if (err instanceof ApiClientError) {
				setError(err.message);
			} else {
				setError("Failed to update deck. Please try again.");
			}
		} finally {
			setIsSubmitting(false);
		}
	};

	if (!isOpen || !deck) {
		return null;
	}

	return (
		<div
			role="dialog"
			aria-modal="true"
			aria-labelledby="edit-deck-title"
			className="fixed inset-0 bg-ink/40 backdrop-blur-sm flex items-center justify-center z-50 p-4 animate-fade-in"
			onClick={(e) => {
				if (e.target === e.currentTarget) {
					handleClose();
				}
			}}
			onKeyDown={(e) => {
				if (e.key === "Escape") {
					handleClose();
				}
			}}
		>
			<div className="bg-white rounded-2xl shadow-xl w-full max-w-md animate-scale-in">
				<div className="p-6">
					<h2
						id="edit-deck-title"
						className="font-display text-xl font-medium text-ink mb-6"
					>
						Edit Deck
					</h2>

					<form onSubmit={handleSubmit} className="space-y-4">
						{error && (
							<div
								role="alert"
								className="bg-error/5 text-error text-sm px-4 py-3 rounded-lg border border-error/20"
							>
								{error}
							</div>
						)}

						<div>
							<label
								htmlFor="edit-deck-name"
								className="block text-sm font-medium text-slate mb-1.5"
							>
								Name
							</label>
							<input
								id="edit-deck-name"
								type="text"
								value={name}
								onChange={(e) => setName(e.target.value)}
								required
								maxLength={255}
								disabled={isSubmitting}
								className="w-full px-4 py-2.5 bg-ivory border border-border rounded-lg text-slate placeholder-muted transition-all duration-200 hover:border-muted focus:border-primary focus:ring-2 focus:ring-primary/10 disabled:opacity-50 disabled:cursor-not-allowed"
							/>
						</div>

						<div>
							<label
								htmlFor="edit-deck-description"
								className="block text-sm font-medium text-slate mb-1.5"
							>
								Description{" "}
								<span className="text-muted font-normal">(optional)</span>
							</label>
							<textarea
								id="edit-deck-description"
								value={description}
								onChange={(e) => setDescription(e.target.value)}
								maxLength={1000}
								disabled={isSubmitting}
								rows={3}
								className="w-full px-4 py-2.5 bg-ivory border border-border rounded-lg text-slate placeholder-muted transition-all duration-200 hover:border-muted focus:border-primary focus:ring-2 focus:ring-primary/10 disabled:opacity-50 disabled:cursor-not-allowed resize-none"
							/>
						</div>

						<div>
							<label
								htmlFor="edit-deck-default-note-type"
								className="block text-sm font-medium text-slate mb-1.5"
							>
								Default Note Type{" "}
								<span className="text-muted font-normal">(optional)</span>
							</label>
							<select
								id="edit-deck-default-note-type"
								value={defaultNoteTypeId ?? ""}
								onChange={(e) => setDefaultNoteTypeId(e.target.value || null)}
								disabled={isSubmitting || isLoadingNoteTypes}
								className="w-full px-4 py-2.5 bg-ivory border border-border rounded-lg text-slate transition-all duration-200 hover:border-muted focus:border-primary focus:ring-2 focus:ring-primary/10 disabled:opacity-50 disabled:cursor-not-allowed"
							>
								<option value="">None</option>
								{noteTypes.map((nt) => (
									<option key={nt.id} value={nt.id}>
										{nt.name}
									</option>
								))}
							</select>
						</div>

						<div className="flex gap-3 justify-end pt-2">
							<button
								type="button"
								onClick={handleClose}
								disabled={isSubmitting}
								className="px-4 py-2 text-slate hover:bg-ivory rounded-lg transition-colors disabled:opacity-50"
							>
								Cancel
							</button>
							<button
								type="submit"
								disabled={isSubmitting || !name.trim()}
								className="px-4 py-2 bg-primary hover:bg-primary-dark text-white font-medium rounded-lg transition-all duration-200 disabled:opacity-50 disabled:cursor-not-allowed"
							>
								{isSubmitting ? "Saving..." : "Save Changes"}
							</button>
						</div>
					</form>
				</div>
			</div>
		</div>
	);
}