package bonsai
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=24c4c3149280abd639034ce3acf60e475a772202099e965be8bd8902524573ef
doc/bonsai.web_test/Bonsai_web_test/Handle/index.html
Module Bonsai_web_test.Handle
include module type of struct include Bonsai_test.Handle end
val show : (_, _) t -> unit
show
prints out the result of the component as specified by the Result_spec
that was passed into Handle.create
.
val show_diff :
?location_style:Patdiff_kernel.Format.Location_style.t ->
(_, _) t ->
unit
show_diff
will print the diff of the view between now and the last time that show
or show_diff
was called.
val recompute_view : (_, _) t -> unit
recompute_view
is like show
, but it doesn't print anything. Calling recompute_view
between invocations of show_diff
does not affect the diff the gets shown.
val recompute_view_until_stable : ?max_computes:int -> (_, _) t -> unit
This function calls recompute_view
until either max_computes
is reached (defaults to 100), or there are no more after-display lifecycle events for processing.
This can be useful when using e.g. Bonsai.Edge.on_change
, which might otherwise delay their effects until the next frame.
val store_view : (_, _) t -> unit
store_view
is like show
except that instead of printing the view to stdout, it only stores the current view for use with show_diff
. This can be useful if you want to print the diff of "before->after" without being required to print the entirety of "before".
val flush : (_, _) t -> unit
Flushes all the events in the event queue. This can be useful if e.g. you are completing an Effect synchronously via Svar, and don't want to go through the other functions which flush (like show
)
val result : ('result, _) t -> 'result
val do_actions : (_, 'incoming) t -> 'incoming list -> unit
val disable_bonsai_path_censoring : (_, _) t -> unit
val disable_bonsai_hash_censoring : (_, _) t -> unit
val clock : (_, _) t -> Bonsai_test__.Import.Incr.Clock.t
val advance_clock_by : (_, _) t -> Core.Time_ns.Span.t -> unit
val create :
(module Bonsai_test__.Proc.Result_spec.S
with type incoming = 'incoming
and type t = 'result) ->
?clock:Bonsai_test__.Import.Incr.Clock.t ->
'result Bonsai.Computation.t ->
('result, 'incoming) t
val show_model : (_, _) t -> unit
val result_incr : ('r, 'i) t -> 'r Bonsai_test__.Import.Incr.t
val lifecycle_incr : (_, _) t -> Bonsai_test__.Import.Incr.Packed.t
val apply_action_incr : (_, _) t -> Bonsai_test__.Import.Incr.Packed.t
val click_on :
?shift_key_down:bool ->
?alt_key_down:bool ->
?ctrl_key_down:bool ->
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
unit
val submit_form :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
unit
val set_checkbox :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
checked:bool ->
unit
val input_text :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
text:string ->
unit
val keydown :
?shift_key_down:bool ->
?alt_key_down:bool ->
?ctrl_key_down:bool ->
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
key:Js_of_ocaml.Dom_html.Keyboard_code.t ->
unit
val change :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
value:string ->
unit
val focus :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
unit
val blur :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
unit
val mousemove :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
unit
val trigger_hook :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
name:string ->
('c -> unit Bonsai_web_test__.Import.Vdom.Effect.t) Core.Type_equal.Id.t ->
'c ->
unit
val get_hook_value :
('a, 'b) t ->
get_vdom:('a -> Bonsai_web_test__.Import.Vdom.Node.t) ->
selector:string ->
name:string ->
'c Core.Type_equal.Id.t ->
'c
module Bulk_size_tracker : sig ... end
module Drag_and_drop : sig ... end