Skip to content
Advertisement

How can I set a default value from useSelector (React-Redux) if the state is compiling too slowly?

I’m making an educational program with React-Redux and I’m trying to make a form with items that appear and are removed sequentially. So users enter an initial observation for a reaction, click submit, the initial observation box disappears and a new button is enabled which means the user can click on a test tube and see a colour change, etc.

A useEffect function compiles an initial state for each of the reactants in question, including a value: observationStage, which starts at 1 and increases as each stage is completed. That way I can use a ternary operator so that the initial observation input disappears once it’s been completed.

JavaScript

Problem was the app kept crashing. I was using useSelector to obtain the value of observationStage from the state and from what I could tell, it was demanding to know the observation stage before that part of the state had been compiled.

observationStage is a key in a parentObject. If I use useSelector to get the value of parentObject and log it to the console, it logs all the keys and values, including observationStage: 1, but if I console.log parentObject.observationStage it crashes.

So I’ve done this:

JavaScript

That’s working, but now I need similar logic in a sibling component and obviously I don’t want to just repeat the same code. I could make a module just for the bit written above and import that to both the components that need it (so far), but it just feels so cumbersome.

I’d really appreciate if anyone could see a glaring problem with my approach and set me straight. Thanks in advance.

Here’s a more detailed set of code snippets

JavaScript

JavaScript

JavaScript

JavaScript

Advertisement

Answer

I was using useSelector to obtain the value of observationStage from the state and from what I could tell, it was demanding to know the observation stage before that part of the state had been compiled.

So the difficulty here is that your redux state contains complex (nested) objects with unknown keys. The react components expect the individual keys of these metal/reactant objects to be present to work properly.

The code you have in your useEffect is already part of the solution:

JavaScript

This should be enough of a basis to refactor your code in a way that eliminates the problem. The gist here is that these kind of state shape issues need to be solved in the redux layer. The react components should do as little as possible and leave the work up to selector functions.

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