-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtypes.ts
267 lines (244 loc) · 6.13 KB
/
types.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
import type ts from 'typescript';
import type {
GraphQLSchema,
GraphQLObjectType,
GraphQLUnionType,
GraphQLInterfaceType,
GraphQLScalarType,
} from 'graphql/type';
import type { DocumentNode, OperationDefinitionNode, FragmentDefinitionNode } from 'graphql/language';
import { OutputSource } from '../../ts-ast-util/types';
type GraphQLFragmentTypeConditionNamedType = GraphQLObjectType | GraphQLUnionType | GraphQLInterfaceType;
type ToStrict<T> = { [P in keyof T]-?: T[P] };
export type StrictAddon = ToStrict<TypeGenVisitorAddon>;
/**
*
* Creates Type Generator addon object.
* This factory function is called back for each GraphQL template string.
*
*/
export interface TypeGenAddonFactory {
/**
*
* @param context - @see TypeGenVisitorAddonContext
* @returns Addon
*
*/
(context: TypeGenVisitorAddonContext): TypeGenVisitorAddon;
}
export interface TypeGenVisitorAddonContext {
/**
*
* Referenced GraphQL schema object.
*
*/
readonly schema: GraphQLSchema;
/**
*
* Utility object to mutate output source file. @see OutputSource
*
*/
readonly source: OutputSource;
/**
*
* Where the GraphQL template string is located. @see ExtractedInfo
*
*/
readonly extractedInfo: ExtractedInfo;
}
/**
*
* Represents where the template string including the GraphQL operation or fragments are located.
*
*/
export interface ExtractedInfo {
/**
*
* File path of the .ts file which contains the GraphQL template string.
*
*/
readonly fileName: string;
/**
*
* TypeScript source file object which contains the GraphQL template string.
*
*/
readonly tsSourceFile: ts.SourceFile;
/**
*
* Template string AST node corresponding the GraphQL operation or fragments.
*
*/
readonly tsTemplateNode: ts.NoSubstitutionTemplateLiteral | ts.TemplateExpression;
}
/**
*
* The addon object's methods are called back during the core type generator visits each GraphQL node in the template string.
* And one addon object is generated for one template string.
*
* You don't have to implement all methods.
*
*/
export interface TypeGenVisitorAddon {
/**
*
* Reacts when the type generator visits GraphQL Scalar field.
* This function can return corresponding TypeScript type node.
*
* @remarks
* This function can not how to serialize/deserialize the custom scalar but how to map scalar to TypeScript type only.
* You should consistence between runtime serialize behavior and type mapping.
*
* @example
*
* If your schema has a custom scalar type `Date` and your GraphQL client deserializes it to JavaScript native string,
* you can implement this type mapping as the following:
*
* ```graphql
* scalar Date
* type Post {
* id: ID!
* publishedAt: Date!
* }
* ```
*
* ```ts
* const factory: TypeGenAddonFactory = () => ({
* customScalar({ scalarType }) {
* if (scalarType.name === 'Date') {
* return ts.createKeywordTypeNode(ts.SyntaxKind.StringKeyword);
* }
* },
* });
* ```
*
* @param input - contains GraphQL Scalar type.
* @return Corresponding TypeScript type node. If return undefined, the TypeScript type is determined by the core type generator.
*
*/
customScalar?: (input: CustomScalarInput) => CustomScalarOutput;
/**
*
* Reacts when the type generator visits whole GraphQL document node.
*
* @param input - contains the GraphQL document AST node.
*
*/
document?: (input: DocumentInput) => void;
/**
*
* Reacts when the type generator visits GraphQL operation definition node.
* It's useful if you want to process query or variables types.
*
* @example
*
* ```ts
* const factory: TypeGenAddonFactory = ({ source }) => ({
* operationDefinition({ tsResultNode }) {
* const additionalTypeStatement = createAwesomeType(tsResultNode);
* source.pushStatement(additionalTypeStatement);
* },
* });
* ```
*
* @param input - contains query/variable TypeScript type declaration node. @see OperationDefinionInput
*
*/
operationDefinition?: (input: OperationDefinionInput) => void;
/**
*
* Reacts when the type generator visits GraphQL fragment definition node.
*
* @param input - contains fragment TypeScript type declaration node. @see FragmentDefinitionInput
*
*/
fragmentDefinition?: (input: FragmentDefinitionInput) => void;
}
/**
*
* Input object for `TypeGenVisitorAddon.customScalar` callback.
*
*/
export interface CustomScalarInput {
/**
*
* Definition of type scalar type.
*
*/
readonly scalarType: GraphQLScalarType;
}
/**
*
* Output object for `TypeGenVisitorAddon.customScalar` callback.
*
*/
export type CustomScalarOutput = void | ts.TypeNode;
/**
*
* Input object for `TypeGenVisitorAddon.document` callback.
*
*/
export interface DocumentInput {
/**
*
* GraphQL document AST node.
*
*/
readonly graphqlNode: DocumentNode;
}
/**
*
* Input object for `TypeGenVisitorAddon.operationDefinition` callback.
*
*/
export interface OperationDefinionInput {
/**
*
* GraphQL AST node of this operation.
*
*/
readonly graqhqlNode: OperationDefinitionNode;
/**
*
* Definition of the operation. One of Query or Mutation or Subscription
*
*/
readonly operationType: GraphQLObjectType;
/**
*
* TypeScript AST node which represents the result type of this operation.
*
*/
readonly tsResultNode: ts.TypeAliasDeclaration;
/**
*
* TypeScript AST node which represents the variable type of this operation.
*
*/
readonly tsVariableNode: ts.TypeAliasDeclaration;
}
/**
*
* Input object for `TypeGenVisitorAddon.fragmentDefinition` callback.
*
*/
export interface FragmentDefinitionInput {
/**
*
* GraphQL AST node of this fragment
*
*/
readonly graphqlNode: FragmentDefinitionNode;
/**
*
* Named type(object or interface or union type) this fragment is specified on.
*
*/
readonly conditionType: GraphQLFragmentTypeConditionNamedType;
/**
*
* TypeScript AST node which represents this fragment type.
*
*/
readonly tsNode: ts.TypeAliasDeclaration;
}