lbry-desktop/ui/redux
infinite-persistence 4d01452447 Fix reaction-selector reference invalidation
When comments are refreshed, each `Comment` gets rendered 4-5 times due to reference invalidation for `othersReacts` (the data didn't actually change).

For selectors without transformation, there is no need to memoize using `createSelector` -- just access it directly. Also, don't do things like `return a[id] || {}` in a reducer, because the reference to the empty object will be different on each call.

Always return directly from the state so that the same reference is returned.

This simple change avoided the wasted resources needed for `createSelector`, and reduced to render to just 2 (initial render, and when reactions are fetched).
2021-12-03 15:22:32 -05:00
..
actions Fix reaction-selector reference invalidation 2021-12-03 15:22:32 -05:00
middleware lint 2021-10-15 23:49:41 -04:00
reducers Optimize tags and followedTags 2021-12-03 15:22:32 -05:00
selectors comment react selectors 2021-12-03 15:22:32 -05:00