is there any tutorial on using merge and tempids?
@cjhowe https://awkay.github.io/om-tutorial/#!/om_tutorial.H_Remote_Mutation for temp ids
is there a state-update tracker for the browser to see what the om state tree is doing?
Iām thinking something like the redux devtools extension
@briantrice I usually write a function like this on my core.cljs
:
(defn log-state []
(-> @app :reconciler om/app-state deref js/console.log))
then I can just call it from the browser console, eg: my.namespace.core.log_state()
ps: this code is a Fulcro example, but you can do the same by referencing the Om reconciler directly, just skip the @app
part
not bad, ok