Skip to content

Commit d2dd479

Browse files
authored
Merge pull request #94 from mizdra/follow-up-non-local-schema
Fix invalid syntax code generated from an empty schema
2 parents 58ceb54 + 84c75d3 commit d2dd479

4 files changed

+33
-4
lines changed

src/__snapshots__/code-generator.test.ts.snap

+14
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,17 @@ export type OptionalNode = OptionalBook | OptionalAuthor;
5151
5252
"
5353
`;
54+
55+
exports[`generateCode > generates code when empty typeInfos is passed 1`] = `
56+
"import {
57+
type DefineTypeFactoryInterface,
58+
defineTypeFactory,
59+
} from '@mizdra/graphql-codegen-typescript-fabbrica/helper';
60+
import type {
61+
Maybe,
62+
} from './types';
63+
64+
export * from '@mizdra/graphql-codegen-typescript-fabbrica/helper';
65+
66+
"
67+
`;

src/code-generator.test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,13 @@ describe('generateCode', () => {
7373
const actual = generateCode(config, typeInfos);
7474
expect(actual).toMatchSnapshot();
7575
});
76+
it('generates code when empty typeInfos is passed', () => {
77+
const config = fakeConfig({
78+
typesFile: './types',
79+
skipTypename: oneOf([true, false]),
80+
});
81+
const typeInfos: TypeInfo[] = [];
82+
const actual = generateCode(config, typeInfos);
83+
expect(actual).toMatchSnapshot();
84+
});
7685
});

src/code-generator.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ import type { ObjectTypeInfo, TypeInfo } from './schema-scanner.js';
44
function generatePreludeCode(config: Config, typeInfos: TypeInfo[]): string {
55
const joinedTypeNames = typeInfos
66
.filter(({ type }) => type === 'object')
7-
.map(({ name }) => ` ${name}`)
8-
.join(',\n');
7+
.map(({ name }) => ` ${name},\n`)
8+
.join('');
99
const code = `
1010
import {
1111
type DefineTypeFactoryInterface${config.nonOptionalDefaultFields ? 'Required' : ''},
1212
defineTypeFactory,
1313
} from '@mizdra/graphql-codegen-typescript-fabbrica/helper';
1414
import type {
1515
Maybe,
16-
${joinedTypeNames},
17-
} from '${config.typesFile}';
16+
${joinedTypeNames}} from '${config.typesFile}';
1817
1918
export * from '@mizdra/graphql-codegen-typescript-fabbrica/helper';
2019
`.trim();

src/schema-scanner.test.ts

+7
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ describe('getTypeInfos', () => {
7777
]
7878
`);
7979
});
80+
it('returns empty array when schema without type is passed', () => {
81+
const schema = buildSchema(`
82+
scalar Date
83+
`);
84+
const config: Config = fakeConfig();
85+
expect(getTypeInfos(config, schema)).toMatchInlineSnapshot(`[]`);
86+
});
8087
it('includes description comment', () => {
8188
const schema = buildSchema(`
8289
"The book"

0 commit comments

Comments
 (0)