Library
Module
Module type
Parameter
Class
Class type
A "Virtual application" (or "Elm-like" application) is described by two types:
and by the following values:
Commands represents (typically) asynchronous operations, such as querying a server, or waiting for some timer.
Messages can be generated either by a VDOM tree (to encapsulate DOM events) or by commands (to notify their outcome).
module Cmd : sig ... end
module Custom : sig ... end
type 'msg event_handler =
| MouseDown of mouse_event -> 'msg
| Click of mouse_event -> 'msg
| DblClick of mouse_event -> 'msg
| Focus of 'msg
| Blur of 'msg
| Input of string -> 'msg
| Change of string -> 'msg
| ChangeIndex of int -> 'msg
| ChangeChecked of bool -> 'msg
| MouseMove of mouse_event -> 'msg
| KeyDown of key_event -> 'msg
| KeyDownCancel of key_event -> 'msg option
| ContextMenu of mouse_event -> 'msg
| CustomEvent of Custom.event -> 'msg option
type 'msg attribute =
| Property of string * prop_val
| Style of string * string
| Handler of 'msg event_handler
| Attribute of string * string
val onmousedown : (mouse_event -> 'msg) -> 'msg attribute
val onclick : (mouse_event -> 'msg) -> 'msg attribute
val ondblclick : (mouse_event -> 'msg) -> 'msg attribute
val onfocus : 'msg -> 'msg attribute
val onblur : 'msg -> 'msg attribute
val oninput : (string -> 'msg) -> 'msg attribute
Pass the value
property of the event target.
val onchange_checked : (bool -> 'msg) -> 'msg attribute
Pass the checked
property of the event targer.
val onchange : (string -> 'msg) -> 'msg attribute
Pass the value
property of the event target.
val onchange_index : (int -> 'msg) -> 'msg attribute
Pass the selected_index
property of the event target.
val onmousemove : (mouse_event -> 'msg) -> 'msg attribute
val oncustomevent : (Custom.event -> 'msg option) -> 'msg attribute
Generic DOM properties correspond to actual properties on DOM objects. The name of these properties is usually the same as the corresponding HTML attribute, but not always (e.g. "class" attribute, but "className" property).
val str_prop : string -> string -> 'msg attribute
val int_prop : string -> int -> 'msg attribute
val bool_prop : string -> bool -> 'msg attribute
val float_prop : string -> float -> 'msg attribute
val style : string -> string -> 'msg attribute
A sub-field of the "style" DOM property.
val attr : string -> string -> 'mg attribute
val int_attr : string -> int -> 'msg attribute
val float_attr : string -> float -> 'msg attribute
val class_ : string -> 'msg attribute
val type_ : string -> 'msg attribute
val type_button : 'msg attribute
val value : string -> 'msg attribute
val disabled : bool -> 'msg attribute
Pseudo-attributes are interpreted in a special way by the infrastructure.
val scroll_to_show : 'msg attribute
When this pseudo-attribute is first applied to an element, its parent is automatically scrolled (vertically) to show the element.
val autofocus : 'msg attribute
When this pseudo-attribute is first applied to an element, the element gets focused.
val relative_dropdown : int -> 'msg attribute
When this pseudo-attribute is first applied to an element, the element is moved to a fixed position below its parents.
val autofocus_counter : int -> 'msg attribute
When this pseudo-attribute is first applied to an element, or applied with a different counter as the previous time, the element gets focused.
val blur_event : event
val input_event : string -> event
val checked_event : bool -> event
val change_event : string -> event
val change_index_event : int -> event
val custom_event : Custom.event -> event
type ('msg, 'res) elt_gen = ?key:string -> ?a:'msg attribute list -> 'res
A generic element in the SVG namespace.
val text : ?key:string -> string -> 'msg vdom
A text node.
Map attributes of a vdom element
Wrap all messages generated by a VDOM tree with the provided function.
Apply the function to generate a VDOM tree only if the function or its argument have changed (physically) from the previous synchronization.
Note that physical equality is used both for the function and its argument. In particular, this is unlikely to behave as expected if the function is defined inline (as an abstraction) or obtained by a (partial) function application. Instead, the functional argument should be a simple reference to a globally defined function.
TODO: n-ary versions
.
A custom kind of node. Usually not used directly.