anyone played with rum om.next reframe? what's your verdict?
Is there a way to access the reconciler for a given component? For example, (defui Thing ... (render [this] ... :on-click #(om.next/transact! (get-reconciler this) '[(:transact-a-thing)])))
Basically Thing needs to perform a transaction that affects its ancestors, but (om.next/transact! this ...)
seems to only update Thing and not its ancestors.
Now that I've typed it out... it seems like this should just be a computed prop.