@@ -72,19 +72,25 @@ module Binding = struct
72
72
( { loc; txt = Ldot (Lident " React" , " componentLike" ) },
73
73
[ props; return ] )
74
74
75
- let jsxFragment ~loc ~attrs children =
75
+ let makeJsxFragment api ~loc ~attrs children =
76
76
let fragment =
77
77
Builder. pexp_ident ~loc
78
78
{ loc; txt = Ldot (Lident " React" , " jsxFragment" ) }
79
79
in
80
80
Builder. pexp_apply ~loc ~attrs
81
- (Builder. pexp_ident ~loc { loc; txt = Ldot (Lident " React" , " jsx " ) })
81
+ (Builder. pexp_ident ~loc { loc; txt = Ldot (Lident " React" , api ) })
82
82
[
83
83
(nolabel, fragment);
84
84
( nolabel,
85
85
ReactDOM. domProps ~apply Loc:loc ~loc
86
86
[ (labelled " children" , children); (nolabel, Builder. unit ) ] );
87
87
]
88
+
89
+ let jsxFragment ~loc ~attrs children =
90
+ makeJsxFragment " jsx" ~loc ~attrs children
91
+
92
+ let jsxsFragment ~loc ~attrs children =
93
+ makeJsxFragment " jsxs" ~loc ~attrs children
88
94
end
89
95
end
90
96
@@ -1393,13 +1399,10 @@ let jsxMapper =
1393
1399
transformJsxCall ~ctxt parentExpLoc self callExpression
1394
1400
callArguments nonJSXAttributes)
1395
1401
(* is it a list with jsx attribute? Reason <>foo</> desugars to
1396
- [@JSX][foo]*)
1402
+ [@JSX][foo]
1403
+ This will match either <> </> or <> foo </> *)
1397
1404
| {
1398
- pexp_desc =
1399
- ( Pexp_construct
1400
- ( { txt = Lident " ::" ; loc },
1401
- Some { pexp_desc = Pexp_tuple _; _ } )
1402
- | Pexp_construct ({ txt = Lident " []" ; loc }, None ) );
1405
+ pexp_desc = Pexp_construct ({ txt = Lident (" []" | " ::" ); loc }, lst);
1403
1406
pexp_attributes;
1404
1407
_;
1405
1408
} as listItems -> (
@@ -1411,13 +1414,34 @@ let jsxMapper =
1411
1414
match (jsxAttribute, nonJSXAttributes) with
1412
1415
(* no JSX attribute *)
1413
1416
| [] , _ -> super#expression ctxt expr
1414
- | _ , nonJSXAttributes ->
1417
+ | _ , nonJSXAttributes -> (
1415
1418
let childrenExpr =
1416
1419
transformChildrenIfList ~loc ~ctxt ~mapper: self listItems
1417
1420
in
1418
1421
(* throw away the [@JSX] attribute and keep the others, if any *)
1419
- Binding.React. jsxFragment ~loc ~attrs: nonJSXAttributes
1420
- (Binding.React. array ~loc childrenExpr))
1422
+ match lst with
1423
+ | None
1424
+ | Some
1425
+ {
1426
+ pexp_desc =
1427
+ Pexp_tuple
1428
+ [
1429
+ _;
1430
+ {
1431
+ pexp_desc =
1432
+ Pexp_construct ({ txt = Lident " []" ; _ }, None );
1433
+ _;
1434
+ };
1435
+ ];
1436
+ _;
1437
+ } ->
1438
+ Binding.React. jsxFragment ~loc ~attrs: nonJSXAttributes
1439
+ (Binding.React. array ~loc childrenExpr)
1440
+ | Some { pexp_desc = Pexp_tuple (_ :: _ ); _ } ->
1441
+ (* Fragment with two or more children: <> foo bar </> *)
1442
+ Binding.React. jsxsFragment ~loc ~attrs: nonJSXAttributes
1443
+ (Binding.React. array ~loc childrenExpr)
1444
+ | _ -> assert false ))
1421
1445
(* Delegate to the default mapper, a deep identity traversal *)
1422
1446
| e -> super#expression ctxt e
1423
1447
[@@ raises Invalid_argument ]
0 commit comments