Fork me on GitHub
#re-frame
<
2017-09-19
>
mikethompson03:09:55

@daiyi @lxsameer I'm certianly interested in gitbook. Will respond further on the existing PR

srihari06:09:15

A library we wrote in the recent past: https://github.com/nilenso/re-crud. Thoughts? 🙂

l1sp3r11:09:22

In re-frame is there an idomatic way to dispatch an event on a subscription? I want to sync with the server when the model changes. Theres many handlers which change the model, dont want to update all the handler to fire of a sync event

kasuko13:09:27

You basically use a raw subscription where you do the side effect first and return a manual reaction after. This way the reaction is what re-runs on sync without the side effect. Bonus, you get to supply a tear down handler too!