re-frame/src/re_frame/handlers.cljs

48 lines
1.4 KiB
Plaintext
Raw Normal View History

2014-12-15 11:56:32 +00:00
(ns re-frame.handlers
(:require [re-frame.db :refer [app-db]]
[re-frame.utils :refer [first-in-vector]]))
2014-12-08 03:48:59 +00:00
2014-12-15 11:56:32 +00:00
(def ^:private id->fn (atom {}))
(defn register
"register a handler for an event"
[event-id handler-fn]
(if (contains? @id->fn event-id)
(println "Warning: overwritting an event-handler" event-id)) ;; TODO: more generic logging
(swap! id->fn
assoc event-id handler-fn))
(defn dispatch
2014-12-15 11:56:32 +00:00
"reagent components handle events by calling this function.
Usage example:
(dispatch [:delete-item 42])"
[event-v]
(let [event-id (first-in-vector event-v)
handler-fn (get @id->fn event-id)]
(assert (not (nil? handler-fn)) (str "No event handler registered for event: " event-id ))
(handler-fn app-db event-v)))
2014-12-08 03:48:59 +00:00
2014-12-15 11:56:32 +00:00
(defn transaction!
"A helper fucntion to be used when writting event handlers.
Allows a handler to perform an atomic modification of the atom.
Modification consist of one or more mutations, wrapped by a function,
followed by a call to a validation fucntion which may also annotate the
data structures with further information.
XXX This feels a bit too nested."
([db description mutation-fn]
(transaction! db description mutation-fn identity))
([db description mutation-fn validation-fn]
(reset! db
(-> @db
(assoc :undo-description description)
mutation-fn
validation-fn))))
2014-12-08 03:48:59 +00:00