Skip to content
Advertisement

React Redux – Mapping over array while rerendering only components holding changed object (in array)

Explanation Hi, I’m pretty new in ‘advanced’ React/Redux field. The problem that I have is: I didn’t use actions so the problem and code can be simplified as much as possible. MyParent component:

JavaScript

Now here is my child component:

JavaScript

And the reducer:

JavaScript

Question Let’s imagine there is ~1,000 objects inside the array. Everytime I change one of the object inside array, parent component rerenders (because of the selector), which also triggers all child components to rerender. I’m kind of confused when it comes to immutable changes with Redux, when does immutable change helps if this one is not the case? Every child component has their own key, but still, whole list will get rerender, is there something I’m missing? Is there a way to trigger render on only one child which corresponding object did change?

Example in main project Subtitle translator. You will have table, each row will have own textarea where you can write your subtitle for specific timestamp (start of subtitle – end of subtitle). After leaving the textarea, changes should be saved, that save causes lag because each “child” component (in this case each row) rerenders.

Thanks! Good luck 🙂

Advertisement

Answer

You can make MyChild a pure component with React.memo, your reducer already doesn’t change all the other elements of the array t.id == "1" ? {...t, text: "new text"} : t and each MyChild item has a unuque key so none should re render when you only chanage one item but you have to use React.memo because functional components will always re render. That is they will re create jsx but React may not render Dom when current generated jsx is the same as last time.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement