🛑 STOP thinking about React lifecycle methods
In this post let's talk about the paradigm shift from lifecycle methods to state synchronization and hooks in ReactJs.
In this post let's talk about the paradigm shift from lifecycle methods to state synchronization and hooks in ReactJs.
When class components were a thing in ReactJs (Well it still is, but no one likes them anymore), we use to think a lot in terms of mouting, unmounting, and lifecycle methods.
Whenever a class component mounts, the lifecycle methods are called in following sequence: constructor → render → DOM and refs update → componentDidMount
But then came React Hooks, and we started to think in terms of dependency array.
And, often times we ask:
What is the hooks equivalent to [some lifecycle method]?
The quick answer is that hooks are a paradigm shift from thinking in terms of "lifecycles" to thinking in terms of "state and synchronization with DOM".
Trying to take the old paradigm and apply it to hooks just doesn't work out very well and can hold you back.
The above snippet is not the right way to think about React hook.
Lifecycles are gone, but we still think of useEffect with empty dep array as componentDidMount, and that’s not the right way to think about React Hooks.
Now I want to present to you the right way to think about react hooks.
State Synchronization
See, the question is not "when does this effect run" the question is "which state does this effect synchronizes with"
And that’s how you should think about React Hooks.
-- Swastik Yadav Software Engineer