-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathbuilder.ts
More file actions
500 lines (431 loc) · 13.6 KB
/
builder.ts
File metadata and controls
500 lines (431 loc) · 13.6 KB
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
import { BaseVisitor } from '@graphql-codegen/visitor-plugin-common';
import { pascalCase } from 'change-case-all';
import {
DocumentNode,
EnumTypeDefinitionNode,
EnumTypeExtensionNode,
GraphQLSchema,
InputObjectTypeDefinitionNode,
InputObjectTypeExtensionNode,
InterfaceTypeDefinitionNode,
InterfaceTypeExtensionNode,
isScalarType,
Kind,
ObjectTypeDefinitionNode,
ObjectTypeExtensionNode,
TypeDefinitionNode,
TypeExtensionNode,
visit,
} from 'graphql';
import { ModulesConfig } from './config.js';
import {
buildBlock,
collectUsedTypes,
concatByKey,
createObject,
indent,
pushUnique,
unique,
uniqueByKey,
withQuotes,
} from './utils.js';
type RegistryKeys = 'objects' | 'inputs' | 'interfaces' | 'scalars' | 'unions' | 'enums';
type Registry = Record<RegistryKeys, string[]>;
const registryKeys: RegistryKeys[] = ['objects', 'inputs', 'interfaces', 'scalars', 'unions', 'enums'];
const resolverKeys: Array<Extract<RegistryKeys, 'objects' | 'enums' | 'scalars'>> = ['scalars', 'objects', 'enums'];
const withIsTypeOfKeys: Array<'objects'> = ['objects'];
export function buildModule(
name: string,
doc: DocumentNode,
{
importNamespace,
importPath,
encapsulate,
requireRootResolvers,
shouldDeclare,
rootTypes,
schema,
baseVisitor,
useGraphQLModules,
useTypeImports = false,
}: {
importNamespace: string;
importPath: string;
encapsulate: ModulesConfig['encapsulateModuleTypes'];
requireRootResolvers: ModulesConfig['requireRootResolvers'];
shouldDeclare: boolean;
rootTypes: string[];
baseVisitor: BaseVisitor;
schema?: GraphQLSchema;
useGraphQLModules: boolean;
useTypeImports?: boolean;
}
): string {
const picks: Record<RegistryKeys, Record<string, string[]>> = createObject(registryKeys, () => ({}));
const defined: Registry = createObject(registryKeys, () => []);
const extended: Registry = createObject(registryKeys, () => []);
const withIsTypeOf: { objects: string[] } = createObject(withIsTypeOfKeys, () => []);
// List of types used in objects, fields, arguments etc
const usedTypes = collectUsedTypes(doc);
visit(doc, {
ObjectTypeDefinition(node) {
collectTypeDefinition(node);
},
ObjectTypeExtension(node) {
collectTypeExtension(node);
},
InputObjectTypeDefinition(node) {
collectTypeDefinition(node);
},
InputObjectTypeExtension(node) {
collectTypeExtension(node);
},
InterfaceTypeDefinition(node) {
collectTypeDefinition(node);
},
InterfaceTypeExtension(node) {
collectTypeExtension(node);
},
ScalarTypeDefinition(node) {
collectTypeDefinition(node);
},
UnionTypeDefinition(node) {
collectTypeDefinition(node);
},
UnionTypeExtension(node) {
collectTypeExtension(node);
},
EnumTypeDefinition(node) {
collectTypeDefinition(node);
},
EnumTypeExtension(node) {
collectTypeExtension(node);
},
});
// Defined and Extended types
const visited: Registry = createObject(registryKeys, key => concatByKey(defined, extended, key));
// Types that are not defined or extended in a module, they come from other modules
const external: Registry = createObject(registryKeys, key => uniqueByKey(extended, defined, key));
//
//
//
// Prints
//
//
//
// An actual output
const imports = [`import${useTypeImports ? ' type' : ''} * as ${importNamespace} from "${importPath}";`];
if (useGraphQLModules) {
imports.push(`import${useTypeImports ? ' type' : ''} * as gm from "graphql-modules";`);
}
let content = [
printDefinedFields(),
printDefinedEnumValues(),
printDefinedInputFields(),
printSchemaTypes(usedTypes),
printScalars(visited),
printResolveSignaturesPerType(visited),
printResolversType(visited),
useGraphQLModules ? printResolveMiddlewareMap() : undefined,
]
.filter(Boolean)
.join('\n\n');
if (encapsulate === 'namespace') {
content =
`${shouldDeclare ? 'declare' : 'export'} namespace ${baseVisitor.convertName(name, {
suffix: 'Module',
useTypesPrefix: false,
useTypesSuffix: false,
})} {\n` +
(shouldDeclare ? `${indent(2)(imports.join('\n'))}\n` : '') +
indent(2)(content) +
'\n}';
}
return [...(shouldDeclare ? [] : imports), content].filter(Boolean).join('\n');
/**
* A dictionary of fields to pick from an object
*/
function printDefinedFields() {
return buildBlock({
name: `interface DefinedFields`,
lines: [...visited.objects, ...visited.interfaces].map(
typeName =>
`${typeName}: ${printPicks(typeName, {
...picks.objects,
...picks.interfaces,
})};`
),
});
}
/**
* A dictionary of values to pick from an enum
*/
function printDefinedEnumValues() {
return buildBlock({
name: `interface DefinedEnumValues`,
lines: visited.enums.map(typeName => `${typeName}: ${printPicks(typeName, picks.enums)};`),
});
}
function encapsulateTypeName(typeName: string): string {
if (encapsulate === 'prefix') {
return `${pascalCase(name)}_${typeName}`;
}
return typeName;
}
/**
* A dictionary of fields to pick from an input
*/
function printDefinedInputFields() {
return buildBlock({
name: `interface DefinedInputFields`,
lines: visited.inputs.map(typeName => `${typeName}: ${printPicks(typeName, picks.inputs)};`),
});
}
/**
* Prints signatures of schema types with picks
*/
function printSchemaTypes(types: string[]) {
return types
.filter(type => !visited.scalars.includes(type))
.map(printExportType)
.join('\n');
}
function printResolveSignaturesPerType(registry: Registry) {
return [
[...registry.objects, ...registry.interfaces]
.map(name =>
printResolverType(
name,
'DefinedFields',
// In case of enabled `requireRootResolvers` flag, the preset has to produce a non-optional properties.
requireRootResolvers && rootTypes.includes(name),
!rootTypes.includes(name) && defined.objects.includes(name) && withIsTypeOf.objects.includes(name)
? ` | '__isTypeOf'`
: ''
)
)
.join('\n'),
].join('\n');
}
function printScalars(registry: Registry) {
if (!registry.scalars.length) {
return '';
}
return [
`export type ${encapsulateTypeName('Scalars')} = Pick<${importNamespace}.Scalars, ${registry.scalars
.map(withQuotes)
.join(' | ')}>;`,
...registry.scalars.map(scalar => {
const convertedName = baseVisitor.convertName(scalar, {
suffix: 'ScalarConfig',
});
return `export type ${encapsulateTypeName(convertedName)} = ${importNamespace}.${convertedName};`;
}),
].join('\n');
}
/**
* Aggregation of type resolver signatures
*/
function printResolversType(registry: Registry) {
const lines: string[] = [];
for (const kind in registry) {
const k = kind as RegistryKeys;
if (Object.prototype.hasOwnProperty.call(registry, k) && resolverKeys.includes(k as any)) {
const types = registry[k];
for (const typeName of types) {
if (k === 'enums') {
continue;
}
if (k === 'scalars') {
lines.push(`${typeName}?: ${encapsulateTypeName(importNamespace)}.Resolvers['${typeName}'];`);
} else {
// In case of enabled `requireRootResolvers` flag, the preset has to produce a non-optional property.
const fieldModifier = requireRootResolvers && rootTypes.includes(typeName) ? '' : '?';
lines.push(`${typeName}${fieldModifier}: ${encapsulateTypeName(typeName)}Resolvers;`);
}
}
}
}
return buildBlock({
name: `export interface ${encapsulateTypeName('Resolvers')}`,
lines,
});
}
/**
* Signature for a map of resolve middlewares
*/
function printResolveMiddlewareMap() {
const wildcardField = printResolveMiddlewareRecord(withQuotes('*'));
const blocks: string[] = [buildBlock({ name: `${withQuotes('*')}?:`, lines: [wildcardField] })];
// Type.Field
for (const typeName in picks.objects) {
if (Object.prototype.hasOwnProperty.call(picks.objects, typeName)) {
const fields = picks.objects[typeName];
const lines = [wildcardField].concat(fields.map(field => printResolveMiddlewareRecord(field)));
blocks.push(
buildBlock({
name: `${typeName}?:`,
lines,
})
);
}
}
return buildBlock({
name: `export interface ${encapsulateTypeName('MiddlewareMap')}`,
lines: blocks,
});
}
function printResolveMiddlewareRecord(path: string): string {
return `${path}?: gm.Middleware[];`;
}
function printResolverType(typeName: string, picksTypeName: string, requireFieldsResolvers = false, extraKeys = '') {
const typeSignature = `Pick<${importNamespace}.${baseVisitor.convertName(typeName, {
suffix: 'Resolvers',
})}, ${picksTypeName}['${typeName}']${extraKeys}>`;
return `export type ${encapsulateTypeName(`${typeName}Resolvers`)} = ${
requireFieldsResolvers ? `Required<${typeSignature}>` : typeSignature
};`;
}
function printPicks(typeName: string, records: Record<string, string[]>): string {
return records[typeName].filter(unique).map(withQuotes).join(' | ');
}
function printTypeBody(typeName: string): string {
const coreType = `${importNamespace}.${baseVisitor.convertName(typeName, {
useTypesSuffix: true,
useTypesPrefix: true,
})}`;
if (external.enums.includes(typeName) || external.objects.includes(typeName)) {
if (schema && isScalarType(schema.getType(typeName))) {
return `${importNamespace}.Scalars['${typeName}']`;
}
return coreType;
}
if (defined.enums.includes(typeName) && picks.enums[typeName]) {
return `DefinedEnumValues['${typeName}']`;
}
if (defined.objects.includes(typeName) && picks.objects[typeName]) {
return `Pick<${coreType}, DefinedFields['${typeName}']>`;
}
if (defined.interfaces.includes(typeName) && picks.interfaces[typeName]) {
return `Pick<${coreType}, DefinedFields['${typeName}']>`;
}
if (defined.inputs.includes(typeName) && picks.inputs[typeName]) {
return `Pick<${coreType}, DefinedInputFields['${typeName}']>`;
}
return coreType;
}
function printExportType(typeName: string): string {
return `export type ${encapsulateTypeName(typeName)} = ${printTypeBody(typeName)};`;
}
//
//
//
// Utils
//
//
//
function collectFields(
node:
| ObjectTypeDefinitionNode
| ObjectTypeExtensionNode
| InterfaceTypeDefinitionNode
| InterfaceTypeExtensionNode
| InputObjectTypeDefinitionNode
| InputObjectTypeExtensionNode,
picksObj: Record<string, string[]>
) {
const name = node.name.value;
if (node.fields) {
picksObj[name] ||= [];
for (const field of node.fields) {
picksObj[name].push(field.name.value);
}
}
}
function collectValuesFromEnum(node: EnumTypeDefinitionNode | EnumTypeExtensionNode) {
const name = node.name.value;
if (node.values) {
picks.enums[name] ||= [];
for (const field of node.values) {
picks.enums[name].push(field.name.value);
}
}
}
function collectTypeDefinition(node: TypeDefinitionNode) {
const name = node.name.value;
switch (node.kind) {
case Kind.OBJECT_TYPE_DEFINITION: {
defined.objects.push(name);
collectFields(node, picks.objects);
if (node.interfaces?.length > 0) {
withIsTypeOf.objects.push(name);
}
break;
}
case Kind.ENUM_TYPE_DEFINITION: {
defined.enums.push(name);
collectValuesFromEnum(node);
break;
}
case Kind.INPUT_OBJECT_TYPE_DEFINITION: {
defined.inputs.push(name);
collectFields(node, picks.inputs);
break;
}
case Kind.SCALAR_TYPE_DEFINITION: {
defined.scalars.push(name);
break;
}
case Kind.INTERFACE_TYPE_DEFINITION: {
defined.interfaces.push(name);
collectFields(node, picks.interfaces);
break;
}
case Kind.UNION_TYPE_DEFINITION: {
defined.unions.push(name);
for (const namedType of node.types || []) {
pushUnique(withIsTypeOf.objects, namedType.name.value);
}
break;
}
}
}
function collectTypeExtension(node: TypeExtensionNode) {
const name = node.name.value;
switch (node.kind) {
case Kind.OBJECT_TYPE_EXTENSION: {
collectFields(node, picks.objects);
// Do not include root types as extensions
// so we can use them in DefinedFields
if (rootTypes.includes(name)) {
pushUnique(defined.objects, name);
return;
}
pushUnique(extended.objects, name);
if (node.interfaces?.length > 0) {
pushUnique(withIsTypeOf.objects, name);
}
break;
}
case Kind.ENUM_TYPE_EXTENSION: {
collectValuesFromEnum(node);
pushUnique(extended.enums, name);
break;
}
case Kind.INPUT_OBJECT_TYPE_EXTENSION: {
collectFields(node, picks.inputs);
pushUnique(extended.inputs, name);
break;
}
case Kind.INTERFACE_TYPE_EXTENSION: {
collectFields(node, picks.interfaces);
pushUnique(extended.interfaces, name);
break;
}
case Kind.UNION_TYPE_EXTENSION: {
pushUnique(extended.unions, name);
break;
}
}
}
}