-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.ts
286 lines (254 loc) · 8.84 KB
/
schema.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
import Mongoose, { Types } from 'mongoose';
import { z as zod, ZodTypeAny, ZodLazy, ZodObject, ZodArray } from 'zod';
import { AnyProcedure, inferProcedureOutput, AnyRouter, AnyTRPCClientTypes, TRPCRouterRecord } from '@trpc/server';
export type { inferRouterInputs } from '@trpc/server';
export const z = zod;
// @ts-ignore
export const ObjectId = z.union([
z.instanceof(Types.ObjectId), // Accept Mongoose ObjectId instances
z.string().refine((value) => Mongoose.isValidObjectId(value), {
// Accept valid ObjectId strings
message: 'Invalid ObjectId',
}),
]);
export const Anything = z.any();
export const Nothing = z.object({});
export const Signature = z.object({ hash: z.string(), address: z.string() });
export const UnsignedData = z.object({ data: z.any() });
export const SignedData = z.object({
data: z.any(),
signature: Signature,
});
export const AnyInput = z.any();
export const OnlySignatureInput = z.object({ signature: Signature });
export const NoDataOutput = z.object({ status: z.number() });
export const AnyDataOutput = z.object({ data: z.any(), status: z.number() });
export enum Status {
Paused = 'Paused',
Pending = 'Pending',
Active = 'Active',
Archived = 'Archived',
}
export type Meta = {
[key: string]: unknown;
};
export const Common = z.object({
id: ObjectId.optional(),
createdById: ObjectId.optional(),
editedById: ObjectId.optional(),
deletedById: ObjectId.optional(),
createdDate: z.date().default(() => new Date()), // Default matches Mongoose
updatedDate: z.date().optional(),
deletedDate: z.date().optional(),
meta: z.any(), // Default value set here matches Mongoose
data: z.any(), // Default value set here matches Mongoose
status: z.enum(['Paused', 'Pending', 'Active', 'Archived']).default('Active'), // Default set in StatusEnum matches Mongoose
});
export type Common = zod.infer<typeof Common>;
export const Entity = z
.object({
id: z.string().min(24).max(24).trim().optional(),
key: z.string().min(1).max(200).trim().optional(),
name: z.string().min(1).max(200).trim().optional(),
description: z.string().optional(),
applicationId: ObjectId.optional(),
ownerId: ObjectId.optional(),
})
.merge(Common);
export type Entity = zod.infer<typeof Entity>;
const QueryFilterOperators = z.object({
equals: z.any().optional(),
not: z.any().optional(),
in: z.array(z.any()).optional(),
notIn: z.array(z.any()).optional(),
lt: z.any().optional(),
lte: z.any().optional(),
gt: z.any().optional(),
gte: z.any().optional(),
contains: z.string().optional(),
startsWith: z.string().optional(),
endsWith: z.string().optional(),
mode: z.enum(['default', 'insensitive']).optional(),
});
const QueryWhereSchema = z.lazy(() =>
z.object({
AND: z.array(QueryWhereSchema).optional(),
OR: z.array(QueryWhereSchema).optional(),
NOT: z.array(QueryWhereSchema).optional(),
id: QueryFilterOperators.optional(),
key: QueryFilterOperators.optional(),
name: QueryFilterOperators.optional(),
email: QueryFilterOperators.optional(),
status: QueryFilterOperators.optional(),
})
);
export const Query = z.object({
skip: z.number().default(0).optional(),
take: z.number().default(10).optional(),
cursor: z.record(z.any()).optional(),
where: QueryWhereSchema.optional(),
orderBy: z.record(z.enum(['asc', 'desc'])).optional(),
include: z.record(z.boolean()).optional(),
select: z.record(z.boolean()).optional(),
});
// Operators for filtering in a Prisma-like way
type PrismaFilterOperators<T extends ZodTypeAny> = zod.ZodObject<
{
equals?: T;
not?: T;
in?: zod.ZodArray<T>;
notIn?: zod.ZodArray<T>;
lt?: T;
lte?: T;
gt?: T;
gte?: T;
contains?: zod.ZodString; // T extends zod.ZodString ? zod.ZodString : never;
startsWith?: zod.ZodString; // T extends zod.ZodString ? zod.ZodString : never;
endsWith?: zod.ZodString; // T extends zod.ZodString ? zod.ZodString : never;
mode?: zod.ZodString; // T extends zod.ZodString ? zod.ZodEnum<['default', 'insensitive']> : never;
},
'strip',
ZodTypeAny
>;
// Level 0: No AND, OR, NOT
type PrismaWhereLevel0<T extends zod.ZodRawShape> = ZodObject<
{
[K in keyof T]?: PrismaFilterOperators<T[K]>;
},
'strip',
ZodTypeAny
>;
// Level 1: Includes AND, OR, NOT of Level 0
type PrismaWhereLevel1<T extends zod.ZodRawShape> = ZodObject<
{
AND?: ZodArray<ZodLazy<PrismaWhereLevel0<T>>>;
OR?: ZodArray<ZodLazy<PrismaWhereLevel0<T>>>;
NOT?: ZodArray<ZodLazy<PrismaWhereLevel0<T>>>;
} & {
[K in keyof T]?: PrismaFilterOperators<T[K]>;
},
'strip',
ZodTypeAny
>;
// Level 2: Includes AND, OR, NOT of Level 1
type PrismaWhereLevel2<T extends zod.ZodRawShape> = ZodObject<
{
AND?: ZodArray<ZodLazy<PrismaWhereLevel1<T>>>;
OR?: ZodArray<ZodLazy<PrismaWhereLevel1<T>>>;
NOT?: ZodArray<ZodLazy<PrismaWhereLevel1<T>>>;
} & {
[K in keyof T]?: PrismaFilterOperators<T[K]>;
},
'strip',
ZodTypeAny
>;
// Level 3: Includes AND, OR, NOT of Level 2
type PrismaWhereLevel3<T extends zod.ZodRawShape> = ZodObject<
{
AND?: ZodArray<ZodLazy<PrismaWhereLevel2<T>>>;
OR?: ZodArray<ZodLazy<PrismaWhereLevel2<T>>>;
NOT?: ZodArray<ZodLazy<PrismaWhereLevel2<T>>>;
} & {
[K in keyof T]?: PrismaFilterOperators<T[K]>;
},
'strip',
ZodTypeAny
>;
// Level 4: Includes AND, OR, NOT of Level 3
type PrismaWhereLevel4<T extends zod.ZodRawShape> = ZodObject<
{
AND?: ZodArray<ZodLazy<PrismaWhereLevel3<T>>>;
OR?: ZodArray<ZodLazy<PrismaWhereLevel3<T>>>;
NOT?: ZodArray<ZodLazy<PrismaWhereLevel3<T>>>;
} & {
[K in keyof T]?: PrismaFilterOperators<T[K]>;
},
'strip',
ZodTypeAny
>;
// Function to create a recursive schema up to level 4
export const createPrismaWhereSchema = <T extends zod.ZodRawShape>(
modelSchema: zod.ZodObject<T>,
depth: number = 3
): zod.ZodObject<any> => {
const fields = modelSchema.shape;
const fieldFilters = Object.fromEntries(
Object.entries(fields).map(([key, value]) => [
key,
zod
.object({
equals: value.optional(),
not: value.optional(),
in: zod.array(value).optional(),
notIn: zod.array(value).optional(),
lt: value.optional(),
lte: value.optional(),
gt: value.optional(),
gte: value.optional(),
contains: zod.string().optional(),
startsWith: zod.string().optional(),
endsWith: zod.string().optional(),
mode: zod.string().optional(),
})
.optional(),
])
);
if (depth <= 0) {
// Base case: return schema without AND, OR, NOT to stop recursion
return zod.object({
...fieldFilters,
});
}
return zod.object({
AND: zod.array(zod.lazy(() => createPrismaWhereSchema(modelSchema, depth - 1))).optional(),
OR: zod.array(zod.lazy(() => createPrismaWhereSchema(modelSchema, depth - 1))).optional(),
NOT: zod.array(zod.lazy(() => createPrismaWhereSchema(modelSchema, depth - 1))).optional(),
...fieldFilters,
});
};
export const getQueryOutput = <T extends zod.ZodTypeAny>(data: T) => {
return z.object({ status: z.number(), data: data.optional(), error: z.string().optional() });
};
export const getQueryInput = <T extends zod.ZodRawShape>(
modelSchema: zod.ZodObject<T>,
options: { partialData?: boolean } = {}
) => {
const { partialData = true } = options;
const whereSchema = createPrismaWhereSchema(modelSchema);
const querySchema = z
.object({
data: partialData ? modelSchema.partial().optional() : modelSchema.optional(),
skip: z.number().default(0).optional(),
take: z.number().default(10).optional(),
cursor: z.record(z.any()).optional(),
where: whereSchema.optional(),
orderBy: z.record(z.enum(['asc', 'desc'])).optional(),
include: z.record(z.boolean()).optional(),
select: z.record(z.boolean()).optional(),
})
.partial();
// Merge querySchema and dataSchema, making all fields optional
return zod.union([querySchema, zod.undefined()]);
// return querySchema.merge(dataSchema).partial();
};
export type inferQuery<T extends zod.ZodRawShape> = zod.infer<ReturnType<typeof createPrismaWhereSchema<T>>>;
export type GetInferenceHelpers<
TType extends 'input' | 'output',
TRoot extends AnyTRPCClientTypes,
TRecord extends TRPCRouterRecord
> = {
[TKey in keyof TRecord]: TRecord[TKey] extends infer $Value
? $Value extends TRPCRouterRecord
? GetInferenceHelpers<TType, TRoot, $Value>
: $Value extends AnyProcedure
? inferProcedureOutput<$Value> // inferTransformedProcedureOutput<TRoot, $Value>
: never
: never;
};
export type inferRouterOutputs<TRouter extends AnyRouter> = GetInferenceHelpers<
'output',
TRouter['_def']['_config']['$types'],
TRouter['_def']['record']
>;
// type SpecificOutput = Router['_def']['record']['createInterfaceDraft']['_def']['$types']['output'];
// type TestOutput = RouterOutput['createInterfaceDraft'];