Source file ReactServerDOM.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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
type json = Yojson.Basic.t
type env = [ `Dev | `Prod ]
let is_dev = function `Dev -> true | `Prod -> false
let create_stack_trace () =
let slots = Printexc.backtrace_slots (Printexc.get_raw_backtrace ()) |> Option.value ~default:[||] in
let make_locations slot =
let location = Printexc.Slot.location slot in
let name = Printexc.Slot.name slot in
match (location, name) with
| Some location, Some name ->
`List
[
`String (Printf.sprintf "[SERVER] %s" name);
`String location.Printexc.filename;
`Int location.Printexc.line_number;
`Int location.Printexc.start_char;
]
| _, _ -> `List [ `String "Unknown function name"; `String "Unknown filename"; `Int 0; `Int 0 ]
in
`List (Array.to_list (Array.map make_locations slots))
let uuid_rng = Random.State.make_self_init ()
let generate_uuid () =
Printf.sprintf "%04x%04x-%04x-%04x-%04x-%04x%04x%04x" (Random.State.int uuid_rng 0xFFFF)
(Random.State.int uuid_rng 0xFFFF) (Random.State.int uuid_rng 0xFFFF)
(0x4000 lor Random.State.int uuid_rng 0x0FFF)
(0x8000 lor Random.State.int uuid_rng 0x3FFF)
(Random.State.int uuid_rng 0xFFFF) (Random.State.int uuid_rng 0xFFFF) (Random.State.int uuid_rng 0xFFFF)
let default_filter_stack_frame filename _function_name = filename <> ""
let capture_component_stack ~filter_stack_frame =
let bt = Printexc.get_callstack 10 in
let slots = Printexc.backtrace_slots bt |> Option.value ~default:[||] in
let frames =
Array.to_list
(Array.map
(fun slot ->
match (Printexc.Slot.location slot, Printexc.Slot.name slot) with
| Some loc, name_opt ->
let name = Option.value ~default:"" name_opt in
if filter_stack_frame loc.Printexc.filename name then
Some
(`List
[
`String name;
`String loc.Printexc.filename;
`Int loc.Printexc.line_number;
`Int loc.Printexc.start_char;
])
else None
| _ -> None)
slots)
in
`List (List.filter_map Fun.id frames)
module Physical_key : sig
type t
val make : 'a -> t
val equal : t -> t -> bool
end = struct
type t = Obj.t
let make = Obj.repr
let equal = ( == )
end
module Stream = struct
type 'a t = {
push : 'a -> unit;
push_import : 'a -> unit;
close : unit -> unit;
mutable closed : bool;
mutable rx_injected : bool;
mutable index : int;
mutable pending : int;
mutable pending_rows : (int * [ `Boundary | `Model_row ]) list;
written_client_references : (string * string, int) Hashtbl.t;
written_symbols : (string, string) Hashtbl.t;
written_hints : (string, unit) Hashtbl.t;
pending_hints : 'a Queue.t;
mutable written_promises : (Physical_key.t * int) list;
mutable written_server_references : (Physical_key.t * int) list;
mutable deferred_rows : (unit -> unit) list;
}
let close context =
if not context.closed then (
context.closed <- true;
context.close ())
let take_rx_definition context =
if context.rx_injected then false
else (
context.rx_injected <- true;
true)
let push to_chunk ~context =
let index = context.index in
context.index <- context.index + 1;
if not context.closed then context.push (to_chunk index);
index
let push_deferred to_chunk ~context =
let index = context.index in
context.index <- context.index + 1;
context.deferred_rows <- (fun () -> context.push (to_chunk index)) :: context.deferred_rows;
index
let rec flush_deferred ~context =
match context.deferred_rows with
| [] -> ()
| deferred ->
context.deferred_rows <- [];
List.iter (fun flush -> flush ()) (List.rev deferred);
flush_deferred ~context
let push_client_ref ~context ~import_module ~import_name to_chunk =
let key = (import_module, import_name) in
match Hashtbl.find_opt context.written_client_references key with
| Some existing_index -> existing_index
| None ->
let index = context.index in
context.index <- context.index + 1;
context.push_import (to_chunk index);
Hashtbl.replace context.written_client_references key index;
index
let push_hint ~context ~dedup_key row =
if not (Hashtbl.mem context.written_hints dedup_key) then (
Hashtbl.replace context.written_hints dedup_key ();
Queue.add row context.pending_hints)
let rec find_by_physical_key key = function
| [] -> None
| (k, index) :: rest -> if Physical_key.equal k key then Some index else find_by_physical_key key rest
let find_written_promise ~context key = find_by_physical_key key context.written_promises
let remember_written_promise ~context key index = context.written_promises <- (key, index) :: context.written_promises
let push_server_reference ~context ~key to_chunk =
match find_by_physical_key key context.written_server_references with
| Some existing_index -> existing_index
| None ->
let index = push to_chunk ~context in
context.written_server_references <- (key, index) :: context.written_server_references;
index
let push_symbol ~context ~symbol ~reference_of_index make_chunk =
match Hashtbl.find_opt context.written_symbols symbol with
| Some reference -> reference
| None ->
let index = push (make_chunk ()) ~context in
let reference = reference_of_index index in
Hashtbl.replace context.written_symbols symbol reference;
reference
let push_task ~kind make_chunk ~context =
let index = context.index in
context.index <- context.index + 1;
context.pending <- context.pending + 1;
context.pending_rows <- (index, kind) :: context.pending_rows;
Lwt.async (fun () ->
let%lwt to_chunk = make_chunk () in
context.pending <- context.pending - 1;
context.pending_rows <- List.filter (fun (i, _) -> i <> index) context.pending_rows;
if not context.closed then (
context.push (to_chunk index);
flush_deferred ~context;
if context.pending = 0 then close context);
Lwt.return ());
index
let push_async make_chunk ~context = push_task ~kind:`Model_row make_chunk ~context
let push_boundary_async make_chunk ~context = push_task ~kind:`Boundary make_chunk ~context
let make ?(initial_index = 0) ?(pending = 0) () =
let stream, push_raw, close_raw = Push_stream.make () in
let pending_hints = Queue.create () in
let drain_hints () =
if not (Queue.is_empty pending_hints) then (
Queue.iter push_raw pending_hints;
Queue.clear pending_hints)
in
( stream,
{
push =
(fun chunk ->
drain_hints ();
push_raw chunk);
push_import = push_raw;
close =
(fun () ->
drain_hints ();
close_raw ());
closed = false;
rx_injected = false;
pending;
index = initial_index;
pending_rows = [];
written_client_references = Hashtbl.create 16;
written_symbols = Hashtbl.create 4;
written_hints = Hashtbl.create 8;
pending_hints;
written_promises = [];
written_server_references = [];
deferred_rows = [];
} )
end
module Resources = struct
let get_attribute ~key:key_to_get (attributes : Html.attribute_list) =
List.find_map
(fun attr -> match attr with `Value (key, value) when String.equal key key_to_get -> Some value | _ -> None)
attributes
let resource_key item =
match (item : Html.node) with
| { tag = "script"; attributes; _ } -> get_attribute ~key:"src" attributes
| { tag = "link"; attributes; _ } -> get_attribute ~key:"href" attributes
| _ -> None
let add resource resources =
match resource_key resource with
| None -> Html.Node resource :: resources
| Some key ->
let exists = List.exists (function Html.Node node -> resource_key node = Some key | _ -> false) resources in
if exists then resources else Html.Node resource :: resources
end
module Fiber = struct
type t = {
context : Html.element Stream.t;
env : env;
debug : bool;
filter_stack_frame : string -> string -> bool;
mutable root_tag : string option;
mutable head_element : Html.node option;
mutable extra_head_children : Html.element list;
mutable resources : Html.element list;
mutable inside_head : bool;
mutable inside_body : bool;
mutable hoisted_count : int;
mutable html_attributes : Html.attribute_list;
}
let set_html_attributes ~fiber attrs = fiber.html_attributes <- attrs
let push_head_element ~fiber head = fiber.head_element <- Some head
let push_resource ~fiber resource = fiber.resources <- Resources.add resource fiber.resources
let ~fiber children =
fiber.extra_head_children <- Html.Node children :: fiber.extra_head_children
let root_tag ~fiber = fiber.root_tag
let set_root_tag ~fiber value = fiber.root_tag <- Some value
end
let map_children_with_tree_context f children =
match children with
| [] -> []
| [ single ] -> [ f single ]
| _ ->
let saved_ctx = !React.current_tree_context in
let total = List.length children in
let results =
List.mapi
(fun i el ->
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:total ~index:i;
f el)
children
in
React.current_tree_context := saved_ctx;
results
module Model = struct
type chunk = Value of json | Debug_ref of json | Component_ref of json | Error of env * React.error
let make_error_json ~env ~message ~stack ~digest : json =
match is_dev env with
| true ->
`Assoc [ ("message", `String message); ("stack", stack); ("env", `String "Server"); ("digest", `String digest) ]
| false -> `Assoc [ ("digest", `String digest) ]
let exn_to_error exn =
let message = Printexc.to_string exn in
let stack = create_stack_trace () in
{ React.message; stack; env = "Server"; digest = "" }
let lazy_value id = Printf.sprintf "$L%x" id
let promise_value id = Printf.sprintf "$@%x" id
let ref_value id = Printf.sprintf "$%x" id
let error_value id = Printf.sprintf "$Z%x" id
let action_value id = Printf.sprintf "$F%x" id
let escape_string_value value =
if String.length value > 0 && String.unsafe_get value 0 = '$' then "$" ^ value else value
let max_safe_integer = 9007199254740992.
let float_to_json value : json =
if Float.is_nan value then `String "$NaN"
else if value = Float.infinity then `String "$Infinity"
else if value = Float.neg_infinity then `String "$-Infinity"
else if value = 0. && Float.sign_bit value then `String "$-0"
else if Float.is_integer value && Float.abs value <= max_safe_integer then `Int (Float.to_int value)
else `Float value
let rec write_json buf (json : json) =
match json with
| `Float value -> Buffer.add_string buf (Js.Float.toString value)
| `List items ->
Buffer.add_char buf '[';
List.iteri
(fun i item ->
if i > 0 then Buffer.add_char buf ',';
write_json buf item)
items;
Buffer.add_char buf ']'
| `Assoc pairs ->
Buffer.add_char buf '{';
List.iteri
(fun i (key, value) ->
if i > 0 then Buffer.add_char buf ',';
Yojson.Basic.write_json buf (`String key);
Buffer.add_char buf ':';
write_json buf value)
pairs;
Buffer.add_char buf '}'
| (`String _ | `Int _ | `Bool _ | `Null) as scalar -> Yojson.Basic.write_json buf scalar
let rec map_sharing f = function
| [] -> []
| x :: rest as list ->
let x' = f x in
let rest' = map_sharing f rest in
if x' == x && rest' == rest then list else x' :: rest'
let rec escape_model_json (json : json) : json =
match json with
| `String value ->
let escaped = escape_string_value value in
if escaped == value then json else `String escaped
| `Float value -> float_to_json value
| `List items ->
let items' = map_sharing escape_model_json items in
if items' == items then json else `List items'
| `Assoc pairs ->
let escape_pair ((key, value) as pair) =
let value' = escape_model_json value in
if value' == value then pair else (key, value')
in
let pairs' = map_sharing escape_pair pairs in
if pairs' == pairs then json else `Assoc pairs'
| (`Bool _ | `Int _ | `Null) as scalar -> scalar
let style_to_json style =
`Assoc (List.map (fun (_, jsx_key, value) -> (jsx_key, `String (escape_string_value value))) style)
let action_to_json (action : _ Runtime.server_function) =
`Assoc [ ("id", `String (escape_string_value action.id)); ("bound", `Null) ]
let outline_server_function ~context ~to_chunk fn =
let index =
Stream.push_server_reference ~context ~key:(Physical_key.make fn) (to_chunk (Value (action_to_json fn)))
in
action_value index
let prop_to_json (prop : React.JSX.prop) =
match prop with
| Bool (_, key, value) -> Some (key, `Bool value)
| BooleanishString (_, key, value) -> Some (key, `Bool value)
| String (_, key, _) when key = "key" -> None
| String (_, key, value) -> Some (key, `String (escape_string_value value))
| Int (_, key, value) -> Some (key, `Int value)
| Float (_, key, value) -> Some (key, float_to_json value)
| Style value -> Some ("style", style_to_json value)
| DangerouslyInnerHtml html ->
Some ("dangerouslySetInnerHTML", `Assoc [ ("__html", `String (escape_string_value html)) ])
| Ref _ -> None
| Event _ -> None
| Action _ -> None
let props_to_json props = List.filter_map prop_to_json props
let chunk_ref_or_null = function None -> `Null | Some idx -> `String (ref_value idx)
let node ~env ~tag ?(key = None) ~props ?(owner = None) children : json =
let key = match key with None -> `Null | Some key -> `String key in
let props =
match children with
| [] -> props
| [ one_children ] -> ("children", one_children) :: props
| childrens -> ("children", `List childrens) :: props
in
match env with
| `Prod -> `List [ `String "$"; `String tag; key; `Assoc props ]
| `Dev -> `List [ `String "$"; `String tag; key; `Assoc props; chunk_ref_or_null owner; `Null; `Int 1 ]
let suspense_tag ~context ~to_chunk =
Stream.push_symbol ~context ~symbol:"react.suspense" ~reference_of_index:ref_value (fun () ->
to_chunk (Value (`String "$Sreact.suspense")))
let suspense_node ~env ~tag ~key ~fallback children : json =
let fallback_prop = match fallback with None -> [] | Some fallback -> [ ("fallback", fallback) ] in
let props =
match children with
| [] -> fallback_prop
| [ one ] -> ("children", one) :: fallback_prop
| _ -> ("children", `List children) :: fallback_prop
in
node ~env ~tag ~key ~props []
let suspense_placeholder ~env ~tag ~key ~fallback index =
suspense_node ~env ~tag ~key ~fallback [ `String (lazy_value index) ]
let component_ref ~module_ ~name =
let id = `String module_ in
let chunks = `List [] in
let component_name = `String name in
`List [ id; chunks; component_name ]
let value_to_chunk id value =
let buf = Buffer.create (4 * 1024) in
Buffer.add_string buf (Printf.sprintf "%x:" id);
write_json buf value;
Buffer.add_string buf "\n";
Buffer.contents buf
let debug_info_to_chunk id debug_info =
let buf = Buffer.create (4 * 1024) in
Buffer.add_string buf (Printf.sprintf "%x:D" id);
write_json buf debug_info;
Buffer.add_string buf "\n";
Buffer.contents buf
let client_reference_to_chunk id ref =
let buf = Buffer.create 256 in
Buffer.add_string buf (Printf.sprintf "%x:I" id);
write_json buf ref;
Buffer.add_string buf "\n";
Buffer.contents buf
let error_to_chunk id error =
let buf = Buffer.create 256 in
Buffer.add_string buf (Printf.sprintf "%x:E" id);
write_json buf error;
Buffer.add_string buf "\n";
Buffer.contents buf
let hint_to_chunk code payload =
let buf = Buffer.create 64 in
Buffer.add_string buf ":H";
Buffer.add_string buf code;
write_json buf payload;
Buffer.add_string buf "\n";
Buffer.contents buf
let to_chunk value id =
match value with
| Value value -> value_to_chunk id value
| Debug_ref debug_info -> debug_info_to_chunk id debug_info
| Component_ref ref -> client_reference_to_chunk id ref
| Error (env, error) ->
let error_json = make_error_json ~env ~message:error.message ~stack:error.stack ~digest:error.digest in
error_to_chunk id error_json
let make_debug_info ?owner ~stack name =
`Assoc
[
("name", `String name);
("env", `String "Server");
("key", `Null);
("owner", chunk_ref_or_null owner);
("stack", stack);
("props", `Assoc []);
]
let emit_debug_info_row ~filter_stack_frame ~context ~to_chunk ~name ~debug_info =
let owner_idx = Option.map fst debug_info in
let stack = capture_component_stack ~filter_stack_frame in
let chunk = make_debug_info ?owner:owner_idx ~stack name in
let debug_info_idx = Stream.push ~context (to_chunk (Value chunk)) in
(debug_info_idx, owner_idx)
let rec element_to_payload ?(debug = false) ?(filter_stack_frame = default_filter_stack_frame) ?debug_info ~context
~to_chunk ~env element =
let emit_debug_info ~name ~debug_info =
emit_debug_info_row ~filter_stack_frame ~context ~to_chunk ~name ~debug_info
in
let outline_with_debug_ref ~name ~debug_info ~render_child =
let model_index = context.index in
context.index <- context.index + 1;
let debug_info_idx, owner_idx = emit_debug_info ~name ~debug_info in
let new_debug_info = Some (debug_info_idx, owner_idx) in
let child_payload = render_child ~debug_info:new_debug_info in
context.push (to_chunk (Debug_ref (`String (ref_value debug_info_idx))) model_index);
context.push (to_chunk (Value child_payload) model_index);
`String (ref_value model_index)
in
let attach_debug_info ~name ~debug_info ~render_child =
match debug_info with
| None ->
let debug_info_idx, _ = emit_debug_info ~name ~debug_info:None in
context.push (to_chunk (Debug_ref (`String (ref_value debug_info_idx))) 0);
render_child ~debug_info:(Some (debug_info_idx, None))
| Some _ -> outline_with_debug_ref ~name ~debug_info ~render_child
in
let rec turn_element_into_payload ~context ~debug_info element =
match (element : React.element) with
| Empty -> `Null
| Static { original; _ } -> turn_element_into_payload ~context ~debug_info original
| Writer { original; _ } -> turn_element_into_payload ~context ~debug_info (original ())
| Text t -> `String (escape_string_value t)
| Int i -> `Int i
| Float f -> float_to_json f
| Lower_case_element { key; tag; attributes; children } ->
let props =
List.filter_map
(fun (prop : React.JSX.prop) ->
match prop with
| React.JSX.Action (_, key, f) -> Some (key, `String (outline_server_function ~context ~to_chunk f))
| _ -> prop_to_json prop)
attributes
in
let owner = Option.bind debug_info (fun (_, owner_idx) -> owner_idx) in
node ~env ~key ~tag ~props ~owner
(map_children_with_tree_context (turn_element_into_payload ~context ~debug_info) children)
| Fragment children -> turn_element_into_payload ~context ~debug_info children
| List children ->
`List (map_children_with_tree_context (turn_element_into_payload ~context ~debug_info) children)
| Array children ->
`List
(map_children_with_tree_context (turn_element_into_payload ~context ~debug_info) (Array.to_list children))
| Upper_case_component (name, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
match component () with
| element ->
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let result =
if debug then
attach_debug_info ~name ~debug_info ~render_child:(fun ~debug_info ->
turn_element_into_payload ~context ~debug_info element)
else turn_element_into_payload ~context ~debug_info element
in
React.current_tree_context := saved_ctx;
result
| exception exn ->
React.current_tree_context := saved_ctx;
let error = exn_to_error exn in
let index = Stream.push_deferred ~context (to_chunk (Error (env, error))) in
`String (lazy_value index))
| Async_component (name, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
let promise =
try component ()
with exn ->
React.current_tree_context := saved_ctx;
raise exn
in
match Lwt.state promise with
| Fail exn ->
React.current_tree_context := saved_ctx;
let error = exn_to_error exn in
let index = Stream.push_deferred ~context (to_chunk (Error (env, error))) in
`String (lazy_value index)
| Return element ->
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let result =
if debug then
attach_debug_info ~name ~debug_info ~render_child:(fun ~debug_info ->
turn_element_into_payload ~context ~debug_info element)
else turn_element_into_payload ~context ~debug_info element
in
React.current_tree_context := saved_ctx;
result
| Sleep ->
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let promise =
try%lwt
let%lwt element = promise in
let result = to_chunk (Value (turn_element_into_payload ~context ~debug_info element)) in
React.current_tree_context := saved_ctx;
Lwt.return result
with exn ->
React.current_tree_context := saved_ctx;
let error = exn_to_error exn in
Lwt.return (to_chunk (Error (env, error)))
in
let index = Stream.push_async (fun () -> promise) ~context in
`String (lazy_value index))
| Suspense { key; children; fallback } ->
let tag = suspense_tag ~context ~to_chunk in
let children = turn_element_into_payload ~context ~debug_info children in
let fallback = Option.map (turn_element_into_payload ~context ~debug_info) fallback in
suspense_node ~env ~tag ~key ~fallback [ children ]
| Client_component { key; import_module; import_name; props; client = _ } ->
let ref = component_ref ~module_:import_module ~name:import_name in
let index = Stream.push_client_ref ~context ~import_module ~import_name (to_chunk (Component_ref ref)) in
let client_props = models_to_payload ~context ~to_chunk ~env props in
node ~env ~tag:(lazy_value index) ~key ~props:client_props []
| Provider { children; push; _ } ->
let pop = push () in
let result = turn_element_into_payload ~context ~debug_info children in
pop ();
result
| Consumer children -> turn_element_into_payload ~context ~debug_info children
in
turn_element_into_payload ~context ~debug_info element
and model_to_payload ~context ?debug ?filter_stack_frame ~to_chunk ~env value =
match (value : React.model_value) with
| Json json -> escape_model_json json
| Error error ->
let index = Stream.push_deferred ~context (to_chunk (Error (env, error))) in
`String (error_value index)
| Element element -> element_to_payload ~context ?debug ?filter_stack_frame ~to_chunk ~env element
| Promise (promise, value_to_model) -> (
let written_key = Physical_key.make promise in
match Stream.find_written_promise ~context written_key with
| Some index -> `String (promise_value index)
| None ->
let index =
match Lwt.state promise with
| Return value ->
Stream.push_deferred ~context (fun index ->
match model_to_payload ~context ~to_chunk ~env (value_to_model value) with
| payload -> to_chunk (Value payload) index
| exception exn -> to_chunk (Error (env, exn_to_error exn)) index)
| Sleep ->
let promise =
try%lwt
let%lwt value = promise in
let model = value_to_model value in
let payload = model_to_payload ~context ~to_chunk ~env model in
Lwt.return (to_chunk (Value payload))
with exn ->
let error = exn_to_error exn in
Lwt.return (to_chunk (Error (env, error)))
in
Stream.push_async (fun () -> promise) ~context
| Fail exn ->
let error = exn_to_error exn in
Stream.push_deferred ~context (to_chunk (Error (env, error)))
in
Stream.remember_written_promise ~context written_key index;
`String (promise_value index))
| List list ->
let list = List.map (fun element -> model_to_payload ~context ~to_chunk ~env element) list in
`List list
| Assoc assoc ->
let assoc = List.map (fun (name, value) -> (name, model_to_payload ~context ~to_chunk ~env value)) assoc in
`Assoc assoc
| Function action -> `String (outline_server_function ~context ~to_chunk action)
and models_to_payload ~context ~to_chunk ~env props =
List.map (fun (name, value) -> (name, model_to_payload ~context ~to_chunk ~env value)) props
let element_to_root_payload ?(debug = false) ?(filter_stack_frame = default_filter_stack_frame) ~context ~to_chunk
~env element =
let rec go ~debug_info (element : React.element) =
match element with
| React.Static { original; _ } -> go ~debug_info original
| Writer { original; _ } -> go ~debug_info (original ())
| Fragment children -> go ~debug_info children
| Consumer children -> go ~debug_info children
| Provider { children; push; _ } ->
let pop = push () in
let%lwt payload = go ~debug_info children in
pop ();
Lwt.return payload
| (Upper_case_component _ | Async_component _) when debug && Option.is_some debug_info ->
Lwt.return (element_to_payload ~debug ~filter_stack_frame ?debug_info ~context ~to_chunk ~env element)
| Upper_case_component (name, component) ->
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
let element =
try component ()
with exn ->
React.current_tree_context := saved_ctx;
raise exn
in
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let%lwt payload = continue_with_debug ~name ~debug_info element in
React.current_tree_context := saved_ctx;
Lwt.return payload
| Async_component (name, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
let promise =
try component ()
with exn ->
React.current_tree_context := saved_ctx;
raise exn
in
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
try%lwt
let%lwt element = promise in
let%lwt payload = continue_with_debug ~name ~debug_info element in
React.current_tree_context := saved_ctx;
Lwt.return payload
with exn ->
React.current_tree_context := saved_ctx;
Lwt.reraise exn)
| element ->
Lwt.return (element_to_payload ~debug ~filter_stack_frame ?debug_info ~context ~to_chunk ~env element)
and continue_with_debug ~name ~debug_info element =
match (debug, debug_info) with
| true, None ->
let debug_info_idx, _ = emit_debug_info_row ~filter_stack_frame ~context ~to_chunk ~name ~debug_info:None in
context.push (to_chunk (Debug_ref (`String (ref_value debug_info_idx))) 0);
go ~debug_info:(Some (debug_info_idx, None)) element
| _ -> go ~debug_info element
in
go ~debug_info:None element
let model_to_root_payload ?debug ?filter_stack_frame ~context ~to_chunk ~env (value : React.model_value) =
match value with
| Element element -> element_to_root_payload ?debug ?filter_stack_frame ~context ~to_chunk ~env element
| other -> Lwt.return (model_to_payload ?debug ?filter_stack_frame ~context ~to_chunk ~env other)
let push_root_task ?debug ?filter_stack_frame ~context ~env model =
Stream.push_async ~context (fun () ->
try%lwt
let%lwt payload = model_to_root_payload ?debug ?filter_stack_frame ~context ~to_chunk ~env model in
Lwt.return (to_chunk (Value payload))
with exn -> Lwt.return (to_chunk (Error (env, exn_to_error exn))))
let hint_sink ~context { Flight_hints.dedup_key; code; payload } =
Stream.push_hint ~context ~dedup_key (hint_to_chunk code payload)
let run_stream ~env ~debug ?filter_stack_frame ?subscribe model =
let stream, context = Stream.make () in
Flight_hints.with_sink (hint_sink ~context) (fun () ->
let (_root_index : int) = push_root_task ~debug ?filter_stack_frame ~context ~env model in
match subscribe with None -> Lwt.return () | Some subscribe -> Lwt_stream.iter_s subscribe stream)
let render ?(env = `Dev) ?(debug = false) ?filter_stack_frame ?subscribe ?identifier_prefix model =
React.reset_id_rendering ?prefix:identifier_prefix ();
run_stream ~env ~debug ?filter_stack_frame ?subscribe model
let create_action_response ?(env = `Dev) ?(debug = false) ?filter_stack_frame ?subscribe response =
let%lwt response =
try%lwt response
with exn ->
let message = Printexc.to_string exn in
let stack = create_stack_trace () in
let digest = generate_uuid () in
Lwt.return (React.Model.Error { message; stack; env = "Server"; digest })
in
run_stream ~env ~debug ?filter_stack_frame ?subscribe response
end
let rsc_start_script =
Html.node "script" []
[
Html.raw
{|
let enc = new TextEncoder();
let srr_stream = (window.srr_stream = {});
srr_stream.push = () => {
srr_stream._c.enqueue(enc.encode(document.currentScript.dataset.payload));
};
srr_stream.close = () => {
srr_stream._c.close();
};
srr_stream.readable_stream = new ReadableStream({ start(c) { srr_stream._c = c; } });
|};
]
let rc_function_definition = Fizz_instructions.complete_boundary
let rc_function_script = Html.node "script" [] [ Html.raw rc_function_definition ]
let rx_function_definition = Fizz_instructions.client_render_boundary
let timeout_error_message =
"Switched to client rendering because the server rendering aborted due to:\n\nThe render timed out."
let timeout_error = { React.message = "The render timed out."; stack = `Null; env = "Server"; digest = "" }
let client_render_boundary_to_chunk ~env ~message ~include_definition index =
let rx_call =
match env with
| `Prod -> Printf.sprintf {|$RX("B:%x","")|} index
| `Dev -> Printf.sprintf {|$RX("B:%x","","%s")|} index (Html.escape_for_inline_script message)
in
Html.node "script" [] [ Html.raw (if include_definition then rx_function_definition ^ ";" ^ rx_call else rx_call) ]
let client_render_error_message exn =
"Switched to client rendering because the server rendering errored:\n\n" ^ Printexc.to_string exn
let model_to_chunk model index =
Html.raw
(Printf.sprintf "<script data-payload='%s'>window.srr_stream.push()</script>"
(Html.escape_attribute_value (Model.to_chunk model index)))
let boundary_to_chunk html index =
let rc_replacement b s = Html.node "script" [] [ Html.raw (Printf.sprintf "$RC('B:%x', 'S:%x')" b s) ] in
Html.list ~separator:"\n"
[
Html.node "div" [ Html.present "hidden"; Html.attribute "id" (Printf.sprintf "S:%x" index) ] [ html ];
rc_replacement index index;
]
let html_suspense_immediate inner = Html.list [ Html.raw "<!--$-->"; inner; Html.raw "<!--/$-->" ]
let html_suspense_placeholder ~fallback id =
Html.list
[
Html.raw "<!--$?-->";
Html.node "template" [ Html.attribute "id" (Printf.sprintf "B:%x" id) ] [];
fallback;
Html.raw "<!--/$-->";
]
let html_suspense_client_render ~env ~exn ~fallback =
let template =
match env with
| `Prod -> Html.node "template" [] []
| `Dev ->
let backtrace = Printexc.get_backtrace () in
Html.node "template" [ Html.attribute "data-msg" (Printexc.to_string exn ^ "\n" ^ backtrace) ] []
in
Html.list [ Html.raw "<!--$!-->"; template; fallback; Html.raw "<!--/$-->" ]
let chunk_stream_end_script = Html.node "script" [] [ Html.raw "window.srr_stream.close()" ]
let map_children_with_tree_context_lwt f children =
match children with
| [] -> Lwt.return []
| [ single ] ->
let%lwt result = f single in
Lwt.return [ result ]
| _ ->
let saved_ctx = !React.current_tree_context in
let total = List.length children in
let%lwt results =
Lwt_list.mapi_s
(fun i el ->
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:total ~index:i;
f el)
children
in
React.current_tree_context := saved_ctx;
Lwt.return results
let apply_form_action_attrs html_props action_id =
let has_method =
List.exists (function `Value (name, _) when String.equal name "method" -> true | _ -> false) html_props
in
let = Html.attribute "action" "" :: (if has_method then [] else [ Html.attribute "method" "POST" ]) in
let hidden =
Html.node "input"
[
Html.attribute "type" "hidden";
Html.attribute "name" (Printf.sprintf "$ACTION_ID_%s" action_id);
Html.attribute "value" "";
]
[]
in
(html_props @ extra_attrs, hidden)
let rewrite_action_props ~context attributes =
List.map
(fun prop ->
match prop with
| React.JSX.Action (_, key, f) ->
React.JSX.String (key, key, Model.outline_server_function ~context ~to_chunk:model_to_chunk f)
| _ -> prop)
attributes
let rec client_to_html ~(fiber : Fiber.t) (element : React.element) =
match element with
| Empty -> Lwt.return Html.null
| Static { prerendered; _ } -> Lwt.return (Html.raw prerendered)
| Writer { original; _ } -> client_to_html ~fiber (original ())
| Text text -> Lwt.return (Html.string text)
| Int i -> Lwt.return (Html.string (Int.to_string i))
| Float f -> Lwt.return (Html.string (Js.Float.toString f))
| Fragment children -> client_to_html ~fiber children
| List childrens ->
let%lwt html = map_children_with_tree_context_lwt (client_to_html ~fiber) childrens in
Lwt.return (Html.list html)
| Array childrens ->
let%lwt html = map_children_with_tree_context_lwt (client_to_html ~fiber) (Array.to_list childrens) in
Lwt.return (Html.list html)
| Lower_case_element { key; tag; attributes; children } when String.equal tag "form" ->
let context = fiber.context in
let form_action_id =
List.find_map
(fun (prop : React.JSX.prop) -> match prop with Action (_, _, f) -> Some f.id | _ -> None)
attributes
in
let attributes = rewrite_action_props ~context attributes in
render_lower_case ~fiber ~key ~tag ~attributes ~children ~form_action_id
| Lower_case_element { key; tag; attributes; children } ->
let context = fiber.context in
let attributes = rewrite_action_props ~context attributes in
render_lower_case ~fiber ~key ~tag ~attributes ~children ~form_action_id:None
| Upper_case_component (_name, component) ->
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
let rec wait_for_suspense_to_resolve () =
match component () with
| exception React.Suspend (Any_promise promise) ->
let%lwt _ = promise in
wait_for_suspense_to_resolve ()
| exception exn ->
React.current_tree_context := saved_ctx;
raise exn
| output ->
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then
React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let%lwt result = client_to_html ~fiber output in
React.current_tree_context := saved_ctx;
Lwt.return result
in
wait_for_suspense_to_resolve ()
| Async_component (_, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
try%lwt
let%lwt element = component () in
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let%lwt result = client_to_html ~fiber element in
React.current_tree_context := saved_ctx;
Lwt.return result
with exn ->
React.current_tree_context := saved_ctx;
raise exn)
| Suspense { key = _; children; fallback } -> (
let%lwt fallback_html = client_to_html ~fiber (Option.value fallback ~default:React.null) in
let context = fiber.context in
try%lwt
let promise = client_to_html ~fiber children in
match Lwt.state promise with
| Return html -> Lwt.return (html_suspense_immediate html)
| Sleep ->
let async =
try%lwt
let%lwt html = promise in
Lwt.return (boundary_to_chunk html)
with exn ->
Lwt.return (fun index ->
client_render_boundary_to_chunk ~env:fiber.env ~message:(client_render_error_message exn)
~include_definition:(Stream.take_rx_definition context) index)
in
let index = Stream.push_boundary_async ~context (fun () -> async) in
Lwt.return (html_suspense_placeholder ~fallback:fallback_html index)
| Fail exn -> Lwt.reraise exn
with exn ->
Lwt.return (html_suspense_client_render ~env:fiber.env ~exn ~fallback:fallback_html))
| Client_component { client; _ } -> client_to_html ~fiber client
| Provider { children; push; async_key; async_value } ->
let pop = push () in
let result = Lwt.with_value async_key (Some async_value) (fun () -> client_to_html ~fiber children) in
let%lwt result = result in
pop ();
Lwt.return result
| Consumer children -> client_to_html ~fiber children
and render_lower_case ~fiber ~key:_ ~tag ~attributes ~children ~form_action_id =
let html_props = ReactDOM.attributes_to_html attributes in
match (form_action_id, ReactDOM.getDangerouslyInnerHtml attributes) with
| _, Some inner_html -> Lwt.return (Html.node tag html_props [ Html.raw inner_html ])
| Some action_id, None ->
let html_props, hidden = apply_form_action_attrs html_props action_id in
let%lwt html = map_children_with_tree_context_lwt (client_to_html ~fiber) children in
Lwt.return (Html.node tag html_props (hidden :: html))
| None, None ->
let%lwt html = map_children_with_tree_context_lwt (client_to_html ~fiber) children in
Lwt.return (Html.node tag html_props html)
let is_async props =
let open React.JSX in
let has_async prop = match prop with Bool ("async", _, value) -> value | _ -> false in
List.exists has_async props
let has_precedence_and_rel_stylesheet props =
let open React.JSX in
let has_precedence prop = match prop with String ("precedence", _, _) -> true | _ -> false in
let has_rel_stylesheet prop = match prop with String ("rel", _, "stylesheet") -> true | _ -> false in
List.exists has_precedence props && List.exists has_rel_stylesheet props
type element_role =
| Html_root
| Head_section
| Body_section
| Hoistable_resource
| Hoistable_meta
| Regular
let classify_element ~(fiber : Fiber.t) ~tag ~attributes =
if fiber.inside_head && not fiber.inside_body then Regular
else
match tag with
| "html" -> ( match Fiber.root_tag ~fiber with Some "html" -> Html_root | _ -> Regular)
| "head" -> Head_section
| "body" -> Body_section
| _ when tag = "script" && is_async attributes -> Hoistable_resource
| _ when tag = "link" && has_precedence_and_rel_stylesheet attributes -> Hoistable_resource
| "title" | "meta" | "link" -> Hoistable_meta
| _ -> Regular
let rec render_element_to_html ~(fiber : Fiber.t) ~debug_info (element : React.element) : (Html.element * json) Lwt.t =
match element with
| Empty -> Lwt.return (Html.null, `Null)
| Static { prerendered; original } ->
let hoisted_before = fiber.hoisted_count in
let%lwt html, model = render_element_to_html ~fiber ~debug_info original in
if fiber.hoisted_count = hoisted_before then Lwt.return (Html.raw prerendered, model) else Lwt.return (html, model)
| Writer { original; _ } ->
render_element_to_html ~fiber ~debug_info (original ())
| Text s -> Lwt.return (Html.string s, `String (Model.escape_string_value s))
| Int i -> Lwt.return (Html.string (Int.to_string i), `Int i)
| Float f ->
Lwt.return (Html.string (Js.Float.toString f), Model.float_to_json f)
| Fragment children -> render_element_to_html ~fiber ~debug_info children
| List list -> elements_to_html ~fiber ~debug_info list
| Array arr -> elements_to_html ~fiber ~debug_info (Array.to_list arr)
| Upper_case_component (name, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
match component () with
| element ->
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let%lwt result = continue_with_debug_html ~fiber ~name ~debug_info element in
React.current_tree_context := saved_ctx;
Lwt.return result
| exception exn ->
React.current_tree_context := saved_ctx;
raise exn)
| Async_component (name, component) -> (
let saved_ctx = !React.current_tree_context in
React.reset_component_id_state saved_ctx;
try%lwt
let%lwt element = component () in
let did_use_id = React.check_did_render_id_hook () in
if did_use_id then React.current_tree_context := React.Tree_context.push saved_ctx ~total_children:1 ~index:0;
let%lwt result = continue_with_debug_html ~fiber ~name ~debug_info element in
React.current_tree_context := saved_ctx;
Lwt.return result
with exn ->
React.current_tree_context := saved_ctx;
raise exn)
| Client_component { key; import_module; import_name; props; client } ->
let context = fiber.context in
let env = fiber.env in
let props = Model.models_to_payload ~context ~to_chunk:model_to_chunk ~env props in
let%lwt html = client_to_html ~fiber client in
let ref : json = Model.component_ref ~module_:import_module ~name:import_name in
let index = Stream.push_client_ref ~context ~import_module ~import_name (model_to_chunk (Component_ref ref)) in
let model = Model.node ~env ~tag:(Model.lazy_value index) ~key ~props [] in
Lwt.return (html, model)
| Suspense { key; children; fallback } -> (
let context = fiber.context in
let%lwt html_fallback, model_fallback =
match fallback with
| None -> Lwt.return (Html.null, None)
| Some fallback ->
let%lwt html, model = render_element_to_html ~fiber ~debug_info fallback in
Lwt.return (html, Some model)
in
let tag = Model.suspense_tag ~context ~to_chunk:model_to_chunk in
try%lwt
let promise = render_element_to_html ~fiber ~debug_info children in
match Lwt.state promise with
| Sleep ->
let promise =
try%lwt
let%lwt html, model = promise in
let to_chunk index = Html.list [ boundary_to_chunk html index; model_to_chunk (Value model) index ] in
Lwt.return to_chunk
with exn ->
let error = Model.exn_to_error exn in
let to_chunk index = model_to_chunk (Error (fiber.env, error)) index in
Lwt.return to_chunk
in
let index = Stream.push_boundary_async ~context (fun () -> promise) in
Lwt.return
( html_suspense_placeholder ~fallback:html_fallback index,
Model.suspense_placeholder ~env:fiber.env ~tag ~key ~fallback:model_fallback index )
| Return (html, model) ->
let model = Model.suspense_node ~env:fiber.env ~tag ~key ~fallback:model_fallback [ model ] in
Lwt.return (html_suspense_immediate html, model)
| Fail exn -> Lwt.reraise exn
with exn ->
let context = fiber.context in
let error = Model.exn_to_error exn in
let to_chunk index =
Html.list [ model_to_chunk (Error (fiber.env, error)) index; boundary_to_chunk Html.null index ]
in
let index = Stream.push ~context to_chunk in
let html = html_suspense_placeholder ~fallback:html_fallback index in
Lwt.return (html, Model.suspense_placeholder ~env:fiber.env ~tag ~key ~fallback:model_fallback index))
| Provider { children; push; async_key; async_value } ->
let pop = push () in
let result =
Lwt.with_value async_key (Some async_value) (fun () -> render_element_to_html ~fiber ~debug_info children)
in
let%lwt result = result in
pop ();
Lwt.return result
| Consumer children -> render_element_to_html ~fiber ~debug_info children
| Lower_case_element { key; tag; attributes; children } ->
render_lower_case_element ~fiber ~debug_info ~key ~tag ~attributes ~children ()
and continue_with_debug_html ~(fiber : Fiber.t) ~name ~debug_info element =
if not fiber.debug then render_element_to_html ~fiber ~debug_info element
else
let context = fiber.context in
let filter_stack_frame = fiber.filter_stack_frame in
match debug_info with
| None ->
let debug_info_idx, _ =
Model.emit_debug_info_row ~filter_stack_frame ~context ~to_chunk:model_to_chunk ~name ~debug_info:None
in
context.push (model_to_chunk (Debug_ref (`String (Model.ref_value debug_info_idx))) 0);
render_element_to_html ~fiber ~debug_info:(Some (debug_info_idx, None)) element
| Some _ ->
let model_index = context.index in
context.index <- context.index + 1;
let debug_info_idx, owner_idx =
Model.emit_debug_info_row ~filter_stack_frame ~context ~to_chunk:model_to_chunk ~name ~debug_info
in
let%lwt html, child_model =
render_element_to_html ~fiber ~debug_info:(Some (debug_info_idx, owner_idx)) element
in
context.push (model_to_chunk (Debug_ref (`String (Model.ref_value debug_info_idx))) model_index);
context.push (model_to_chunk (Value child_model) model_index);
Lwt.return (html, `String (Model.ref_value model_index))
and render_lower_case_element ~fiber ~debug_info ~key ~tag ~attributes ~children () =
let inner_html = ReactDOM.getDangerouslyInnerHtml attributes in
(match Fiber.root_tag ~fiber with Some _ -> () | None -> Fiber.set_root_tag ~fiber tag);
match classify_element ~fiber ~tag ~attributes with
| Regular when String.equal tag "form" ->
render_form_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html ()
| Regular -> render_regular_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html ()
| Html_root ->
Fiber.set_html_attributes ~fiber (ReactDOM.attributes_to_html attributes);
let%lwt html, model = render_regular_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html () in
let html_children = match html with Html.Node { children; _ } -> Html.list children | _ -> html in
Lwt.return (html_children, model)
| Head_section ->
fiber.inside_head <- true;
let%lwt value =
handle_hoistable_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html
~on_push:Fiber.push_head_element ()
in
fiber.inside_head <- false;
Lwt.return value
| Body_section ->
fiber.inside_body <- true;
let%lwt value = render_regular_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html () in
fiber.inside_body <- false;
Lwt.return value
| Hoistable_resource ->
handle_hoistable_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html
~on_push:Fiber.push_resource ()
| Hoistable_meta ->
handle_hoistable_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html
~on_push:Fiber.push_extra_head_child ()
and handle_hoistable_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html ~on_push () =
fiber.hoisted_count <- fiber.hoisted_count + 1;
let props = Model.props_to_json attributes in
let owner = Option.bind debug_info (fun (_, owner_idx) -> owner_idx) in
let create_model children =
match (Html.is_self_closing_tag tag, inner_html) with
| _, Some _ | true, _ -> Model.node ~env:fiber.env ~tag ~key ~props ~owner []
| false, None ->
let children = match children with `List l -> l | other -> [ other ] in
Model.node ~env:fiber.env ~tag ~key ~props ~owner children
in
let create_html_node ~html_props ~children_html =
match inner_html with
| Some inner_html -> Html.{ tag; attributes = html_props; children = [ Html.raw inner_html ] }
| None -> Html.{ tag; attributes = html_props; children = [ children_html ] }
in
let html_props = ReactDOM.attributes_to_html attributes in
let%lwt children_html, children_model = elements_to_html ~fiber ~debug_info children in
let html = create_html_node ~html_props ~children_html in
on_push ~fiber html;
Lwt.return (Html.null, create_model children_model)
and process_attributes ~context ?form_action_id attributes =
let html_props =
List.map
(fun (prop : React.JSX.prop) ->
match (form_action_id, prop) with
| Some _, Action (_, _, _) ->
Html.omitted ()
| _ -> ReactDOM.attribute_to_html prop)
attributes
in
let json_props =
List.filter_map
(fun (prop : React.JSX.prop) ->
match prop with
| Action (_, key, f) -> Some (key, `String (Model.outline_server_function ~context ~to_chunk:model_to_chunk f))
| _ -> Model.prop_to_json prop)
attributes
in
(html_props, json_props)
and render_regular_element ~fiber ~debug_info ~key ~tag ~attributes ~children ~inner_html () =
let html_props, json_props = process_attributes ~context:fiber.context attributes in
let owner = Option.bind debug_info (fun (_, owner_idx) -> owner_idx) in
match (Html.is_self_closing_tag tag, inner_html) with
| true, _ -> Lwt.return (Html.node tag html_props [], Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner [])
| false, Some inner_html ->
Lwt.return
( Html.node tag html_props [ Html.raw inner_html ],
Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner [] )
| false, None ->
let%lwt html, model = elements_to_html ~fiber ~debug_info children in
let model_children = match model with `List l -> l | other -> [ other ] in
Lwt.return
(Html.node tag html_props [ html ], Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner model_children)
and render_form_element ~(fiber : Fiber.t) ~debug_info ~key ~tag ~attributes ~children ~inner_html () =
let context = fiber.context in
let action_id =
List.find_map
(fun (prop : React.JSX.prop) -> match prop with Action (_, _, f) -> Some f.id | _ -> None)
attributes
in
let html_props, json_props = process_attributes ~context ?form_action_id:action_id attributes in
let owner = Option.bind debug_info (fun (_, owner_idx) -> owner_idx) in
match (inner_html, action_id) with
| Some inner_html, _ ->
Lwt.return
( Html.node tag html_props [ Html.raw inner_html ],
Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner [] )
| None, Some action_id ->
let html_props, hidden = apply_form_action_attrs html_props action_id in
let%lwt html, model = elements_to_html ~fiber ~debug_info children in
let model_children = match model with `List l -> l | other -> [ other ] in
Lwt.return
( Html.node tag html_props [ Html.list [ hidden; html ] ],
Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner model_children )
| None, None ->
let%lwt html, model = elements_to_html ~fiber ~debug_info children in
let model_children = match model with `List l -> l | other -> [ other ] in
Lwt.return
(Html.node tag html_props [ html ], Model.node ~env:fiber.env ~tag ~key ~props:json_props ~owner model_children)
and elements_to_html ~fiber ~debug_info elements =
let%lwt html_and_models = map_children_with_tree_context_lwt (render_element_to_html ~fiber ~debug_info) elements in
let rec split_rev acc_a acc_b = function
| [] -> (List.rev acc_a, List.rev acc_b)
| (a, b) :: rest -> split_rev (a :: acc_a) (b :: acc_b) rest
in
let htmls, model = split_rev [] [] html_and_models in
let html = match htmls with [ one ] -> one | many -> Html.list many in
Lwt.return (html, `List model)
let is_body_node element = match (element : Html.element) with Html.Node { tag = "body"; _ } -> true | _ -> false
let push_children_into ~children:new_children html =
let open Html in
match html with
| Node { tag; children; attributes } -> Node { tag; attributes; children = children @ new_children }
| _ -> html
let get_html_attr key (attrs : Html.attribute_list) =
List.find_map (function `Value (k, v) when String.equal k key -> Some v | _ -> None) attrs
let has_html_attr key (attrs : Html.attribute_list) =
List.exists
(function
| `Value (k, _) when String.equal k key -> true | `Present k' when String.equal k' key -> true | _ -> false)
attrs
type head_bucket = Charset | Viewport | Stylesheet_resource | Async_script | Other
let classify_head_element (element : Html.element) =
match element with
| Html.Node { tag = "meta"; attributes; _ } -> (
if has_html_attr "charset" attributes then Charset
else match get_html_attr "name" attributes with Some "viewport" -> Viewport | _ -> Other)
| Html.Node { tag = "link"; attributes; _ } ->
if has_html_attr "precedence" attributes then
match get_html_attr "rel" attributes with Some "stylesheet" -> Stylesheet_resource | _ -> Other
else Other
| Html.Node { tag = "style"; attributes; _ } ->
if has_html_attr "href" attributes && has_html_attr "precedence" attributes then Stylesheet_resource else Other
| Html.Node { tag = "script"; attributes; _ } ->
if has_html_attr "async" attributes && has_html_attr "src" attributes then Async_script else Other
| _ -> Other
let sort_head_children children =
let charset = ref [] in
let viewport = ref [] in
let stylesheets = ref [] in
let scripts = ref [] in
let other = ref [] in
let rec distribute = function
| [] -> ()
| Html.Null :: rest -> distribute rest
| Html.List (_, nested) :: rest ->
distribute nested;
distribute rest
| el :: rest ->
(match classify_head_element el with
| Charset -> charset := el :: !charset
| Viewport -> viewport := el :: !viewport
| Stylesheet_resource -> stylesheets := el :: !stylesheets
| Async_script -> scripts := el :: !scripts
| Other -> other := el :: !other);
distribute rest
in
distribute children;
let acc = List.rev !other in
let acc = List.rev_append !scripts acc in
let acc = List.rev_append !stylesheets acc in
let acc = List.rev_append !viewport acc in
List.rev_append !charset acc
let reconstruct_document ~(fiber : Fiber.t) ~root_html ~user_scripts ~skip_root =
let root_element_is_html_tag = match Fiber.root_tag ~fiber with Some tag -> tag = "html" | None -> false in
let all_head_content = List.rev_append fiber.resources (List.rev fiber.extra_head_children) in
if root_element_is_html_tag then
let body =
match (is_body_node root_html, skip_root) with
| true, false -> push_children_into ~children:user_scripts root_html
| true, true | false, true -> Html.list user_scripts
| false, false -> Html.list (root_html :: user_scripts)
in
match fiber.head_element with
| Some node ->
let combined = sort_head_children (all_head_content @ node.children) in
let head = Html.Node { node with children = combined } in
Html.node "html" fiber.html_attributes [ head; body ]
| None ->
let sorted = sort_head_children all_head_content in
Html.node "html" fiber.html_attributes [ Html.node "head" [] sorted; body ]
else
let hoisted =
match fiber.head_element with
| Some node -> [ Html.Node { node with children = sort_head_children (all_head_content @ node.children) } ]
| None -> sort_head_children all_head_content
in
let rest = if skip_root then user_scripts else root_html :: user_scripts in
Html.list (hoisted @ rest)
let default_progressive_chunk_size = 12800
let create_preload_link href =
Html.Node
{
tag = "link";
attributes =
[ Html.attribute "rel" "modulepreload"; Html.attribute "fetchPriority" "low"; Html.attribute "href" href ];
children = [];
}
let create_initial_resources ~bootstrap_scripts ~bootstrap_modules =
match bootstrap_scripts with
| Some scripts -> List.map create_preload_link scripts
| None -> ( match bootstrap_modules with Some modules -> List.map create_preload_link modules | None -> [])
let create_user_scripts ~root_data_payload ?bootstrapScriptContent ?bootstrapScripts ?bootstrapModules () =
let bootstrap_script_content =
match bootstrapScriptContent with
| None -> Html.null
| Some content -> Html.node "script" [] [ Html.raw (Html.escape_entire_inline_script content) ]
in
let bootstrap_scripts_nodes =
match bootstrapScripts with
| None -> Html.null
| Some scripts ->
scripts
|> List.map (fun src -> Html.node "script" [ Html.attribute "src" src; Html.attribute "async" "" ] [])
|> Html.list
in
let bootstrap_modules_nodes =
match bootstrapModules with
| None -> Html.null
| Some modules ->
modules
|> List.map (fun src ->
Html.node "script"
[ Html.attribute "src" src; Html.attribute "async" ""; Html.attribute "type" "module" ]
[])
|> Html.list
in
[
rc_function_script;
rsc_start_script;
root_data_payload;
bootstrap_script_content;
bootstrap_scripts_nodes;
bootstrap_modules_nodes;
]
let render_html ?(skipRoot = false) ?(env = `Dev) ?(debug = false) ?(filter_stack_frame = default_filter_stack_frame)
?timeout ?(progressive_chunk_size = default_progressive_chunk_size) ?bootstrapScriptContent ?bootstrapScripts
?bootstrapModules ?identifier_prefix element =
React.reset_id_rendering ?prefix:identifier_prefix ();
React.Cache.with_request_cache_async (fun () ->
let progressive_chunk_size = max 1 progressive_chunk_size in
let initial_resources =
create_initial_resources ~bootstrap_scripts:bootstrapScripts ~bootstrap_modules:bootstrapModules
in
let stream, context = Stream.make ~initial_index:1 ~pending:1 () in
let fiber : Fiber.t =
{
context;
env;
debug;
filter_stack_frame;
head_element = None;
extra_head_children = [];
html_attributes = [];
resources = List.rev initial_resources;
root_tag = None;
inside_head = false;
inside_body = false;
hoisted_count = 0;
}
in
let%lwt root_html, root_model = render_element_to_html ~fiber ~debug_info:None element in
let root_data_payload = model_to_chunk (Value root_model) 0 in
Stream.flush_deferred ~context;
context.pending <- context.pending - 1;
if context.pending = 0 then Stream.close context;
let user_scripts =
create_user_scripts ~root_data_payload ?bootstrapScriptContent ?bootstrapScripts ?bootstrapModules ()
in
let html = reconstruct_document ~fiber ~root_html ~user_scripts ~skip_root:skipRoot in
let subscribe fn =
let buf = Buffer.create progressive_chunk_size in
let flush () =
let contents = Buffer.contents buf in
Buffer.clear buf;
fn contents
in
let buffered v =
Buffer.add_string buf (Html.to_string v);
if Buffer.length buf >= progressive_chunk_size then flush () else Lwt.return ()
in
let finished = ref false in
let finish () =
if !finished then Lwt.return ()
else begin
finished := true;
Buffer.add_string buf (Html.to_string chunk_stream_end_script);
flush ()
end
in
let subscription =
let%lwt () = Push_stream.subscribe ~fn:buffered stream in
finish ()
in
match timeout with
| None -> subscription
| Some seconds ->
Lwt.pick
[
subscription;
(let%lwt () = Lwt_unix.sleep seconds in
if not context.closed then (
let pending_boundaries =
List.rev
(List.filter_map
(fun (index, kind) -> match kind with `Boundary -> Some index | `Model_row -> None)
context.pending_rows)
in
let pending_rows = List.sort compare (List.map fst context.pending_rows) in
context.pending_rows <- [];
List.iter
(fun index ->
Buffer.add_string buf (Html.to_string (model_to_chunk (Error (env, timeout_error)) index)))
pending_rows;
List.iter
(fun index ->
Buffer.add_string buf
(Html.to_string
(client_render_boundary_to_chunk ~env ~message:timeout_error_message
~include_definition:(Stream.take_rx_definition context) index)))
pending_boundaries;
context.pending <- 0;
Stream.close context);
finish ());
]
in
Lwt.return (Html.to_string html, subscribe))
let render_model_value ?(env = `Dev) ?(debug = false) ?filter_stack_frame ?subscribe model =
React.Cache.with_request_cache_async (fun () -> Model.render ~env ~debug ?filter_stack_frame ?subscribe model)
let render_model ?(env = `Dev) ?(debug = false) ?filter_stack_frame ?subscribe model =
render_model_value ~env ~debug ?filter_stack_frame ?subscribe (React.Model.Element model)
let create_action_response ?env ?debug ?filter_stack_frame ?subscribe response =
React.Cache.with_request_cache_async (fun () ->
Model.create_action_response ?env ?debug ?filter_stack_frame ?subscribe response)
let hex_to_formdata_key hex_id = Option.map string_of_int (int_of_string_opt ("0x" ^ hex_id))
let resolve_from_formdata formData hex_id =
match hex_to_formdata_key hex_id with
| Some key -> (
try
let (`String json_str) = Js.FormData.get formData key in
Yojson.Basic.from_string json_str
with Not_found -> `Null)
| None -> `Null
let resolve_raw_from_formdata formData hex_id =
match hex_to_formdata_key hex_id with
| Some key -> (
try
let (`String data) = Js.FormData.get formData key in
Ok (`String data)
with Not_found -> Error (Printf.sprintf "decodeReply: Blob ($B) entry not found in FormData for key %s" key))
| None -> Error (Printf.sprintf "decodeReply: Blob ($B) invalid hex ID: %s" hex_id)
let unsupported name = Error (Printf.sprintf "decodeReply: %s is not supported" name)
type decode_ctx = { formData : Js.FormData.t option; temporaryReferences : (string -> json option) option }
let rec decode_value (ctx : decode_ctx) (json : json) : (json, string) result =
match json with
| `String value when String.length value >= 2 && String.get value 0 = '$' -> (
let len = String.length value in
let rest = String.sub value 2 (len - 2) in
match String.get value 1 with
| '$' -> Ok (`String (String.sub value 1 (len - 1)))
| 'u' -> Ok `Null
| 'K' -> Ok `Null
| 'D' -> Ok (`String rest)
| 'n' -> Ok (`String rest)
| 'N' -> Ok (`Float Float.nan)
| 'I' -> Ok (`Float Float.infinity)
| '-' -> Ok (if String.equal value "$-0" then `Float (-0.) else `Float Float.neg_infinity)
| 'Q' -> decode_outlined_map ctx rest
| 'W' -> resolve_outlined ctx "Set ($W)" rest
| 'i' -> resolve_outlined ctx "Iterator ($i)" rest
| 'F' -> resolve_outlined ctx "Server Reference ($F)" rest
| 'T' -> (
match ctx.temporaryReferences with
| Some lookup -> (
match lookup rest with
| Some resolved -> Ok resolved
| None ->
Error
(Printf.sprintf
"decodeReply: Temporary Reference $T%s not found in the provided temporaryReferences map" rest))
| None -> Error "decodeReply: Temporary Reference ($T) requires a temporaryReferences resolver")
| '@' -> unsupported "Promise ($@)"
| ('A' | 'O' | 'o' | 'U' | 'S' | 's' | 'L' | 'l' | 'G' | 'g' | 'M' | 'm' | 'V') as c ->
unsupported (Printf.sprintf "TypedArray/ArrayBuffer ($%c)" c)
| 'B' -> (
match ctx.formData with
| Some fd -> resolve_raw_from_formdata fd rest
| None -> Error "decodeReply: Blob ($B) requires FormData for resolution")
| 'R' -> unsupported "ReadableStream ($R)"
| 'r' -> unsupported "ReadableStream bytes ($r)"
| 'X' -> unsupported "AsyncIterable ($X)"
| 'x' -> unsupported "AsyncIterator ($x)"
| _ -> (
match ctx.formData with
| Some fd ->
let resolved = resolve_from_formdata fd (String.sub value 1 (len - 1)) in
decode_value ctx resolved
| None -> Ok `Null))
| `List items -> decode_list ctx items
| `Assoc pairs -> decode_assoc ctx pairs
| other -> Ok other
and decode_list ctx items =
let rec aux acc = function
| [] -> Ok (`List (List.rev acc))
| item :: rest -> ( match decode_value ctx item with Ok v -> aux (v :: acc) rest | Error _ as err -> err)
in
aux [] items
and decode_assoc ctx pairs =
let rec aux acc = function
| [] -> Ok (`Assoc (List.rev acc))
| (k, v) :: rest -> ( match decode_value ctx v with Ok v -> aux ((k, v) :: acc) rest | Error _ as err -> err)
in
aux [] pairs
and resolve_outlined ctx type_name hex_id =
match ctx.formData with
| None -> Error (Printf.sprintf "decodeReply: %s requires FormData for outlined model resolution" type_name)
| Some fd ->
let resolved = resolve_from_formdata fd hex_id in
decode_value ctx resolved
and decode_outlined_map ctx hex_id =
match resolve_outlined ctx "Map ($Q)" hex_id with
| Error _ as err -> err
| Ok resolved -> (
match resolved with
| `List pairs ->
let all_string_keys, assoc_pairs =
List.fold_left
(fun (all_ok, acc) pair ->
match pair with `List [ `String k; v ] -> (all_ok, (k, v) :: acc) | _ -> (false, acc))
(true, []) pairs
in
Ok (if all_string_keys then `Assoc (List.rev assoc_pairs) else resolved)
| other -> Ok other)
let decodeReply ?temporaryReferences body =
let ctx = { formData = None; temporaryReferences } in
match Yojson.Basic.from_string body with
| `List args ->
let rec aux acc = function
| [] -> Ok (Array.of_list (List.rev acc))
| arg :: rest -> ( match decode_value ctx arg with Ok v -> aux (v :: acc) rest | Error _ as err -> err)
in
aux [] args
| _ -> Error "Invalid args, this request was not created by server-reason-react"
| exception Yojson.Json_error msg -> Error (Printf.sprintf "Invalid JSON: %s" msg)
let decodeFormDataReply ?temporaryReferences formData =
let ctx = { formData = Some formData; temporaryReferences } in
let input_prefix = ref None in
let is_formdata_ref = function
| `String value ->
let len = String.length value in
if len > 2 && String.get value 0 = '$' && String.get value 1 = 'K' then Some (String.sub value 2 (len - 2))
else None
| _ -> None
in
let formDataEntries = Js.FormData.entries formData in
let model_str =
try
let (`String s) = Js.FormData.get formData "0" in
Ok s
with Not_found -> Error "decodeReply: FormData is missing the root entry at key \"0\""
in
match model_str with
| Error _ as err -> err
| Ok model_str -> (
match Yojson.Basic.from_string model_str with
| exception Yojson.Json_error msg -> Error (Printf.sprintf "Invalid JSON in FormData root: %s" msg)
| `List items -> (
let rec aux_args acc = function
| [] -> Ok (Array.of_list (List.rev acc))
| item :: rest -> (
match is_formdata_ref item with
| Some id ->
input_prefix := Some id;
aux_args acc rest
| None -> ( match decode_value ctx item with Ok v -> aux_args (v :: acc) rest | Error _ as err -> err))
in
let args_result = aux_args [] items in
match args_result with
| Error _ as err -> err
| Ok args ->
let form_prefix = Option.map (fun id -> (id ^ "_", String.length id + 1)) !input_prefix in
let rec aux_entries acc = function
| [] -> acc
| (key, value) :: entries -> (
if key = "0" then aux_entries acc entries
else
match form_prefix with
| Some (prefix, prefix_len) ->
if String.starts_with ~prefix key then (
Js.FormData.append acc (String.sub key prefix_len (String.length key - prefix_len)) value;
aux_entries acc entries)
else aux_entries acc entries
| None ->
Js.FormData.append acc key value;
aux_entries acc entries)
in
Ok (args, aux_entries (Js.FormData.make ()) formDataEntries))
| _ -> Error "Invalid args, this request was not created by server-reason-react")
let action_id_prefix = "$ACTION_ID_"
let action_prefix = "$ACTION_"
let decodeAction formData =
let action_id = ref None in
let user_fd = Js.FormData.make () in
let action_id_prefix_len = String.length action_id_prefix in
Js.FormData.entries formData
|> List.iter (fun (key, value) ->
if String.starts_with ~prefix:action_id_prefix key then
action_id := Some (String.sub key action_id_prefix_len (String.length key - action_id_prefix_len))
else if not (String.starts_with ~prefix:action_prefix key) then Js.FormData.append user_fd key value);
match !action_id with None -> None | Some id -> Some (id, user_fd)
type server_function =
| FormData of (Yojson.Basic.t array -> Js.FormData.t -> React.model_value Lwt.t)
| Body of (Yojson.Basic.t array -> React.model_value Lwt.t)
module type FunctionReferences = sig
type t
val registry : t
val register : string -> server_function -> unit
val get : string -> server_function option
end