Quantcast
Channel: Reagent performance issue when passing atom as a function parameter - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Victor Bjelkholm for Reagent performance issue when passing atom as a function parameter

$
0
0

re-frame/dispatch puts your events in a queue for re-frame to process, so there can be a slightly delay before it actually goes through and your change will be there.

Sounds like you're experiencing the same issue stated here: https://github.com/day8/re-frame/issues/368

So one work around is to use re-frame.core/dispatch-sync which forces re-frame to handle the event directly and synchronously. You might have to also add a call to reagent.core/flush to force re-render the component. I haven't needed flush before when building web clients, but React Native seems to work differently.

You can read more about these two functions here:

Mentioned in the issue above is also https://github.com/Day8/re-com that supposedly works around the issue somehow, but I didn't take a closer look at that.

Your solution #2 is not wrong either, it just gives you a different way of working. So if you need the data in your app-db to update on every keypress for example, only something more like #1 will work. Or using solution #2 but passing in the atom as an argument to your component.


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>