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
type json = Yojson.Basic.t
type env = [ `Dev | `Prod ]
let is_dev = function `Dev -> true | `Prod -> false
let make_error ~message ~stack ~digest = { React.message; stack; env = "Server"; digest }
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))
module Stream = struct
type 'a t = { push : 'a -> unit; close : unit -> unit; mutable index : int; mutable pending : int }
let push to_chunk ~context =
let index = context.index in
context.index <- context.index + 1;
context.push (to_chunk index);
index
let push_async promise_to_chunk ~context =
let index = context.index in
context.index <- context.index + 1;
context.pending <- context.pending + 1;
Lwt.async (fun () ->
let%lwt to_chunk = promise_to_chunk in
context.pending <- context.pending - 1;
context.push (to_chunk index);
if context.pending = 0 then context.close ();
Lwt.return ());
index
let make ?(initial_index = 0) ?(pending = 0) () =
let stream, push, close = Push_stream.make () in
(stream, { push; close; pending; index = initial_index })
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 -> resources @ [ Html.Node resource ]
| Some key ->
let exists = List.exists (function Html.Node node -> resource_key node = Some key | _ -> false) resources in
if exists then resources else resources @ [ Html.Node resource ]
end
module Fiber = struct
type t = {
context : Html.element Stream.t;
env : env;
mutable visited_first_lower_case : string option;
mutable hoisted_head : Html.node option;
mutable hoisted_head_childrens : Html.element list;
mutable resources : Html.element list;
mutable inside_head : bool;
mutable inside_body : bool;
mutable html_tag_attributes : Html.attribute_list;
}
let set_html_tag_attributes ~fiber html_attributes = fiber.html_tag_attributes <- html_attributes
let push_hoisted_head ~fiber head = fiber.hoisted_head <- Some head
let push_resource ~fiber resource = fiber.resources <- Resources.add resource fiber.resources
let push_hoisted_head_childrens ~fiber children =
fiber.hoisted_head_childrens <- fiber.hoisted_head_childrens @ [ Node children ]
let visited_first_lower_case ~fiber = fiber.visited_first_lower_case
let set_visited_first_lower_case ~fiber value = fiber.visited_first_lower_case <- Some value
end
module Model = struct
type chunk = Value of json | Debug_ref of json | Component_ref of json | Error of env * React.error
let style_to_json style = `Assoc (List.map (fun (_, jsx_key, value) -> (jsx_key, `String value)) style)
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 prop_to_json (prop : React.JSX.prop) =
match prop with
| Bool (_, key, value) -> Some (key, `Bool value)
| React.JSX.String (_, key, _) when key = "key" -> None
| React.JSX.String (_, key, value) -> Some (key, `String value)
| React.JSX.Style value -> Some ("style", style_to_json value)
| React.JSX.DangerouslyInnerHtml html -> Some ("dangerouslySetInnerHTML", `Assoc [ ("__html", `String html) ])
| React.JSX.Ref _ -> None
| React.JSX.Event _ -> None
| React.JSX.Action _ -> None
let props_to_json props = List.filter_map prop_to_json props
let node ~tag ?(key = None) ~props ?(source = None) ?(debugId = None) ?(owner = None) children : json =
let key = match key with None -> `Null | Some key -> `String key in
let debugId = match debugId with None -> `Null | Some debugId -> `String debugId in
let source = match source with None -> `List [] | Some source -> `List source in
let owner =
match owner with
| None -> `Assoc []
| Some owner -> `Assoc [ ("name", `String owner) ]
in
let props =
match children with
| [] -> props
| [ one_children ] -> ("children", one_children) :: props
| childrens -> ("children", `List childrens) :: props
in
`List [ `String "$"; `String tag; key; `Assoc props; debugId; source; owner ]
let suspense_node ~key ~fallback children : json =
let fallback_prop = ("fallback", fallback) in
let props =
match children with
| [] -> [ fallback_prop ]
| [ one ] -> [ fallback_prop; ("children", one) ]
| _ -> [ fallback_prop; ("children", `List children) ]
in
node ~tag:"$Sreact.suspense" ~key ~props []
let suspense_placeholder ~key ~fallback index = suspense_node ~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);
Yojson.Basic.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);
Yojson.Basic.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);
Yojson.Basic.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);
Yojson.Basic.write_json buf error;
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 ?ownerName name =
let owner = match ownerName with Some owner -> `String owner | None -> `Null in
`Assoc
[
("name", `String name);
("env", `String "Server");
("key", `Null);
("owner", owner);
("stack", `List []);
("props", `Assoc []);
]
let push_debug_info ~context ~to_chunk ~env ~index ~ownerName =
let current_index = index in
if is_dev env then
let index = Stream.push ~context (to_chunk (Value (make_debug_info ownerName))) in
let debug_info_ref = Printf.sprintf "$%x" index in
context.push (to_chunk (Debug_ref (`String debug_info_ref)) current_index) |> ignore
else ()
let rec element_to_payload ?(debug = false) ~context ~is_root ~to_chunk ~env element =
let rec turn_element_into_payload ~context ~is_root element =
match (element : React.element) with
| Empty -> `Null
| DangerouslyInnerHtml _ ->
raise
(Invalid_argument
"InnerHtml does not exist in RSC, this is a bug in server-reason-react.ppx or a wrong construction of \
JSX manually")
| Text t -> `String t
| Lower_case_element { key; tag; attributes; children } ->
let attributes =
List.map
(fun prop ->
match prop with
| React.JSX.Action (_, key, f) ->
let index =
Stream.push ~context (to_chunk (Value (`Assoc [ ("id", `String f.id); ("bound", `Null) ])))
in
React.JSX.String (key, key, action_value index)
| _ -> prop)
attributes
in
let props = props_to_json attributes in
node ~key ~tag ~props (List.map (turn_element_into_payload ~context ~is_root) children)
| Fragment children -> turn_element_into_payload ~context ~is_root:false children
| List children -> `List (List.map (turn_element_into_payload ~context ~is_root:false) children)
| Array children -> `List (Array.map (turn_element_into_payload ~context ~is_root:false) children |> Array.to_list)
| Upper_case_component (name, component) -> (
match component () with
| element ->
if is_root then (
if debug then push_debug_info ~context ~to_chunk ~env ~index:0 ~ownerName:name else ();
turn_element_into_payload ~context ~is_root:false element)
else
let element_index =
Stream.push ~context (fun index ->
if debug then push_debug_info ~context ~to_chunk ~env ~index ~ownerName:name else ();
let payload = turn_element_into_payload ~context ~is_root element in
to_chunk (Value payload) index)
in
`String (ref_value element_index)
| exception exn ->
let error = exn_to_error exn in
let index = Stream.push ~context (to_chunk (Error (env, error))) in
`String (lazy_value index))
| Async_component (_, component) -> (
let promise = component () in
match Lwt.state promise with
| Fail exn ->
let message = Printexc.to_string exn in
let stack = create_stack_trace () in
let error = make_error ~message ~stack ~digest:"" in
let index = Stream.push ~context (to_chunk (Error (env, error))) in
`String (lazy_value index)
| Return element -> turn_element_into_payload ~context ~is_root:false element
| Sleep ->
let promise =
try%lwt
let%lwt element = promise in
Lwt.return (to_chunk (Value (turn_element_into_payload ~context ~is_root element)))
with exn ->
let message = Printexc.to_string exn in
let stack = create_stack_trace () in
let error = make_error ~message ~stack ~digest:"" in
Lwt.return (to_chunk (Error (env, error)))
in
let index = Stream.push_async promise ~context in
`String (lazy_value index))
| Suspense { key; children; fallback } ->
let fallback = turn_element_into_payload ~context ~is_root fallback in
suspense_node ~key ~fallback [ turn_element_into_payload ~context ~is_root children ]
| Client_component { import_module; import_name; props; client = _ } ->
let ref = component_ref ~module_:import_module ~name:import_name in
let index = Stream.push ~context (to_chunk (Component_ref ref)) in
let client_props = models_to_payload ~context ~to_chunk ~env props in
node ~tag:(ref_value index) ~props:client_props []
| Provider children -> turn_element_into_payload ~context ~is_root children
| Consumer children -> turn_element_into_payload ~context ~is_root children
in
turn_element_into_payload ~context ~is_root element
and model_to_payload ~context ?debug ~is_root ~to_chunk ~env value =
match (value : React.model_value) with
| Json json -> json
| Error error ->
let index = Stream.push ~context (to_chunk (Error (env, error))) in
`String (error_value index)
| Element element -> element_to_payload ~context ?debug ~is_root ~to_chunk ~env element
| Promise (promise, value_to_json) -> (
match Lwt.state promise with
| Return value ->
let json = value_to_json value in
let index = Stream.push ~context (to_chunk (Value json)) in
`String (promise_value index)
| Sleep ->
let promise =
try%lwt
let%lwt value = promise in
Lwt.return (to_chunk (Value (value_to_json value)))
with exn ->
let message = Printexc.to_string exn in
let stack = create_stack_trace () in
let error = make_error ~message ~stack ~digest:"" in
Lwt.return (to_chunk (Error (env, error)))
in
let index = Stream.push_async promise ~context in
`String (promise_value index)
| Fail exn ->
raise exn)
| List list ->
let list = List.map (fun element -> model_to_payload ~context ~is_root ~to_chunk ~env element) list in
`List list
| Assoc assoc ->
let assoc =
List.map (fun (name, value) -> (name, model_to_payload ~context ~is_root ~to_chunk ~env value)) assoc
in
`Assoc assoc
| Function action ->
let index = Stream.push ~context (to_chunk (Value (`Assoc [ ("id", `String action.id); ("bound", `Null) ]))) in
`String (action_value index)
and models_to_payload ~context ~to_chunk ~env props =
List.map (fun (name, value) -> (name, model_to_payload ~context ~is_root:false ~to_chunk ~env value)) props
let render ?(env = `Dev) ?(debug = false) ?subscribe (element : React.element) =
let stream, context = Stream.make () in
let to_root_chunk model id =
let payload = model_to_payload ~debug ~is_root:true ~context ~to_chunk ~env model in
to_chunk (Value payload) id
in
Stream.push ~context (to_root_chunk (React.Model.Element element)) |> ignore;
if context.pending = 0 then context.close ();
match subscribe with None -> Lwt.return () | Some subscribe -> Lwt_stream.iter_s subscribe stream
let create_action_response ?(env = `Dev) ?(debug = false) ?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 = stack |> Hashtbl.hash |> Int.to_string in
Lwt.return (React.Model.Error { message; stack; env = "Server"; digest })
in
let stream, context = Stream.make () in
let to_root_chunk value id =
let payload = model_to_payload ~debug ~is_root:true ~context ~to_chunk ~env value in
to_chunk (Value payload) id
in
Stream.push ~context (to_root_chunk response) |> ignore;
if context.pending = 0 then context.close ();
match subscribe with None -> Lwt.return () | Some subscribe -> Lwt_stream.iter_s subscribe stream
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 =
{|function $RC(a,b){a=document.getElementById(a);b=document.getElementById(b);b.parentNode.removeChild(b);if(a){a=a.previousSibling;var f=a.parentNode,c=a.nextSibling,e=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d)if(0===e)break;else e--;else"$"!==d&&"$?"!==d&&"$!"!==d||e++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;b.firstChild;)f.insertBefore(b.firstChild,c);a.data="$";a._reactRetry&&a._reactRetry()}}|}
let rc_function_script = Html.node "script" [] [ Html.raw rc_function_definition ]
let model_to_chunk model index =
Html.raw
(Printf.sprintf "<script data-payload='%s'>window.srr_stream.push()</script>"
(Html.single_quote_escape (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.attribute "hidden" "true"; 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 chunk_stream_end_script = Html.node "script" [] [ Html.raw "window.srr_stream.close()" ]
let rec client_to_html ~(fiber : Fiber.t) (element : React.element) =
match element with
| Empty -> Lwt.return Html.null
| DangerouslyInnerHtml html -> Lwt.return (Html.raw html)
| Text text -> Lwt.return (Html.string text)
| Fragment children -> client_to_html ~fiber children
| List childrens ->
let%lwt html = Lwt_list.map_p (client_to_html ~fiber) childrens in
Lwt.return (Html.list html)
| Array childrens ->
let%lwt html = childrens |> Array.to_list |> Lwt_list.map_p (client_to_html ~fiber) in
Lwt.return (Html.list html)
| Lower_case_element { key; tag; attributes; children } ->
let context = fiber.context in
let attributes =
List.map
(fun prop ->
match prop with
| React.JSX.Action (_, key, f) ->
let json = `Assoc [ ("id", `String f.id); ("bound", `Null) ] in
let index = Stream.push ~context (model_to_chunk (Value json)) in
React.JSX.String (key, key, Model.action_value index)
| _ -> prop)
attributes
in
render_lower_case ~fiber ~key ~tag ~attributes ~children
| Upper_case_component (_name, component) ->
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 -> Lwt.return Html.null
| output -> client_to_html ~fiber output
in
wait_for_suspense_to_resolve ()
| Async_component (_, component) ->
let%lwt element = component () in
client_to_html ~fiber element
| Suspense { key = _; children; fallback } ->
let%lwt fallback = client_to_html ~fiber fallback in
let context = fiber.context in
let async =
let%lwt html = children |> client_to_html ~fiber in
Lwt.return (boundary_to_chunk html)
in
let index = Stream.push_async ~context async in
let sync = html_suspense_placeholder ~fallback index in
Lwt.return sync
| Client_component { import_module = _; import_name = _; props = _; client } -> client_to_html ~fiber client
| Provider children -> client_to_html ~fiber children
| Consumer children -> client_to_html ~fiber children
and render_lower_case ~fiber ~key:_ ~tag ~attributes ~children =
let html_props = ReactDOM.attributes_to_html attributes in
match ReactDOM.getDangerouslyInnerHtml attributes with
| Some inner_html -> Lwt.return (Html.node tag html_props [ Html.raw inner_html ])
| None ->
let%lwt html = Lwt_list.map_p (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
let rec render_element_to_html ~(fiber : Fiber.t) (element : React.element) : (Html.element * json) Lwt.t =
match element with
| Empty -> Lwt.return (Html.null, `Null)
| DangerouslyInnerHtml html -> Lwt.return (Html.raw html, `Null)
| Text s -> Lwt.return (Html.string s, `String s)
| Fragment children -> render_element_to_html ~fiber children
| List list -> elements_to_html ~fiber list
| Array arr -> elements_to_html ~fiber (Array.to_list arr)
| Upper_case_component (_name, component) -> (
match component () with
| element -> render_element_to_html ~fiber element)
| Async_component (_, component) ->
let%lwt element = component () in
render_element_to_html ~fiber element
| Client_component { 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 ~context (model_to_chunk (Component_ref ref)) in
let model = Model.node ~tag:(Model.ref_value index) ~props [] in
Lwt.return (html, model)
| Suspense { key; children; fallback } -> (
let context = fiber.context in
let%lwt html_fallback, model_fallback = render_element_to_html ~fiber fallback in
try%lwt
let promise = render_element_to_html ~fiber 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 message = Printexc.to_string exn in
let stack = create_stack_trace () in
let error = make_error ~message ~stack ~digest:"" in
let to_chunk index = model_to_chunk (Error (fiber.env, error)) index in
Lwt.return to_chunk
in
let index = Stream.push_async ~context promise in
Lwt.return
( html_suspense_placeholder ~fallback:html_fallback index,
Model.suspense_placeholder ~key ~fallback:model_fallback index )
| Return (html, model) ->
let model = Model.suspense_node ~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 ~key ~fallback:model_fallback index))
| Provider children -> render_element_to_html ~fiber children
| Consumer children -> render_element_to_html ~fiber children
| Lower_case_element { key; tag; attributes; children } ->
render_lower_case_element ~fiber ~key ~tag ~attributes ~children ()
and render_lower_case_element ~fiber ~key ~tag ~attributes ~children () =
let inner_html = ReactDOM.getDangerouslyInnerHtml attributes in
(match Fiber.visited_first_lower_case ~fiber with
| Some _ -> ()
| None -> Fiber.set_visited_first_lower_case ~fiber tag);
if fiber.inside_head && not fiber.inside_body then
render_regular_element ~fiber ~key ~tag ~attributes ~children ~inner_html ()
else
match tag with
| "html" -> (
match Fiber.visited_first_lower_case ~fiber with
| Some "html" ->
Fiber.set_html_tag_attributes ~fiber (ReactDOM.attributes_to_html attributes);
let%lwt html, model = render_regular_element ~fiber ~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)
| _ -> render_regular_element ~fiber ~key ~tag ~attributes ~children ~inner_html ())
| "body" ->
fiber.inside_body <- true;
let%lwt value = render_regular_element ~fiber ~key ~tag ~attributes ~children ~inner_html () in
fiber.inside_body <- false;
Lwt.return value
| "head" ->
fiber.inside_head <- true;
let%lwt value =
handle_hoistable_element ~fiber ~key ~tag ~attributes ~children ~inner_html ~on_push:Fiber.push_hoisted_head
()
in
fiber.inside_head <- false;
Lwt.return value
| tag when (tag = "script" && is_async attributes) || (tag = "link" && has_precedence_and_rel_stylesheet attributes)
->
handle_hoistable_element ~fiber ~key ~tag ~attributes ~children ~inner_html ~on_push:Fiber.push_resource ()
| tag when tag = "title" || tag = "meta" || tag = "link" ->
handle_hoistable_element ~fiber ~key ~tag ~attributes ~children ~inner_html
~on_push:Fiber.push_hoisted_head_childrens ()
| _ -> render_regular_element ~fiber ~key ~tag ~attributes ~children ~inner_html ()
and handle_hoistable_element ~fiber ~key ~tag ~attributes ~children ~inner_html ~on_push () =
let props = Model.props_to_json attributes in
let create_model children =
match (Html.is_self_closing_tag tag, inner_html) with
| _, Some _ | true, _ -> Model.node ~tag ~key ~props []
| false, None -> Model.node ~tag ~key ~props [ 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 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 render_regular_element ~fiber ~key ~tag ~attributes ~children ~inner_html () =
let context = fiber.context in
let html_props = ReactDOM.attributes_to_html attributes in
let json_attributes =
List.map
(fun prop ->
match prop with
| React.JSX.Action (_, key, f) ->
let html = model_to_chunk (Value (`Assoc [ ("id", `String f.id); ("bound", `Null) ])) in
let index = Stream.push ~context html in
React.JSX.String (key, key, Model.action_value index)
| _ -> prop)
attributes
in
let json_props = Model.props_to_json json_attributes in
match (Html.is_self_closing_tag tag, inner_html) with
| true, _ ->
Lwt.return (Html.node tag html_props [], Model.node ~tag ~key ~props:json_props [])
| false, Some inner_html ->
Lwt.return (Html.node tag html_props [ Html.raw inner_html ], Model.node ~tag ~key ~props:json_props [])
| false, None ->
let%lwt html, model = elements_to_html ~fiber children in
Lwt.return (Html.node tag html_props [ html ], Model.node ~tag ~key ~props:json_props [ model ])
and elements_to_html ~fiber elements =
let%lwt html_and_models = elements |> Lwt_list.map_p (render_element_to_html ~fiber) in
let htmls, model = List.split html_and_models in
Lwt.return (Html.list htmls, `List model)
let is_body_node element =
match (element : Html.element) with
| Html.Node { tag = "body"; _ } -> true
| Html.List (_, [ 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 }
| List (separator, [ Node { tag; children; attributes } ]) ->
List (separator, [ Node { tag; attributes; children = children @ new_children } ])
| _ -> html
let render_html ?(skipRoot = false) ?(env = `Dev) ?debug:(_ = false) ?bootstrapScriptContent ?bootstrapScripts
?bootstrapModules element =
let initial_resources =
match bootstrapScripts with
| Some scripts ->
List.map
(fun script ->
Html.Node
{
tag = "link";
attributes =
[
Html.attribute "rel" "modulepreload";
Html.attribute "fetchPriority" "low";
Html.attribute "href" script;
];
children = [];
})
scripts
| None -> (
match bootstrapModules with
| Some modules ->
List.map
(fun script ->
Html.Node
{
tag = "link";
attributes =
[
Html.attribute "rel" "modulepreload";
Html.attribute "fetchPriority" "low";
Html.attribute "href" script;
];
children = [];
})
modules
| None -> [])
in
let stream, context = Stream.make ~initial_index:1 ~pending:1 () in
let fiber : Fiber.t =
{
context;
env;
hoisted_head = None;
hoisted_head_childrens = [];
html_tag_attributes = [];
resources = initial_resources;
visited_first_lower_case = None;
inside_head = false;
inside_body = false;
}
in
let%lwt root_html, root_model = render_element_to_html ~fiber element in
let root_data_payload = model_to_chunk (Value root_model) 0 in
context.pending <- context.pending - 1;
if context.pending = 0 then context.close ();
let bootstrap_script_content =
match bootstrapScriptContent with
| None -> Html.null
| Some bootstrapScriptContent -> Html.node "script" [] [ Html.raw bootstrapScriptContent ]
in
let bootstrap_scripts_nodes =
match bootstrapScripts with
| None -> Html.null
| Some scripts ->
scripts
|> List.map (fun script -> Html.node "script" [ Html.attribute "src" script; Html.attribute "async" "" ] [])
|> Html.list
in
let bootstrap_modules_nodes =
match bootstrapModules with
| None -> Html.null
| Some modules ->
modules
|> List.map (fun script ->
Html.node "script"
[ Html.attribute "src" script; Html.attribute "async" ""; Html.attribute "type" "module" ]
[])
|> Html.list
in
let user_scripts =
[
rc_function_script;
rsc_start_script;
root_data_payload;
bootstrap_script_content;
bootstrap_scripts_nodes;
bootstrap_modules_nodes;
]
in
let root_element_is_html_tag =
match Fiber.visited_first_lower_case ~fiber with Some tag -> tag = "html" | None -> false
in
let html =
if root_element_is_html_tag then
let body =
match (is_body_node root_html, skipRoot) 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
let resources = fiber.resources @ fiber.hoisted_head_childrens in
match fiber.hoisted_head with
| Some node ->
let head = Html.Node { node with children = node.children @ resources } in
Html.node "html" fiber.html_tag_attributes [ head; body ]
| None ->
Html.node "html" fiber.html_tag_attributes [ Html.node "head" [] resources; body ]
else if skipRoot then Html.list user_scripts
else Html.list (root_html :: user_scripts)
in
let subscribe fn =
let fn_with_to_string v = fn (Html.to_string v) in
let%lwt () = Push_stream.subscribe ~fn:fn_with_to_string stream in
fn_with_to_string chunk_stream_end_script
in
Lwt.return (Html.to_string html, subscribe)
let render_model = Model.render
let create_action_response = Model.create_action_response
type model = Reference of string | FormData of string | Undefined | Json of json
let parseModel model =
match model with
| `String value when String.starts_with ~prefix:"$" value -> (
let prefix = String.sub value 1 1 in
match prefix with
| "u" -> Undefined
| "K" -> FormData (String.sub value 2 (String.length value - 2))
| _ -> Reference (String.sub value 1 (String.length value - 1)))
| `String value -> Json (`String value)
| _ -> Json model
let decodeReply body =
match Yojson.Basic.from_string body with
| `List args ->
args
|> List.filter_map (fun arg ->
match parseModel arg with
| Json json -> Some json
| _ -> None)
|> Array.of_list
| _ -> raise (Invalid_argument "Invalid args, this request was not created by server-reason-react")
let decodeFormDataReply formData =
let input_prefix = ref None in
let decodeArgs body =
match Yojson.Basic.from_string body with
| `List args -> args |> List.map (fun arg -> parseModel arg)
| _ -> raise (Invalid_argument "Invalid args, this request was not created by server-reason-react")
in
let formDataEntries = Js.FormData.entries formData in
let args =
Js.FormData.get formData "0" |> function
| `String model ->
decodeArgs model
|> List.filter_map (function
| Json json -> Some json
| FormData id ->
input_prefix := Some id;
None
| _ -> None)
|> Array.of_list
in
let rec aux acc = function
| [] -> acc
| (key, value) :: entries -> (
if key = "0" then aux acc entries
else
match !input_prefix with
| Some id ->
let form_prefix = id ^ "_" in
let key = String.sub key (String.length form_prefix) (String.length key - String.length form_prefix) in
Js.FormData.append acc key value;
aux acc entries
| None ->
Js.FormData.append acc key value;
aux acc entries)
in
(args, aux (Js.FormData.make ()) formDataEntries)
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