forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_page.ml
95 lines (83 loc) · 2.38 KB
/
demo_page.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
let rec fib = function
| 1 | 2 -> 1
| n -> fib (n - 1 ) + fib (n - 2)
(** Imperative style *)
let sum n =
let v = ref 0 in
for i = 0 to n do
v := !v + i
done;
!v
(** List map *)
type 'a list =
| Nil
| Cons of 'a * 'a list
let rec map f = function
| Nil -> Nil
| Cons (x,xs) -> Cons (f x, map f xs)
(** Test curry and uncurry calling convention *)
let test_curry x y = x + y
let f = test_curry 32
(** Create a typed binding for react *)
type t
type element
external document : t = "document" [@@bs.val ]
external getElementById : t -> string -> element = "getElementById" [@@bs.send ]
(** Phantom types *)
type config
type component
type attrs
type component_class
external config :
?display_name:string ->
render:(unit -> component) -> unit ->
config = "" [@@bs.obj ] (** make a json object *)
external attrs:
?alt: string ->
?autoPlay: bool ->
unit -> attrs = "" [@@bs.obj]
external str : string -> component = "%identity"
type vdom
external vdom : vdom = "DOM" [@@bs.module "react"] [@@bs.val]
(* FIXME: investigate
cases:
{[
[@@bs.module "package1" "same_name"]
[@@bs.module "package2" "same_name"]
]}
{[
[@@bs.module "package" "name1"]
[@@bs.module "package" "name2"]
]}
*)
external h1 : vdom -> ?attrs:attrs -> component array -> component = "h1"
[@@bs.send] [@@bs.splice]
external h2 : vdom -> ?attrs:attrs -> component array -> component = "h2"
[@@bs.send] [@@bs.splice]
external h3 : vdom -> ?attrs:attrs -> component array -> component = "h3"
[@@bs.send] [@@bs.splice]
external h4 : vdom -> ?attrs:attrs -> component array -> component = "h4"
[@@bs.send] [@@bs.splice]
external div : vdom -> ?attrs:attrs -> component array -> component = "div"
[@@bs.send] [@@bs.splice]
external createClass :
config -> component_class = "createClass"
[@@bs.val "createClass"]
[@@bs.module "react"]
external render : component_class -> element -> unit = ""
[@@bs.val "render"]
[@@bs.module "react-dom"]
;;
(** Do the rendering *)
render (
createClass (
(config
~render:(fun _ ->
div vdom
~attrs:(attrs ~alt:"pic" ())
[|
h1 vdom [| str "hello react"|];
h2 vdom [| str "type safe!" |];
|]
)
()))) (getElementById document "hi")