re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
Fabim 2021-05-04T06:59:55.385900Z

Nice, thanks, just didn’t find a way to do the shadow-cljs compiler options for the tracing in figwheel so I will stick with shadow. @p-himik @superstructor Reframe depends on reagent right? Or could I replace reagent with something like dumdom while still using all reframe features? I would like to remove react as a dependency.

Lu 2021-05-04T09:16:17.389800Z

I was wondering why the :dispatch-later map doesn’t support :dispatch-n . My use case is that I need two events happening after certain ms. I have many ways to achieve the same behaviour but thought that a dispatch-n within dispatch-later was the cleanest way.

p-himik 2021-05-04T09:30:52.389900Z

:dispatch-later and :dispatch-n are effects that accept events. That's why. With that being said, :dispatch-later accepts not only a map, but also a vector of maps - that's how you dispatch multiple events later.

👍 1
Lu 2021-05-04T09:41:13.390400Z

Ah right it makes sense 🙂. Will use a vec of maps thanks!

👍 1
kenny 2021-05-04T15:42:37.393Z

In the https://day8.github.io/re-frame/Effects/#order-of-effects, there's a portion that references best practices changing and the new approach (i.e., :db and :fx) are "more about making it easier to compose event handlers." I totally agree & think this new best practice is great. I'm curious, however, is the composition of event handlers documented somewhere? I'd like to be able to link to this doc from our internal best practices doc.

p-himik 2021-05-04T15:50:25.393300Z

There's not much to it. You have two handler functions, that both return {:db ..., :fx ...}, where both keys are optional. And then you just do something like:

(defn combine-fx-handlers [fns]
  (fn [{db :db :as ctx} event-v]
    (reduce (fn [acc f]
              (let [fxs (f (assoc ctx :db (:db acc)) event-v)]
                (cond-> acc
                  (contains? fxs :db) (assoc :db (:db fxs))
                  (contains? fxs :fx) (update :fx into (:fx fxs)))))
            {:db db, :fx []} fns)))
I haven't tested it though. And the way you compose your handlers might differ. Apart from that, you can have separate functions for db and fx updates - then combining them would be even easier.

kenny 2021-05-04T16:07:34.394400Z

Right. I was hoping for a link to documentation to reference though.

p-himik 2021-05-04T16:37:52.394600Z

As you said - it's not there. :) At least, I also don't know of it. If you want to see it there, a GitHub issue should be created first.