-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocuments.ts
355 lines (267 loc) Β· 7.81 KB
/
documents.ts
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
import { v } from "convex/values";
import { mutation, query } from "./_generated/server";
import { Doc, Id } from "./_generated/dataModel";
export const create = mutation({
args: {
title: v.string(),
parentDocument: v.optional(v.id("documents")),
},
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const document = await ctx.db.insert("documents", {
title: args.title,
parentDocument: args.parentDocument,
userId,
isArchived: false,
isPublished: false,
});
return document;
},
});
export const getSidebar = query({
args: {
parentDocument: v.optional(v.id("documents")),
},
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const documents = await ctx.db
.query("documents")
.withIndex("by_user_parent", (q) =>
q.eq("userId", userId).eq("parentDocument", args.parentDocument)
)
.filter((q) => q.eq(q.field("isArchived"), false))
.order("desc")
.collect();
return documents;
},
});
export const archive = mutation({
args: { id: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const recursiveArchive = async (documentId: Id<"documents">) => {
const children = await ctx.db
.query("documents")
.withIndex("by_user_parent", (q) =>
q.eq("userId", userId).eq("parentDocument", documentId)
)
.collect();
for (const child of children) {
await ctx.db.patch(child._id, {
isArchived: true,
});
await recursiveArchive(child._id);
}
};
const document = await ctx.db.patch(args.id, {
isArchived: true,
});
recursiveArchive(args.id);
return document;
},
});
export const getTrash = query({
handler: async (ctx) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const documents = await ctx.db
.query("documents")
.withIndex("by_user", (q) => q.eq("userId", userId))
.filter((q) => q.eq(q.field("isArchived"), true))
.order("desc")
.collect();
return documents;
},
});
export const restore = mutation({
args: { id: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const recursiveRestore = async (documentId: Id<"documents">) => {
const children = await ctx.db
.query("documents")
.withIndex("by_user_parent", (q) =>
q.eq("userId", userId).eq("parentDocument", documentId)
)
.collect();
for (const child of children) {
await ctx.db.patch(child._id, {
isArchived: false,
});
await recursiveRestore(child._id);
}
};
const options: Partial<Doc<"documents">> = {
isArchived: false,
};
if (existingDocument.parentDocument) {
const parent = await ctx.db.get(existingDocument.parentDocument);
if (parent?.isArchived) {
options.parentDocument = undefined;
}
}
const document = await ctx.db.patch(args.id, options);
recursiveRestore(args.id);
return document;
},
});
export const remove = mutation({
args: { id: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const document = await ctx.db.delete(args.id);
return document;
},
});
export const getSearch = query({
handler: async (ctx) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const documents = await ctx.db
.query("documents")
.withIndex("by_user", (q) => q.eq("userId", userId))
.filter((q) => q.eq(q.field("isArchived"), false))
.order("desc")
.collect();
return documents;
},
});
export const getById = query({
args: { documentId: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
const document = await ctx.db.get(args.documentId);
if (!document) {
throw new Error("Document not found");
}
if (document.isPublished && !document.isArchived) {
return document;
}
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
if (document.userId !== userId) {
throw new Error("Not authorized");
}
return document;
},
});
export const update = mutation({
args: {
id: v.id("documents"),
title: v.optional(v.string()),
content: v.optional(v.string()),
coverImage: v.optional(v.string()),
icon: v.optional(v.string()),
isPublished: v.optional(v.boolean()),
},
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const { id, ...rest } = args;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const document = await ctx.db.patch(args.id, {
...rest,
});
return document;
},
});
export const removeIcon = mutation({
args: { id: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const document = await ctx.db.patch(args.id, {
icon: undefined,
});
return document;
},
});
export const removeCoverImage = mutation({
args: { id: v.id("documents") },
handler: async (ctx, args) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) {
throw new Error("Not authenticated");
}
const userId = identity.subject;
const existingDocument = await ctx.db.get(args.id);
if (!existingDocument) {
throw new Error("Document not found");
}
if (existingDocument.userId !== userId) {
throw new Error("Not authorized");
}
const document = await ctx.db.patch(args.id, {
coverImage: undefined,
});
return document;
},
});