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

## 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-10-19 21:15:26 +08:00
..
actions Fix reaction-selector reference invalidation 2021-10-19 21:15:26 +08:00
middleware Desktop cherry-pick: "7240 Integrate lbry redux and lbryinc" 2021-10-19 20:40:07 +08:00
reducers Skip muted list update if no change 2021-10-19 21:15:26 +08:00
selectors Fix reaction-selector reference invalidation 2021-10-19 21:15:26 +08:00