Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Fix formatting of props spread for multiline JSX expression #736

Merged
merged 2 commits into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
- Fix issue with overlapping labelled argument with default value https://github.com/rescript-lang/syntax/pull/734
- Fix issue with using alias and default value together https://github.com/rescript-lang/syntax/pull/734
- Fix formatting of `switch` expressions that contain braced `cases` inside https://github.com/rescript-lang/syntax/pull/735
- Fix formatting of props spread for multiline JSX expression https://github.com/rescript-lang/syntax/pull/736

#### :eyeglasses: Spec Compliance

Expand Down
2 changes: 1 addition & 1 deletion src/res_printer.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4337,7 +4337,7 @@ and printJsxProp ~customLayout arg cmtTbl =
| Optional _lbl -> Doc.concat [Doc.question; printIdentLike ident])
| Asttypes.Labelled "_spreadProps", expr ->
let doc = printExpressionWithComments ~customLayout expr cmtTbl in
Doc.concat [Doc.lbrace; Doc.dotdotdot; Doc.softLine; doc; Doc.rbrace]
Doc.concat [Doc.lbrace; Doc.dotdotdot; doc; Doc.rbrace]
| lbl, expr ->
let argLoc, expr =
match expr.pexp_attributes with
Expand Down
7 changes: 7 additions & 0 deletions tests/printer/expr/expected/jsx.res.txt
Original file line number Diff line number Diff line change
Expand Up @@ -410,3 +410,10 @@ let v =
</A>

let x = <A x="y" {...str} />

// https://github.com/rescript-lang/rescript-compiler/issues/6002
let x = props =>
<A
{...props}
className="inline-block px-6 py-2.5 bg-blue-600 text-white font-medium text-xs leading-tight"
/>
9 changes: 8 additions & 1 deletion tests/printer/expr/jsx.res
Original file line number Diff line number Diff line change
Expand Up @@ -402,4 +402,11 @@ let v =
</B>
</A>

let x = <A x="y" {...str} />
let x = <A x="y" {...str} />

// https://github.com/rescript-lang/rescript-compiler/issues/6002
let x = props =>
<A
{...props}
className="inline-block px-6 py-2.5 bg-blue-600 text-white font-medium text-xs leading-tight"
/>