Skip to content

Commit 36d8765

Browse files
jongbelegenDimitri van der Vlietzhouzi
authored
Add inputMaybeValueDefault option to allow default input values other than null (#63)
* Add inputMaybeValueDefault option to allow default input values other than null * Add requirements for contributing * Add highlight on example code * Fix formatting issues * Update snapshots Co-authored-by: Dimitri van der Vliet <[email protected]> Co-authored-by: Gabin Aureche <[email protected]>
1 parent 8eefdde commit 36d8765

File tree

6 files changed

+93
-5
lines changed

6 files changed

+93
-5
lines changed

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Add inputMaybeValueDefault option to allow default input values other than null
6+
57
## 1.0.0 - 2022-05-07
68

79
### Added

docs/docs/configuration/schema.mdx

+46
Original file line numberDiff line numberDiff line change
@@ -316,3 +316,49 @@ export function createUserMock(
316316
</div>
317317

318318
</details>
319+
320+
## `config.inputMaybeValueDefault`
321+
322+
By default, this plugin will always generate a null value for input types that are nullable.
323+
This can be problematic when you customized the inputMaybeValue.
324+
You can customize the default value by configuring `inputMaybeValueDefault`:
325+
326+
```yml
327+
overwrite: true
328+
schema: ./schema.graphql
329+
generates:
330+
./types.ts:
331+
plugins:
332+
- typescript
333+
- graphql-codegen-factories/schema
334+
config:
335+
inputMaybeValue: T | undefined
336+
# highlight-start
337+
inputMaybeValueDefault: undefined
338+
# highlight-end
339+
```
340+
341+
<details>
342+
<summary>Example</summary>
343+
344+
<div className="codeBlocks">
345+
346+
```graphql title="schema.graphql"
347+
input PostInput {
348+
title: String
349+
}
350+
```
351+
352+
```typescript title="types.ts"
353+
export function createPostInputMock(props: Partial<PostInput> = {}): PostInput {
354+
return {
355+
// highlight-start
356+
title: undefined,
357+
// highlight-end
358+
...props,
359+
};
360+
}
361+
```
362+
363+
</div>
364+
</details>

packages/graphql-codegen-factories/src/schema/FactoriesSchemaVisitor.ts

+16-4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ export interface FactoriesSchemaVisitorRawConfig
5050
// the following option does the same thing as namespacedImportName
5151
// but it is injected automatically while this one is provided by the user
5252
importTypesNamespace?: string;
53+
54+
inputMaybeValueDefault?: string;
5355
}
5456

5557
export interface FactoriesSchemaVisitorParsedConfig
@@ -59,6 +61,7 @@ export interface FactoriesSchemaVisitorParsedConfig
5961
namespacedImportName: string | null;
6062
typesPath?: string;
6163
importTypesNamespace?: string;
64+
inputMaybeValueDefault: string | "null";
6265
}
6366

6467
interface VisitedTypeNode {
@@ -117,6 +120,10 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
117120
config.importTypesNamespace,
118121
undefined
119122
),
123+
inputMaybeValueDefault: getConfigValue(
124+
config.inputMaybeValueDefault,
125+
"null"
126+
),
120127
} as FactoriesSchemaVisitorParsedConfig;
121128

122129
if (parsedConfig.typesPath && parsedConfig.namespacedImportName == null) {
@@ -209,11 +216,16 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
209216
}
210217

211218
protected convertField(
212-
node: UnvisitedFieldDefinitionNode | UnvisitedInputValueDefinitionNode
219+
node: UnvisitedFieldDefinitionNode | UnvisitedInputValueDefinitionNode,
220+
nullableDefaultValue: string
213221
): string {
214222
const { defaultValue, isNullable } = node.type;
215223
return indent(
216-
indent(`${node.name.value}: ${isNullable ? "null" : defaultValue},`)
224+
indent(
225+
`${node.name.value}: ${
226+
isNullable ? nullableDefaultValue : defaultValue
227+
},`
228+
)
217229
);
218230
}
219231

@@ -283,15 +295,15 @@ export class FactoriesSchemaVisitor extends FactoriesBaseVisitor<
283295
}
284296

285297
FieldDefinition(node: UnvisitedFieldDefinitionNode): string {
286-
return this.convertField(node);
298+
return this.convertField(node, "null");
287299
}
288300

289301
InputObjectTypeDefinition(node: InputObjectTypeDefinitionNode): string {
290302
return this.convertObjectType(node);
291303
}
292304

293305
InputValueDefinition(node: UnvisitedInputValueDefinitionNode): string {
294-
return this.convertField(node);
306+
return this.convertField(node, this.config.inputMaybeValueDefault);
295307
}
296308

297309
ObjectTypeDefinition(node: ObjectTypeDefinitionNode): string | undefined {

packages/graphql-codegen-factories/src/schema/__tests__/__snapshots__/plugin.ts.snap

+13
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,19 @@ Object {
136136
}
137137
`;
138138
139+
exports[`plugin should customize the input maybe value default 1`] = `
140+
Object {
141+
"content": "export function createPostInputMock(props: Partial<PostInput> = {}): PostInput {
142+
return {
143+
title: undefined,
144+
...props,
145+
};
146+
}
147+
",
148+
"prepend": Array [],
149+
}
150+
`;
151+
139152
exports[`plugin should import types from other file 1`] = `
140153
Object {
141154
"content": "export function createUserMock(props: Partial<SharedTypes.User> = {}): SharedTypes.User {

packages/graphql-codegen-factories/src/schema/__tests__/plugin.ts

+13
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,19 @@ describe("plugin", () => {
117117
expect(output).toMatchSnapshot();
118118
});
119119

120+
it("should customize the input maybe value default", async () => {
121+
const schema = buildSchema(`
122+
input PostInput {
123+
title: String
124+
}
125+
`);
126+
127+
const output = await plugin(schema, [], {
128+
inputMaybeValueDefault: "undefined",
129+
});
130+
expect(output).toMatchSnapshot();
131+
});
132+
120133
it("should support enums with an underscore", async () => {
121134
const schema = buildSchema(`
122135
enum UserRole {

readme.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,6 @@ Are you using this plugin? [Let us know!](https://github.com/zhouzi/graphql-code
9292

9393
## Contributors
9494

95-
[![](https://github.com/zhouzi.png?size=50)](https://github.com/zhouzi) [![](https://github.com/ertrzyiks.png?size=50)](https://github.com/ertrzyiks)
95+
[![](https://github.com/zhouzi.png?size=50)](https://github.com/zhouzi)
96+
[![](https://github.com/ertrzyiks.png?size=50)](https://github.com/ertrzyiks)
97+
[![](https://github.com/jongbelegen.png?size=50)](https://github.com/jongbelegen)

0 commit comments

Comments
 (0)