DEV Community

Discussion on: What should I do if an operation depends on another first variable

Collapse
 
gsto profile image
Glenn Stovall

What is engine in this example? the useEffect in your example will only run when that changes, but it is not clear to me how it relates to firstVariable?

If you want to change secondVariable based on firstVariable, you'd want that to be what is passed into the second argument of useEffect

Collapse
 
fselcukcan profile image
F. Selçuk Can • Edited

Also, is an effect run after first render even it has a second argument, ie. dependencies array?

I ask this because if it does then if the firstVariable is not set yet then it will throw an error.

Collapse
 
gsto profile image
Glenn Stovall

Yes, useEffect runs on every render, including the first. If you only want to do something when firstVariable is defined, then an if check inside of useEffect seems fine to me. There may be other patterns or solutions but it's hard to tell without more context. Maybe if you could explain in more detail what firstVariable and secondVariable are I may be able to provide more help.

Thread Thread
 
fselcukcan profile image
F. Selçuk Can • Edited

Sorry if I repeat; you say even I pass the second argument e.g. [firstVariable] to the useEffect it will still run in the first render eventhough firstVariable did not change.

Additional question:

  • if firstVariable is not same across a rerender but did not cause the rerender, e.g. it is not the cause of rerender since it is not even in the jsx, then the effect will not run. Is that correct?
Thread Thread
 
gsto profile image
Glenn Stovall

Yes, it will run on the first render. It seems a bit odd, but that is how it works. useEffect has to have an initial check, otherwise, how would it know if the variable changed or not?

To your second question, the effect will run, regardless if it was the cause of the rerender. useEffect checks on every render, regardless of the cause.

Thread Thread
 
fselcukcan profile image
F. Selçuk Can

So an effect runs after every render if its dependencies requires so, ie. changed.

I sometimes think guides and docs should be a bit succinct. It is difficult to remember, spot,and find a valueable info in a corner of 5 mins read page.

A gotcha about dependency change is whereas the primitives are regarded not changed after set to same value the arrays and objects are regarded as changed after set to same value, naturally.

Also

Collapse
 
fselcukcan profile image
F. Selçuk Can

Sorry. It was a mistake. I have edited now. engine was firstVariable. I wanted to hide the domain stuff not to confuse people.

engine was the Engine that is constructed by Babylonjs engine constructor by the way.