aboutsummaryrefslogtreecommitdiff
path: root/src/View/Form.ml
blob: db73b0c07be9537c2dff993214b070c8561594b3 (plain)
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
let input id label init_value on_input =
  H.div
    [| HA.class_ "g-Form__Field" |]
    [| H.div
        [| HA.class_ "g-Form__Label" |]
        [| H.label
          [| HA.for_ id |]
          [| H.text label |]
        |]
    ;  H.input
        [| HA.id id
        ;  HE.on_input (fun e -> on_input (Element.value (Event.target e)))
        ;  HA.value init_value
        |]
        [| |]
    |]

let color_input id label init_value on_input =
  H.div
    [| HA.class_ "g-Form__Field" |]
    [| H.div
        [| HA.class_ "g-Form__Label" |]
        [| H.label
          [| HA.for_ id |]
          [| H.text label |]
        |]
    ;  H.input
        [| HA.id id
        ;  HE.on_input (fun e -> on_input (Element.value (Event.target e)))
        ;  HA.value init_value
        ;  HA.type_ "color"
        |]
        [| |]
    |]

let textarea id label init_value on_input =
  H.div
    [| HA.class_ "g-Form__Field" |]
    [| H.div
        [| HA.class_ "g-Form__Label" |]
        [| H.label
          [| HA.for_ id |]
          [| H.text label |]
        |]
    ;  H.textarea
        [| HA.id id
        ;  HA.class_ "g-Form__Textarea"
        ;  HE.on_input (fun e -> on_input (Element.value (Event.target e)))
        |]
        [| H.text init_value |]
    |]