aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/server/repositories/card.ts
blob: 761b31703cdf7702e8aeede0d48d6dd0d7505d98 (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
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
import { and, eq, isNull, lte, sql } from "drizzle-orm";
import { db } from "../db/index.js";
import {
	CardState,
	cards,
	noteFieldTypes,
	noteFieldValues,
	notes,
	noteTypes,
} from "../db/schema.js";
import type {
	Card,
	CardForStudy,
	CardRepository,
	CardWithNoteData,
} from "./types.js";

export const cardRepository: CardRepository = {
	async findByDeckId(deckId: string): Promise<Card[]> {
		const result = await db
			.select()
			.from(cards)
			.where(and(eq(cards.deckId, deckId), isNull(cards.deletedAt)));
		return result;
	},

	async findById(id: string, deckId: string): Promise<Card | undefined> {
		const result = await db
			.select()
			.from(cards)
			.where(
				and(
					eq(cards.id, id),
					eq(cards.deckId, deckId),
					isNull(cards.deletedAt),
				),
			);
		return result[0];
	},

	async findByIdWithNoteData(
		id: string,
		deckId: string,
	): Promise<CardWithNoteData | undefined> {
		const card = await this.findById(id, deckId);
		if (!card) {
			return undefined;
		}

		const noteResult = await db
			.select()
			.from(notes)
			.where(and(eq(notes.id, card.noteId), isNull(notes.deletedAt)));

		const note = noteResult[0];
		if (!note) {
			return undefined;
		}

		const fieldValuesResult = await db
			.select()
			.from(noteFieldValues)
			.where(eq(noteFieldValues.noteId, card.noteId));

		return {
			...card,
			note,
			fieldValues: fieldValuesResult,
		};
	},

	async findByNoteId(noteId: string): Promise<Card[]> {
		const result = await db
			.select()
			.from(cards)
			.where(and(eq(cards.noteId, noteId), isNull(cards.deletedAt)));
		return result;
	},

	async create(
		deckId: string,
		data: {
			noteId: string;
			isReversed: boolean;
			front: string;
			back: string;
		},
	): Promise<Card> {
		const [card] = await db
			.insert(cards)
			.values({
				deckId,
				noteId: data.noteId,
				isReversed: data.isReversed,
				front: data.front,
				back: data.back,
				state: CardState.New,
				due: new Date(),
				stability: 0,
				difficulty: 0,
				elapsedDays: 0,
				scheduledDays: 0,
				reps: 0,
				lapses: 0,
			})
			.returning();
		if (!card) {
			throw new Error("Failed to create card");
		}
		return card;
	},

	async update(
		id: string,
		deckId: string,
		data: {
			front?: string;
			back?: string;
		},
	): Promise<Card | undefined> {
		const result = await db
			.update(cards)
			.set({
				...data,
				updatedAt: new Date(),
				syncVersion: sql`${cards.syncVersion} + 1`,
			})
			.where(
				and(
					eq(cards.id, id),
					eq(cards.deckId, deckId),
					isNull(cards.deletedAt),
				),
			)
			.returning();
		return result[0];
	},

	async softDelete(id: string, deckId: string): Promise<boolean> {
		// First, find the card to get its noteId
		const card = await this.findById(id, deckId);
		if (!card) {
			return false;
		}

		const now = new Date();

		// Soft delete all cards belonging to the same note (including this one and sibling cards)
		await db
			.update(cards)
			.set({
				deletedAt: now,
				updatedAt: now,
				syncVersion: sql`${cards.syncVersion} + 1`,
			})
			.where(and(eq(cards.noteId, card.noteId), isNull(cards.deletedAt)));

		// Soft delete the parent note
		await db
			.update(notes)
			.set({
				deletedAt: now,
				updatedAt: now,
				syncVersion: sql`${notes.syncVersion} + 1`,
			})
			.where(and(eq(notes.id, card.noteId), isNull(notes.deletedAt)));

		return true;
	},

	async softDeleteByNoteId(noteId: string): Promise<boolean> {
		const now = new Date();
		const result = await db
			.update(cards)
			.set({
				deletedAt: now,
				updatedAt: now,
				syncVersion: sql`${cards.syncVersion} + 1`,
			})
			.where(and(eq(cards.noteId, noteId), isNull(cards.deletedAt)))
			.returning({ id: cards.id });
		return result.length > 0;
	},

	async findDueCards(
		deckId: string,
		now: Date,
		limit: number,
	): Promise<Card[]> {
		const result = await db
			.select()
			.from(cards)
			.where(
				and(
					eq(cards.deckId, deckId),
					isNull(cards.deletedAt),
					lte(cards.due, now),
				),
			)
			.orderBy(cards.due)
			.limit(limit);
		return result;
	},

	async findDueCardsWithNoteData(
		deckId: string,
		now: Date,
		limit: number,
	): Promise<CardWithNoteData[]> {
		const dueCards = await this.findDueCards(deckId, now, limit);

		const cardsWithNoteData: CardWithNoteData[] = [];

		for (const card of dueCards) {
			const noteResult = await db
				.select()
				.from(notes)
				.where(and(eq(notes.id, card.noteId), isNull(notes.deletedAt)));

			const note = noteResult[0];
			if (!note) {
				// Note was deleted, skip this card
				continue;
			}

			const fieldValuesResult = await db
				.select()
				.from(noteFieldValues)
				.where(eq(noteFieldValues.noteId, card.noteId));

			cardsWithNoteData.push({
				...card,
				note,
				fieldValues: fieldValuesResult,
			});
		}

		return cardsWithNoteData;
	},

	async findDueCardsForStudy(
		deckId: string,
		now: Date,
		limit: number,
	): Promise<CardForStudy[]> {
		const dueCards = await this.findDueCards(deckId, now, limit);

		const cardsForStudy: CardForStudy[] = [];

		for (const card of dueCards) {
			// Fetch note to get noteTypeId
			const noteResult = await db
				.select()
				.from(notes)
				.where(and(eq(notes.id, card.noteId), isNull(notes.deletedAt)));

			const note = noteResult[0];
			if (!note) {
				// Note was deleted, skip this card
				continue;
			}

			// Fetch note type for templates
			const noteTypeResult = await db
				.select({
					frontTemplate: noteTypes.frontTemplate,
					backTemplate: noteTypes.backTemplate,
				})
				.from(noteTypes)
				.where(
					and(eq(noteTypes.id, note.noteTypeId), isNull(noteTypes.deletedAt)),
				);

			const noteType = noteTypeResult[0];
			if (!noteType) {
				// Note type was deleted, skip this card
				continue;
			}

			// Fetch field values with their field names
			const fieldValuesWithNames = await db
				.select({
					fieldName: noteFieldTypes.name,
					value: noteFieldValues.value,
				})
				.from(noteFieldValues)
				.innerJoin(
					noteFieldTypes,
					eq(noteFieldValues.noteFieldTypeId, noteFieldTypes.id),
				)
				.where(eq(noteFieldValues.noteId, card.noteId));

			// Convert to name-value map
			const fieldValuesMap: Record<string, string> = {};
			for (const fv of fieldValuesWithNames) {
				fieldValuesMap[fv.fieldName] = fv.value;
			}

			cardsForStudy.push({
				...card,
				noteType: {
					frontTemplate: noteType.frontTemplate,
					backTemplate: noteType.backTemplate,
				},
				fieldValuesMap,
			});
		}

		return cardsForStudy;
	},

	async updateFSRSFields(
		id: string,
		deckId: string,
		data: {
			state: number;
			due: Date;
			stability: number;
			difficulty: number;
			elapsedDays: number;
			scheduledDays: number;
			reps: number;
			lapses: number;
			lastReview: Date;
		},
	): Promise<Card | undefined> {
		const result = await db
			.update(cards)
			.set({
				state: data.state,
				due: data.due,
				stability: data.stability,
				difficulty: data.difficulty,
				elapsedDays: data.elapsedDays,
				scheduledDays: data.scheduledDays,
				reps: data.reps,
				lapses: data.lapses,
				lastReview: data.lastReview,
				updatedAt: new Date(),
				syncVersion: sql`${cards.syncVersion} + 1`,
			})
			.where(
				and(
					eq(cards.id, id),
					eq(cards.deckId, deckId),
					isNull(cards.deletedAt),
				),
			)
			.returning();
		return result[0];
	},
};