om-next

lewix 2016-06-03T15:31:12.000121Z

anyone played with rum om.next reframe? what's your verdict?

danburton 2016-06-03T20:07:26.000122Z

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)])))

danburton 2016-06-03T20:08:40.000123Z

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.

danburton 2016-06-03T20:09:24.000125Z

Now that I've typed it out... it seems like this should just be a computed prop.