You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We added support for batching updates, so that react only has to commit one big update, instead of updating every component separately. Back then there were only two subscription mechanisms:
Onyx.connect
withOnyx
Right now, we only batch updates for withOnyx. The reason for that is that in the NewDot code we have a lot of places that do Onyx.connect outside of react and immediately expect data. So we only wanted to batch withOnyx updates, as these were only used with react:
Additionally, in fabric, react updates get batched automatically (if concurrent rendering is enabled) - so we might want to see if we can completely get rid of this manual batching mechanism.
In this PR:
We added support for batching updates, so that react only has to commit one big update, instead of updating every component separately. Back then there were only two subscription mechanisms:
Onyx.connect
withOnyx
Right now, we only batch updates for
withOnyx
. The reason for that is that in the NewDot code we have a lot of places that doOnyx.connect
outside of react and immediately expect data. So we only wanted to batchwithOnyx
updates, as these were only used with react:react-native-onyx/lib/OnyxUtils.ts
Lines 1004 to 1013 in c53826b
Now we have
useOnyx
, which internally usesOnyx.connect
, notwithOnyx
. So all components usinguseOnyx
might not be batched.I opened this issue because I want to look closer, if we need to enable a certain batching logic when using the
useOnyx
hook.The text was updated successfully, but these errors were encountered: