Orientation:
re-frame.core
:
require
it, perhaps like this ...(ns my.namespace
(:require [re-frame.core :as rf]))
... now use rf/reg-event-fx or rf/subscribe
The core API consists of:
Occasionally, you'll need to use:
And, finally, there are the builtin Interceptors:
The following built-in effects are also a part of the API:
dispatch
one or more events after given delays. Expects a collection
of maps with two keys: :ms
and :dispatch
usage:
{:dispatch-later [{:ms 200 :dispatch [:event-id "param"]}
{:ms 100 :dispatch [:also :this :in :100ms]}]}
Which means: in 200ms do this: (dispatch [:event-id "param"])
and in 100ms ...
dispatch
one event. Expects a single vector.
usage:
{:dispatch [:event-id "param"] }
dispatch
more than one event. Expects a collection events.
usage:
{:dispatch-n (list [:do :all] [:three :of] [:these])}
Note 1: The events supplied will be dispatched in the order provided. Note 2: nil events are ignored which means events can be added conditionally:
{:dispatch-n (list (when (> 3 5) [:conditioned-out])
[:another-one])}
removes a previously registered event handler. Expects either a single id (typically a keyword), or a seq of ids.
usage:
{:deregister-event-handler :my-id)}
or:
{:deregister-event-handler [:one-id :another-id]}
reset! app-db with a new value. Expects a map.
usage:
{:db {:key1 value1 :key2 value2}}
Previous: Infographic: A re-frame Epoch Up: Index Next: Infographic: Event Processing
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close