Skip to content

Commit b9cf5f3

Browse files
authored
Make print() break arguments over multiple lines (#2797)
1 parent c2f97bb commit b9cf5f3

File tree

2 files changed

+58
-12
lines changed

2 files changed

+58
-12
lines changed

src/language/__tests__/printer-test.js

+46-3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,45 @@ describe('Printer: Query document', () => {
7979
`);
8080
});
8181

82+
it('keeps arguments on one line if line is short (<= 80 chars)', () => {
83+
const printed = print(
84+
parse('{trip(wheelchair:false arriveBy:false){dateTime}}'),
85+
);
86+
87+
expect(printed).to.equal(
88+
dedent`
89+
{
90+
trip(wheelchair: false, arriveBy: false) {
91+
dateTime
92+
}
93+
}
94+
`,
95+
);
96+
});
97+
98+
it('puts arguments on multiple lines if line is long (> 80 chars)', () => {
99+
const printed = print(
100+
parse(
101+
'{trip(wheelchair:false arriveBy:false includePlannedCancellations:true transitDistanceReluctance:2000){dateTime}}',
102+
),
103+
);
104+
105+
expect(printed).to.equal(
106+
dedent`
107+
{
108+
trip(
109+
wheelchair: false
110+
arriveBy: false
111+
includePlannedCancellations: true
112+
transitDistanceReluctance: 2000
113+
) {
114+
dateTime
115+
}
116+
}
117+
`,
118+
);
119+
});
120+
82121
it('Experimental: prints fragment with variable directives', () => {
83122
const queryASTWithVariableDirective = parse(
84123
'fragment Foo($foo: TestType @test) on TestType @testDirective { id }',
@@ -158,9 +197,13 @@ describe('Printer: Query document', () => {
158197
}
159198
160199
fragment frag on Friend @onFragmentDefinition {
161-
foo(size: $size, bar: $b, obj: {key: "value", block: """
162-
block string uses \"""
163-
"""})
200+
foo(
201+
size: $size
202+
bar: $b
203+
obj: {key: "value", block: """
204+
block string uses \"""
205+
"""}
206+
)
164207
}
165208
166209
{

src/language/printer.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ export function print(ast: ASTNode): string {
1111
return visit(ast, { leave: printDocASTReducer });
1212
}
1313

14+
const MAX_LINE_LENGTH = 80;
15+
1416
// TODO: provide better type coverage in future
1517
const printDocASTReducer: any = {
1618
Name: (node) => node.value,
@@ -41,15 +43,16 @@ const printDocASTReducer: any = {
4143
wrap(' ', join(directives, ' ')),
4244
SelectionSet: ({ selections }) => block(selections),
4345

44-
Field: ({ alias, name, arguments: args, directives, selectionSet }) =>
45-
join(
46-
[
47-
wrap('', alias, ': ') + name + wrap('(', join(args, ', '), ')'),
48-
join(directives, ' '),
49-
selectionSet,
50-
],
51-
' ',
52-
),
46+
Field: ({ alias, name, arguments: args, directives, selectionSet }) => {
47+
const prefix = wrap('', alias, ': ') + name;
48+
let argsLine = prefix + wrap('(', join(args, ', '), ')');
49+
50+
if (argsLine.length > MAX_LINE_LENGTH) {
51+
argsLine = prefix + wrap('(\n', indent(join(args, '\n')), '\n)');
52+
}
53+
54+
return join([argsLine, join(directives, ' '), selectionSet], ' ');
55+
},
5356

5457
Argument: ({ name, value }) => name + ': ' + value,
5558

0 commit comments

Comments
 (0)