-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathreactjs_jsx_v4.ml
1448 lines (1396 loc) · 54.1 KB
/
reactjs_jsx_v4.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
open Ast_helper
open Ast_mapper
open Asttypes
open Parsetree
open Longident
let nolabel = Nolabel
let labelled str = Labelled str
let isOptional str =
match str with
| Optional _ -> true
| _ -> false
let isLabelled str =
match str with
| Labelled _ -> true
| _ -> false
let isForwardRef = function
| {pexp_desc = Pexp_ident {txt = Ldot (Lident "React", "forwardRef")}} -> true
| _ -> false
let getLabel str =
match str with
| Optional str | Labelled str -> str
| Nolabel -> ""
let optionalAttr = ({txt = "ns.optional"; loc = Location.none}, PStr [])
let optionalAttrs = [optionalAttr]
let constantString ~loc str =
Ast_helper.Exp.constant ~loc (Pconst_string (str, None))
(* {} empty record *)
let emptyRecord ~loc = Exp.record ~loc [] None
let unitExpr ~loc = Exp.construct ~loc (Location.mkloc (Lident "()") loc) None
let safeTypeFromValue valueStr =
let valueStr = getLabel valueStr in
if valueStr = "" || (valueStr.[0] [@doesNotRaise]) <> '_' then valueStr
else "T" ^ valueStr
let refType loc =
Typ.constr ~loc
{loc; txt = Ldot (Ldot (Lident "ReactDOM", "Ref"), "currentDomRef")}
[]
type 'a children = ListLiteral of 'a | Exact of 'a
(* if children is a list, convert it to an array while mapping each element. If not, just map over it, as usual *)
let transformChildrenIfListUpper ~mapper theList =
let rec transformChildren_ theList accum =
(* not in the sense of converting a list to an array; convert the AST
reprensentation of a list to the AST reprensentation of an array *)
match theList with
| {pexp_desc = Pexp_construct ({txt = Lident "[]"}, None)} -> (
match accum with
| [singleElement] -> Exact singleElement
| accum -> ListLiteral (Exp.array (List.rev accum)))
| {
pexp_desc =
Pexp_construct
({txt = Lident "::"}, Some {pexp_desc = Pexp_tuple [v; acc]});
} ->
transformChildren_ acc (mapper.expr mapper v :: accum)
| notAList -> Exact (mapper.expr mapper notAList)
in
transformChildren_ theList []
let transformChildrenIfList ~mapper theList =
let rec transformChildren_ theList accum =
(* not in the sense of converting a list to an array; convert the AST
reprensentation of a list to the AST reprensentation of an array *)
match theList with
| {pexp_desc = Pexp_construct ({txt = Lident "[]"}, None)} ->
Exp.array (List.rev accum)
| {
pexp_desc =
Pexp_construct
({txt = Lident "::"}, Some {pexp_desc = Pexp_tuple [v; acc]});
} ->
transformChildren_ acc (mapper.expr mapper v :: accum)
| notAList -> mapper.expr mapper notAList
in
transformChildren_ theList []
let extractChildren ?(removeLastPositionUnit = false) ~loc propsAndChildren =
let rec allButLast_ lst acc =
match lst with
| [] -> []
| [(Nolabel, {pexp_desc = Pexp_construct ({txt = Lident "()"}, None)})] ->
acc
| (Nolabel, {pexp_loc}) :: _rest ->
React_jsx_common.raiseError ~loc:pexp_loc
"JSX: found non-labelled argument before the last position"
| arg :: rest -> allButLast_ rest (arg :: acc)
in
let allButLast lst = allButLast_ lst [] |> List.rev in
match
List.partition
(fun (label, _) -> label = labelled "children")
propsAndChildren
with
| [], props ->
(* no children provided? Place a placeholder list *)
( Exp.construct {loc = Location.none; txt = Lident "[]"} None,
if removeLastPositionUnit then allButLast props else props )
| [(_, childrenExpr)], props ->
(childrenExpr, if removeLastPositionUnit then allButLast props else props)
| _ ->
React_jsx_common.raiseError ~loc
"JSX: somehow there's more than one `children` label"
let merlinFocus = ({loc = Location.none; txt = "merlin.focus"}, PStr [])
(* Helper method to filter out any attribute that isn't [@react.component] *)
let otherAttrsPure (loc, _) = loc.txt <> "react.component"
(* Finds the name of the variable the binding is assigned to, otherwise raises Invalid_argument *)
let rec getFnName binding =
match binding with
| {ppat_desc = Ppat_var {txt}} -> txt
| {ppat_desc = Ppat_constraint (pat, _)} -> getFnName pat
| {ppat_loc} ->
React_jsx_common.raiseError ~loc:ppat_loc
"react.component calls cannot be destructured."
let makeNewBinding binding expression newName =
match binding with
| {pvb_pat = {ppat_desc = Ppat_var ppat_var} as pvb_pat} ->
{
binding with
pvb_pat =
{pvb_pat with ppat_desc = Ppat_var {ppat_var with txt = newName}};
pvb_expr = expression;
pvb_attributes = [merlinFocus];
}
| {pvb_loc} ->
React_jsx_common.raiseError ~loc:pvb_loc
"react.component calls cannot be destructured."
(* Lookup the filename from the location information on the AST node and turn it into a valid module identifier *)
let filenameFromLoc (pstr_loc : Location.t) =
let fileName =
match pstr_loc.loc_start.pos_fname with
| "" -> !Location.input_name
| fileName -> fileName
in
let fileName =
try Filename.chop_extension (Filename.basename fileName)
with Invalid_argument _ -> fileName
in
let fileName = String.capitalize_ascii fileName in
fileName
(* Build a string representation of a module name with segments separated by $ *)
let makeModuleName fileName nestedModules fnName =
let fullModuleName =
match (fileName, nestedModules, fnName) with
(* TODO: is this even reachable? It seems like the fileName always exists *)
| "", nestedModules, "make" -> nestedModules
| "", nestedModules, fnName -> List.rev (fnName :: nestedModules)
| fileName, nestedModules, "make" -> fileName :: List.rev nestedModules
| fileName, nestedModules, fnName ->
fileName :: List.rev (fnName :: nestedModules)
in
let fullModuleName = String.concat "$" fullModuleName in
fullModuleName
(*
AST node builders
These functions help us build AST nodes that are needed when transforming a [@react.component] into a
constructor and a props external
*)
(* make record from props and spread props if exists *)
let recordFromProps ~loc ~removeKey callArguments =
let spreadPropsLabel = "_spreadProps" in
let rec removeLastPositionUnitAux props acc =
match props with
| [] -> acc
| [(Nolabel, {pexp_desc = Pexp_construct ({txt = Lident "()"}, None)})] ->
acc
| (Nolabel, {pexp_loc}) :: _rest ->
React_jsx_common.raiseError ~loc:pexp_loc
"JSX: found non-labelled argument before the last position"
| ((Labelled txt, {pexp_loc}) as prop) :: rest
| ((Optional txt, {pexp_loc}) as prop) :: rest ->
if txt = spreadPropsLabel then
match acc with
| [] -> removeLastPositionUnitAux rest (prop :: acc)
| _ ->
React_jsx_common.raiseError ~loc:pexp_loc
"JSX: use {...p} {x: v} not {x: v} {...p} \n\
\ multiple spreads {...p} {...p} not allowed."
else removeLastPositionUnitAux rest (prop :: acc)
in
let props, propsToSpread =
removeLastPositionUnitAux callArguments []
|> List.rev
|> List.partition (fun (label, _) -> label <> labelled "_spreadProps")
in
let props =
if removeKey then
props |> List.filter (fun (arg_label, _) -> "key" <> getLabel arg_label)
else props
in
let processProp (arg_label, ({pexp_loc} as pexpr)) =
(* In case filed label is "key" only then change expression to option *)
let id = getLabel arg_label in
if isOptional arg_label then
( {txt = Lident id; loc = pexp_loc},
{pexpr with pexp_attributes = optionalAttrs} )
else ({txt = Lident id; loc = pexp_loc}, pexpr)
in
let fields = props |> List.map processProp in
let spreadFields =
propsToSpread |> List.map (fun (_, expression) -> expression)
in
match (fields, spreadFields) with
| [], [spreadProps] | [], spreadProps :: _ -> spreadProps
| _, [] ->
{
pexp_desc = Pexp_record (fields, None);
pexp_loc = loc;
pexp_attributes = [];
}
| _, [spreadProps]
(* take the first spreadProps only *)
| _, spreadProps :: _ ->
{
pexp_desc = Pexp_record (fields, Some spreadProps);
pexp_loc = loc;
pexp_attributes = [];
}
(* make type params for make fn arguments *)
(* let make = ({id, name, children}: props<'id, 'name, 'children>) *)
let makePropsTypeParamsTvar namedTypeList =
namedTypeList
|> List.filter_map (fun (_isOptional, label, _, _interiorType) ->
if label = "key" then None
else Some (Typ.var @@ safeTypeFromValue (Labelled label)))
let stripOption coreType =
match coreType with
| {ptyp_desc = Ptyp_constr ({txt = Lident "option"}, coreTypes)} ->
List.nth_opt coreTypes 0 [@doesNotRaise]
| _ -> Some coreType
let stripJsNullable coreType =
match coreType with
| {
ptyp_desc =
Ptyp_constr ({txt = Ldot (Ldot (Lident "Js", "Nullable"), "t")}, coreTypes);
} ->
List.nth_opt coreTypes 0 [@doesNotRaise]
| _ -> Some coreType
(* Make type params of the props type *)
(* (Sig) let make: React.componentLike<props<string>, React.element> *)
(* (Str) let make = ({x, _}: props<'x>) => body *)
(* (Str) external make: React.componentLike<props< .. >, React.element> = "default" *)
let makePropsTypeParams ?(stripExplicitOption = false)
?(stripExplicitJsNullableOfRef = false) namedTypeList =
namedTypeList
|> List.filter_map (fun (isOptional, label, _, interiorType) ->
if label = "key" then None
(* TODO: Worth thinking how about "ref_" or "_ref" usages *)
else if label = "ref" then
(*
If ref has a type annotation then use it, else `ReactDOM.Ref.currentDomRef.
For example, if JSX ppx is used for React Native, type would be different.
*)
match interiorType with
| {ptyp_desc = Ptyp_var "ref"} -> Some (refType Location.none)
| _ ->
(* Strip explicit Js.Nullable.t in case of forwardRef *)
if stripExplicitJsNullableOfRef then stripJsNullable interiorType
else Some interiorType
(* Strip the explicit option type in implementation *)
(* let make = (~x: option<string>=?) => ... *)
else if isOptional && stripExplicitOption then stripOption interiorType
else Some interiorType)
let makeLabelDecls ~loc namedTypeList =
namedTypeList
|> List.map (fun (isOptional, label, _, interiorType) ->
if label = "key" then
Type.field ~loc ~attrs:optionalAttrs {txt = label; loc} interiorType
else if isOptional then
Type.field ~loc ~attrs:optionalAttrs {txt = label; loc}
(Typ.var @@ safeTypeFromValue @@ Labelled label)
else
Type.field ~loc {txt = label; loc}
(Typ.var @@ safeTypeFromValue @@ Labelled label))
let makeTypeDecls propsName loc namedTypeList =
let labelDeclList = makeLabelDecls ~loc namedTypeList in
(* 'id, 'className, ... *)
let params =
makePropsTypeParamsTvar namedTypeList
|> List.map (fun coreType -> (coreType, Invariant))
in
[
Type.mk ~loc ~params {txt = propsName; loc}
~kind:(Ptype_record labelDeclList);
]
let makeTypeDeclsWithCoreType propsName loc coreType typVars =
[
Type.mk ~loc {txt = propsName; loc} ~kind:Ptype_abstract
~params:(typVars |> List.map (fun v -> (v, Invariant)))
~manifest:coreType;
]
(* type props<'x, 'y, ...> = { x: 'x, y?: 'y, ... } *)
let makePropsRecordType ~coreTypeOfAttr ~typVarsOfCoreType propsName loc
namedTypeList =
Str.type_ Nonrecursive
(match coreTypeOfAttr with
| None -> makeTypeDecls propsName loc namedTypeList
| Some coreType ->
makeTypeDeclsWithCoreType propsName loc coreType typVarsOfCoreType)
(* type props<'x, 'y, ...> = { x: 'x, y?: 'y, ... } *)
let makePropsRecordTypeSig ~coreTypeOfAttr ~typVarsOfCoreType propsName loc
namedTypeList =
Sig.type_ Nonrecursive
(match coreTypeOfAttr with
| None -> makeTypeDecls propsName loc namedTypeList
| Some coreType ->
makeTypeDeclsWithCoreType propsName loc coreType typVarsOfCoreType)
let transformUppercaseCall3 ~config modulePath mapper jsxExprLoc callExprLoc
attrs callArguments =
let children, argsWithLabels =
extractChildren ~removeLastPositionUnit:true ~loc:jsxExprLoc callArguments
in
let argsForMake = argsWithLabels in
let childrenExpr = transformChildrenIfListUpper ~mapper children in
let recursivelyTransformedArgsForMake =
argsForMake
|> List.map (fun (label, expression) ->
(label, mapper.expr mapper expression))
in
let childrenArg = ref None in
let args =
recursivelyTransformedArgsForMake
@
match childrenExpr with
| Exact children -> [(labelled "children", children)]
| ListLiteral {pexp_desc = Pexp_array list} when list = [] -> []
| ListLiteral expression -> (
(* this is a hack to support react components that introspect into their children *)
childrenArg := Some expression;
match config.React_jsx_common.mode with
| "automatic" ->
[
( labelled "children",
Exp.apply
(Exp.ident
{txt = Ldot (Lident "React", "array"); loc = Location.none})
[(Nolabel, expression)] );
]
| _ ->
[
( labelled "children",
Exp.ident {loc = Location.none; txt = Ldot (Lident "React", "null")}
);
])
in
let isCap str = String.capitalize_ascii str = str in
let ident ~suffix =
match modulePath with
| Lident _ -> Ldot (modulePath, suffix)
| Ldot (_modulePath, value) as fullPath when isCap value ->
Ldot (fullPath, suffix)
| modulePath -> modulePath
in
let isEmptyRecord {pexp_desc} =
match pexp_desc with
| Pexp_record (labelDecls, _) when List.length labelDecls = 0 -> true
| _ -> false
in
(* handle key, ref, children *)
(* React.createElement(Component.make, props, ...children) *)
let record = recordFromProps ~loc:jsxExprLoc ~removeKey:true args in
let props =
if isEmptyRecord record then emptyRecord ~loc:jsxExprLoc else record
in
let keyProp =
args |> List.filter (fun (arg_label, _) -> "key" = getLabel arg_label)
in
let makeID =
Exp.ident ~loc:callExprLoc {txt = ident ~suffix:"make"; loc = callExprLoc}
in
match config.mode with
(* The new jsx transform *)
| "automatic" ->
let jsxExpr, keyAndUnit =
match (!childrenArg, keyProp) with
| None, key :: _ ->
( Exp.ident
{loc = Location.none; txt = Ldot (Lident "React", "jsxKeyed")},
[key; (nolabel, unitExpr ~loc:Location.none)] )
| None, [] ->
(Exp.ident {loc = Location.none; txt = Ldot (Lident "React", "jsx")}, [])
| Some _, key :: _ ->
( Exp.ident
{loc = Location.none; txt = Ldot (Lident "React", "jsxsKeyed")},
[key; (nolabel, unitExpr ~loc:Location.none)] )
| Some _, [] ->
( Exp.ident {loc = Location.none; txt = Ldot (Lident "React", "jsxs")},
[] )
in
Exp.apply ~attrs jsxExpr ([(nolabel, makeID); (nolabel, props)] @ keyAndUnit)
| _ -> (
match (!childrenArg, keyProp) with
| None, key :: _ ->
Exp.apply ~attrs
(Exp.ident
{
loc = Location.none;
txt = Ldot (Lident "JsxPPXReactSupport", "createElementWithKey");
})
[key; (nolabel, makeID); (nolabel, props)]
| None, [] ->
Exp.apply ~attrs
(Exp.ident
{loc = Location.none; txt = Ldot (Lident "React", "createElement")})
[(nolabel, makeID); (nolabel, props)]
| Some children, key :: _ ->
Exp.apply ~attrs
(Exp.ident
{
loc = Location.none;
txt =
Ldot (Lident "JsxPPXReactSupport", "createElementVariadicWithKey");
})
[key; (nolabel, makeID); (nolabel, props); (nolabel, children)]
| Some children, [] ->
Exp.apply ~attrs
(Exp.ident
{
loc = Location.none;
txt = Ldot (Lident "React", "createElementVariadic");
})
[(nolabel, makeID); (nolabel, props); (nolabel, children)])
let transformLowercaseCall3 ~config mapper jsxExprLoc callExprLoc attrs
callArguments id =
let componentNameExpr = constantString ~loc:callExprLoc id in
match config.React_jsx_common.mode with
(* the new jsx transform *)
| "automatic" ->
let children, nonChildrenProps =
extractChildren ~removeLastPositionUnit:true ~loc:jsxExprLoc callArguments
in
let argsForMake = nonChildrenProps in
let childrenExpr = transformChildrenIfListUpper ~mapper children in
let recursivelyTransformedArgsForMake =
argsForMake
|> List.map (fun (label, expression) ->
(label, mapper.expr mapper expression))
in
let childrenArg = ref None in
let args =
recursivelyTransformedArgsForMake
@
match childrenExpr with
| Exact children ->
[
( labelled "children",
Exp.apply ~attrs:optionalAttrs
(Exp.ident
{
txt = Ldot (Lident "ReactDOM", "someElement");
loc = Location.none;
})
[(Nolabel, children)] );
]
| ListLiteral {pexp_desc = Pexp_array list} when list = [] -> []
| ListLiteral expression ->
(* this is a hack to support react components that introspect into their children *)
childrenArg := Some expression;
[
( labelled "children",
Exp.apply
(Exp.ident
{txt = Ldot (Lident "React", "array"); loc = Location.none})
[(Nolabel, expression)] );
]
in
let isEmptyRecord {pexp_desc} =
match pexp_desc with
| Pexp_record (labelDecls, _) when List.length labelDecls = 0 -> true
| _ -> false
in
let record = recordFromProps ~loc:jsxExprLoc ~removeKey:true args in
let props =
if isEmptyRecord record then emptyRecord ~loc:jsxExprLoc else record
in
let keyProp =
args |> List.filter (fun (arg_label, _) -> "key" = getLabel arg_label)
in
let jsxExpr, keyAndUnit =
match (!childrenArg, keyProp) with
| None, key :: _ ->
( Exp.ident
{loc = Location.none; txt = Ldot (Lident "ReactDOM", "jsxKeyed")},
[key; (nolabel, unitExpr ~loc:Location.none)] )
| None, [] ->
( Exp.ident {loc = Location.none; txt = Ldot (Lident "ReactDOM", "jsx")},
[] )
| Some _, key :: _ ->
( Exp.ident
{loc = Location.none; txt = Ldot (Lident "ReactDOM", "jsxsKeyed")},
[key; (nolabel, unitExpr ~loc:Location.none)] )
| Some _, [] ->
( Exp.ident {loc = Location.none; txt = Ldot (Lident "ReactDOM", "jsxs")},
[] )
in
Exp.apply ~attrs jsxExpr
([(nolabel, componentNameExpr); (nolabel, props)] @ keyAndUnit)
| _ ->
let children, nonChildrenProps =
extractChildren ~loc:jsxExprLoc callArguments
in
let childrenExpr = transformChildrenIfList ~mapper children in
let createElementCall =
match children with
(* [@JSX] div(~children=[a]), coming from <div> a </div> *)
| {
pexp_desc =
( Pexp_construct ({txt = Lident "::"}, Some {pexp_desc = Pexp_tuple _})
| Pexp_construct ({txt = Lident "[]"}, None) );
} ->
"createDOMElementVariadic"
(* [@JSX] div(~children= value), coming from <div> ...(value) </div> *)
| {pexp_loc} ->
React_jsx_common.raiseError ~loc:pexp_loc
"A spread as a DOM element's children don't make sense written \
together. You can simply remove the spread."
in
let args =
match nonChildrenProps with
| [_justTheUnitArgumentAtEnd] ->
[
(* "div" *)
(nolabel, componentNameExpr);
(* [|moreCreateElementCallsHere|] *)
(nolabel, childrenExpr);
]
| nonEmptyProps ->
let propsRecord =
recordFromProps ~loc:Location.none ~removeKey:false nonEmptyProps
in
[
(* "div" *)
(nolabel, componentNameExpr);
(* ReactDOM.domProps(~className=blabla, ~foo=bar, ()) *)
(labelled "props", propsRecord);
(* [|moreCreateElementCallsHere|] *)
(nolabel, childrenExpr);
]
in
Exp.apply ~loc:jsxExprLoc ~attrs
(* ReactDOM.createElement *)
(Exp.ident
{
loc = Location.none;
txt = Ldot (Lident "ReactDOM", createElementCall);
})
args
let rec recursivelyTransformNamedArgsForMake mapper expr args newtypes coreType
=
let expr = mapper.expr mapper expr in
match expr.pexp_desc with
(* TODO: make this show up with a loc. *)
| Pexp_fun (Labelled "key", _, _, _) | Pexp_fun (Optional "key", _, _, _) ->
React_jsx_common.raiseError ~loc:expr.pexp_loc
"Key cannot be accessed inside of a component. Don't worry - you can \
always key a component from its parent!"
| Pexp_fun (Labelled "ref", _, _, _) | Pexp_fun (Optional "ref", _, _, _) ->
React_jsx_common.raiseError ~loc:expr.pexp_loc
"Ref cannot be passed as a normal prop. Please use `forwardRef` API \
instead."
| Pexp_fun (arg, default, pattern, expression)
when isOptional arg || isLabelled arg ->
let () =
match (isOptional arg, pattern, default) with
| true, {ppat_desc = Ppat_constraint (_, {ptyp_desc})}, None -> (
match ptyp_desc with
| Ptyp_constr ({txt = Lident "option"}, [_]) -> ()
| _ ->
let currentType =
match ptyp_desc with
| Ptyp_constr ({txt}, []) ->
String.concat "." (Longident.flatten txt)
| Ptyp_constr ({txt}, _innerTypeArgs) ->
String.concat "." (Longident.flatten txt) ^ "(...)"
| _ -> "..."
in
Location.prerr_warning pattern.ppat_loc
(Preprocessor
(Printf.sprintf
"React: optional argument annotations must have explicit \
`option`. Did you mean `option(%s)=?`?"
currentType)))
| _ -> ()
in
let alias =
match pattern with
| {ppat_desc = Ppat_alias (_, {txt}) | Ppat_var {txt}} -> txt
| {ppat_desc = Ppat_any} -> "_"
| _ -> getLabel arg
in
let type_ =
match pattern with
| {ppat_desc = Ppat_constraint (_, type_)} -> Some type_
| _ -> None
in
recursivelyTransformNamedArgsForMake mapper expression
((arg, default, pattern, alias, pattern.ppat_loc, type_) :: args)
newtypes coreType
| Pexp_fun
( Nolabel,
_,
{ppat_desc = Ppat_construct ({txt = Lident "()"}, _) | Ppat_any},
_expression ) ->
(args, newtypes, coreType)
| Pexp_fun
( Nolabel,
_,
({
ppat_desc =
Ppat_var {txt} | Ppat_constraint ({ppat_desc = Ppat_var {txt}}, _);
} as pattern),
_expression ) ->
if txt = "ref" then
let type_ =
match pattern with
| {ppat_desc = Ppat_constraint (_, type_)} -> Some type_
| _ -> None
in
(* The ref arguement of forwardRef should be optional *)
( (Optional "ref", None, pattern, txt, pattern.ppat_loc, type_) :: args,
newtypes,
coreType )
else (args, newtypes, coreType)
| Pexp_fun (Nolabel, _, pattern, _expression) ->
Location.raise_errorf ~loc:pattern.ppat_loc
"React: react.component refs only support plain arguments and type \
annotations."
| Pexp_newtype (label, expression) ->
recursivelyTransformNamedArgsForMake mapper expression args
(label :: newtypes) coreType
| Pexp_constraint (expression, coreType) ->
recursivelyTransformNamedArgsForMake mapper expression args newtypes
(Some coreType)
| _ -> (args, newtypes, coreType)
let newtypeToVar newtype type_ =
let var_desc = Ptyp_var ("type-" ^ newtype) in
let typ (mapper : Ast_mapper.mapper) typ =
match typ.ptyp_desc with
| Ptyp_constr ({txt = Lident name}, _) when name = newtype ->
{typ with ptyp_desc = var_desc}
| _ -> Ast_mapper.default_mapper.typ mapper typ
in
let mapper = {Ast_mapper.default_mapper with typ} in
mapper.typ mapper type_
let argToType ~newtypes ~(typeConstraints : core_type option) types
(name, default, _noLabelName, _alias, loc, type_) =
let rec getType name coreType =
match coreType with
| {ptyp_desc = Ptyp_arrow (arg, c1, c2)} ->
if name = arg then Some c1 else getType name c2
| _ -> None
in
let typeConst = Option.bind typeConstraints (getType name) in
let type_ =
List.fold_left
(fun type_ newtype ->
match (type_, typeConst) with
| _, Some typ | Some typ, None -> Some (newtypeToVar newtype.txt typ)
| _ -> None)
type_ newtypes
in
match (type_, name, default) with
| Some type_, name, _ when isOptional name ->
(true, getLabel name, [], {type_ with ptyp_attributes = optionalAttrs})
:: types
| Some type_, name, _ -> (false, getLabel name, [], type_) :: types
| None, name, _ when isOptional name ->
( true,
getLabel name,
[],
Typ.var ~loc ~attrs:optionalAttrs (safeTypeFromValue name) )
:: types
| None, name, _ when isLabelled name ->
(false, getLabel name, [], Typ.var ~loc (safeTypeFromValue name)) :: types
| _ -> types
let argWithDefaultValue (name, default, _, _, _, _) =
match default with
| Some default when isOptional name -> Some (getLabel name, default)
| _ -> None
let argToConcreteType types (name, _loc, type_) =
match name with
| name when isLabelled name -> (false, getLabel name, [], type_) :: types
| name when isOptional name -> (true, getLabel name, [], type_) :: types
| _ -> types
let check_string_int_attribute_iter =
let attribute _ ({txt; loc}, _) =
if txt = "string" || txt = "int" then
React_jsx_common.raiseError ~loc
"@string and @int attributes not supported. See \
https://github.com/rescript-lang/rescript-compiler/issues/5724"
in
{Ast_iterator.default_iterator with attribute}
let transformStructureItem ~config mapper item =
match item with
(* external *)
| {
pstr_loc;
pstr_desc =
Pstr_primitive ({pval_attributes; pval_type} as value_description);
} as pstr -> (
match List.filter React_jsx_common.hasAttr pval_attributes with
| [] -> [item]
| [_] ->
(* If there is another @react.component, throw error *)
if config.React_jsx_common.hasReactComponent then
React_jsx_common.raiseErrorMultipleReactComponent ~loc:pstr_loc
else (
config.hasReactComponent <- true;
check_string_int_attribute_iter.structure_item
check_string_int_attribute_iter item;
let coreTypeOfAttr = React_jsx_common.coreTypeOfAttrs pval_attributes in
let typVarsOfCoreType =
coreTypeOfAttr
|> Option.map React_jsx_common.typVarsOfCoreType
|> Option.value ~default:[]
in
let rec getPropTypes types ({ptyp_loc; ptyp_desc} as fullType) =
match ptyp_desc with
| Ptyp_arrow (name, type_, ({ptyp_desc = Ptyp_arrow _} as rest))
when isLabelled name || isOptional name ->
getPropTypes ((name, ptyp_loc, type_) :: types) rest
| Ptyp_arrow (Nolabel, _type, rest) -> getPropTypes types rest
| Ptyp_arrow (name, type_, returnValue)
when isLabelled name || isOptional name ->
(returnValue, (name, returnValue.ptyp_loc, type_) :: types)
| _ -> (fullType, types)
in
let innerType, propTypes = getPropTypes [] pval_type in
let namedTypeList = List.fold_left argToConcreteType [] propTypes in
let retPropsType =
Typ.constr ~loc:pstr_loc
(Location.mkloc (Lident "props") pstr_loc)
(match coreTypeOfAttr with
| None -> makePropsTypeParams namedTypeList
| Some _ -> (
match typVarsOfCoreType with
| [] -> []
| _ -> [Typ.any ()]))
in
(* type props<'x, 'y> = { x: 'x, y?: 'y, ... } *)
let propsRecordType =
makePropsRecordType ~coreTypeOfAttr ~typVarsOfCoreType "props"
pstr_loc namedTypeList
in
(* can't be an arrow because it will defensively uncurry *)
let newExternalType =
Ptyp_constr
( {loc = pstr_loc; txt = Ldot (Lident "React", "componentLike")},
[retPropsType; innerType] )
in
let newStructure =
{
pstr with
pstr_desc =
Pstr_primitive
{
value_description with
pval_type = {pval_type with ptyp_desc = newExternalType};
pval_attributes = List.filter otherAttrsPure pval_attributes;
};
}
in
[propsRecordType; newStructure])
| _ ->
React_jsx_common.raiseError ~loc:pstr_loc
"Only one react.component call can exist on a component at one time")
(* let component = ... *)
| {pstr_loc; pstr_desc = Pstr_value (recFlag, valueBindings)} -> (
let fileName = filenameFromLoc pstr_loc in
let emptyLoc = Location.in_file fileName in
let mapBinding binding =
if React_jsx_common.hasAttrOnBinding binding then
if config.hasReactComponent then
React_jsx_common.raiseErrorMultipleReactComponent ~loc:pstr_loc
else (
config.hasReactComponent <- true;
let binding =
match binding.pvb_expr.pexp_desc with
| Pexp_record
([({txt = Ldot (Ldot (Lident "Js", "Fn"), _)}, e)], None) ->
{binding with pvb_expr = e}
| _ -> binding
in
let coreTypeOfAttr =
React_jsx_common.coreTypeOfAttrs binding.pvb_attributes
in
let typVarsOfCoreType =
coreTypeOfAttr
|> Option.map React_jsx_common.typVarsOfCoreType
|> Option.value ~default:[]
in
let bindingLoc = binding.pvb_loc in
let bindingPatLoc = binding.pvb_pat.ppat_loc in
let binding =
{
binding with
pvb_pat = {binding.pvb_pat with ppat_loc = emptyLoc};
pvb_loc = emptyLoc;
}
in
let fnName = getFnName binding.pvb_pat in
let internalFnName = fnName ^ "$Internal" in
let fullModuleName =
makeModuleName fileName config.nestedModules fnName
in
let modifiedBindingOld binding =
let expression = binding.pvb_expr in
(* TODO: there is a long-tail of unsupported features inside of blocks - Pexp_letmodule , Pexp_letexception , Pexp_ifthenelse *)
let rec spelunkForFunExpression expression =
match expression with
(* let make = (~prop) => ... *)
| {pexp_desc = Pexp_fun _} | {pexp_desc = Pexp_newtype _} ->
expression
(* let make = {let foo = bar in (~prop) => ...} *)
| {pexp_desc = Pexp_let (_recursive, _vbs, returnExpression)} ->
(* here's where we spelunk! *)
spelunkForFunExpression returnExpression
(* let make = React.forwardRef((~prop) => ...) *)
| {
pexp_desc =
Pexp_apply
(_wrapperExpression, [(Nolabel, innerFunctionExpression)]);
} ->
spelunkForFunExpression innerFunctionExpression
| {
pexp_desc =
Pexp_sequence (_wrapperExpression, innerFunctionExpression);
} ->
spelunkForFunExpression innerFunctionExpression
| {pexp_desc = Pexp_constraint (innerFunctionExpression, _typ)} ->
spelunkForFunExpression innerFunctionExpression
| {pexp_loc} ->
React_jsx_common.raiseError ~loc:pexp_loc
"react.component calls can only be on function definitions \
or component wrappers (forwardRef, memo)."
in
spelunkForFunExpression expression
in
let modifiedBinding binding =
let hasApplication = ref false in
let wrapExpressionWithBinding expressionFn expression =
Vb.mk ~loc:bindingLoc
~attrs:(List.filter otherAttrsPure binding.pvb_attributes)
(Pat.var ~loc:bindingPatLoc {loc = bindingPatLoc; txt = fnName})
(expressionFn expression)
in
let expression = binding.pvb_expr in
(* TODO: there is a long-tail of unsupported features inside of blocks - Pexp_letmodule , Pexp_letexception , Pexp_ifthenelse *)
let rec spelunkForFunExpression expression =
match expression with
(* let make = (~prop) => ... with no final unit *)
| {
pexp_desc =
Pexp_fun
( ((Labelled _ | Optional _) as label),
default,
pattern,
({pexp_desc = Pexp_fun _} as internalExpression) );
} ->
let wrap, hasForwardRef, exp =
spelunkForFunExpression internalExpression
in
( wrap,
hasForwardRef,
{
expression with
pexp_desc = Pexp_fun (label, default, pattern, exp);
} )
(* let make = (()) => ... *)
(* let make = (_) => ... *)
| {
pexp_desc =
Pexp_fun
( Nolabel,
_default,
{
ppat_desc =
Ppat_construct ({txt = Lident "()"}, _) | Ppat_any;
},
_internalExpression );
} ->
((fun a -> a), false, expression)
(* let make = (~prop) => ... *)
| {
pexp_desc =
Pexp_fun
( (Labelled _ | Optional _),
_default,
_pattern,
_internalExpression );
} ->
((fun a -> a), false, expression)
(* let make = (prop) => ... *)
| {
pexp_desc =
Pexp_fun (_nolabel, _default, pattern, _internalExpression);
} ->
if !hasApplication then ((fun a -> a), false, expression)
else
Location.raise_errorf ~loc:pattern.ppat_loc
"React: props need to be labelled arguments.\n\
\ If you are working with refs be sure to wrap with \
React.forwardRef.\n\
\ If your component doesn't have any props use () or _ \
instead of a name."
(* let make = {let foo = bar in (~prop) => ...} *)
| {pexp_desc = Pexp_let (recursive, vbs, internalExpression)} ->
(* here's where we spelunk! *)
let wrap, hasForwardRef, exp =
spelunkForFunExpression internalExpression
in
( wrap,
hasForwardRef,
{expression with pexp_desc = Pexp_let (recursive, vbs, exp)}
)
(* let make = React.forwardRef((~prop) => ...) *)
| {
pexp_desc =
Pexp_apply (wrapperExpression, [(Nolabel, internalExpression)]);
} ->
let () = hasApplication := true in
let _, _, exp = spelunkForFunExpression internalExpression in
let hasForwardRef = isForwardRef wrapperExpression in
( (fun exp -> Exp.apply wrapperExpression [(nolabel, exp)]),
hasForwardRef,
exp )
| {
pexp_desc = Pexp_sequence (wrapperExpression, internalExpression);
} ->
let wrap, hasForwardRef, exp =
spelunkForFunExpression internalExpression
in
( wrap,
hasForwardRef,
{
expression with
pexp_desc = Pexp_sequence (wrapperExpression, exp);
} )
| e -> ((fun a -> a), false, e)
in
let wrapExpression, hasForwardRef, expression =
spelunkForFunExpression expression
in
(wrapExpressionWithBinding wrapExpression, hasForwardRef, expression)
in
let bindingWrapper, hasForwardRef, expression =
modifiedBinding binding
in
(* do stuff here! *)
let namedArgList, newtypes, typeConstraints =
recursivelyTransformNamedArgsForMake mapper
(modifiedBindingOld binding)
[] [] None
in
let namedTypeList =
List.fold_left
(argToType ~newtypes ~typeConstraints)