-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnote-api.ts
110 lines (95 loc) · 2.38 KB
/
note-api.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
import { TRPCError } from '@trpc/server'
import { observable } from '@trpc/server/observable'
import { Emitter } from 'strict-event-emitter'
import { z } from 'zod'
import { type NoteSelect, insertNoteSchema } from '#/db/note-table'
import { env } from '#/server/env'
import { publicProcedure, router } from '#/server/trpc-server'
type Events = {
onDelete: [{ id: string }]
onUpsert: [NoteSelect]
}
declare global {
var noteEmitter: Emitter<Events>
}
globalThis.noteEmitter ??= new Emitter<Events>()
export const noteApi = router({
onDelete: publicProcedure.subscription(() => {
return observable<{ id: string }>((emit) => {
const emitNote = (data: { id: string }) => {
emit.next(data)
}
noteEmitter.on('onDelete', emitNote)
return () => {
noteEmitter.off('onDelete', emitNote)
}
})
}),
onUpsert: publicProcedure.subscription(() => {
return observable<NoteSelect>((emit) => {
const emitNote = (note: NoteSelect) => {
emit.next(note)
}
noteEmitter.on('onUpsert', emitNote)
return () => {
noteEmitter.off('onUpsert', emitNote)
}
})
}),
delete: publicProcedure
.input(
z.object({
id: z.string(),
}),
)
.mutation(async ({ input, ctx }) => {
if (env.GOOGLE_CLIENT_ID && !ctx.user) {
throw new TRPCError({
code: 'UNAUTHORIZED',
message: 'You need to be authenticated',
})
}
const result = await ctx.queries.note.delete(input.id)
if (result.rowsAffected === 0) {
throw new TRPCError({
code: 'NOT_FOUND',
})
}
noteEmitter.emit('onDelete', { id: input.id })
return { id: input.id }
}),
get: publicProcedure
.input(z.object({ id: z.string() }))
.query(({ ctx, input }) => {
const note = ctx.queries.note.byId(input.id)
if (!note) {
throw new TRPCError({ code: 'BAD_REQUEST', message: 'Note not found' })
}
return note
}),
list: publicProcedure.query(({ ctx }) => {
return ctx.queries.note.list()
}),
upsert: publicProcedure
.input(
insertNoteSchema.omit({
createdAt: true,
updatedAt: true,
}),
)
.mutation(async ({ ctx, input }) => {
if (!ctx.user) {
throw new TRPCError({
code: 'UNAUTHORIZED',
message: 'You need to be authenticated',
})
}
const note = await ctx.queries.note.upsert({
...input,
updatedAt: new Date(),
creatorId: ctx.user.userId,
})
noteEmitter.emit('onUpsert', note)
return note
}),
})