Understanding useEffect
Hook
What is useEffect
?
useEffect
is a hook in React that lets us perform side effects in our function components.- Side effects are operations that affect things outside the scope of the function, like fetching data or manually changing the DOM.
How does it work in the Typing Effect example?
-
State Initialization:
text
starts as an empty string andindex
starts at 0.
-
Dependency Array:
- The array
[text, index, onComplete]
means that the effect runs whenevertext
,index
, oronComplete
changes.
- The array
-
Typing Effect Logic:
- If
index
is less than the length offullText
:setTimeout
waits for 80 milliseconds and then:- Updates
text
by adding the next character fromfullText
. - Increases
index
by 1.
- Updates
- The cleanup function
clearTimeout
makes sure we don’t leave any old timeouts running.
- When
index
matches the length offullText
:- Another
setTimeout
waits for 1 second and then callsonComplete
. - Again,
clearTimeout
ensures no old timeouts are left running.
- Another
- If
Why use useEffect
?
- It helps us manage side effects cleanly and ensures our effects run at the right times.
- It’s especially useful for:
- Integrating third-party libraries.
- Attaching/detaching event listeners.
- Handling animations.
- Managing focus.
Key Takeaway
- By using
useEffect
with a dependency array, we can monitor specific values and perform actions when they change.
References
Information
- date: 2025.01.13
- time: 11:39