I am using redux and I want to destructure teamMembers - Array from an Object name - teamData which I am getting from REDUX. This is what I have done below. I just want to confirm whether is this the right way to do.
const teamData = useSelector((state) => state.team.teamData);
const { description, heading } = teamData;
const teamMembers = useSelector((state) => state.team.teamData.teamMembers);
If possible, you should not do
Your code here is interested in
description
andheading
, but youruseSelector
selects the wholeteamData
. Now, if there is a third property onteamData
, let's saywinStreak
and thatwinStreak
changes, your component will rerender. Because that change towinData.teamStreak
causedwinData
to change. And youruseSelector
is watchingwinData
for changes.If you instead do
your component will only rerender, when
description
orheading
change. Because youruseSelector
now watches those two properties for changes. It does not care ifteamData
changes, it only cares if teamData.descriptionor
teamData.heading` change.So, in your case you should do
and not use any destructuring here. If you have to destructure the result of a
useSelector
call, that likely means that youruseSelector
call is also observing data you are not interested in in the first place.