No video

Why useEffect causes infinite loops - fix it with useCallback

  Рет қаралды 20,748

Web Dev Cody

Web Dev Cody

Күн бұрын

Just a little example of how to fix an infinite useEffect loop caused by fixing a eslint exhaustive-deps warning
------------
🔔 Newsletter eepurl.com/hnderP
💬 Discord / discord
📁. GitHub github.com/cod...

Пікірлер: 64
@merthyr1831
@merthyr1831 2 жыл бұрын
I'm not a react dev, just curious. However, this is a great programming tutorial because it shows the audience different angles to resolve the issue and evaluates them against use-cases. This is something neglected with many tutorial videos!
@feijao7355
@feijao7355 8 ай бұрын
thank you, been struggling here for 2 hours
@kalinduR96
@kalinduR96 Жыл бұрын
useCallback and useMemo do the same thing. They just remember the value and stop re-creating functions unnecessarily. The only difference is useCallback returns the entire function while useMemo runs the function and returns the result.
@gadgetboyplaysmc
@gadgetboyplaysmc 10 ай бұрын
Does that mean you can get the same functionality as useCallback when you pass a function that returns a function in useMemo?
@CB4TS
@CB4TS 2 жыл бұрын
I am glad I came across this video. I had been ignoring that warning because I didn't know what it meant, but after watching this video, now I can fix it. Thanks!
@Sapphiamur
@Sapphiamur Жыл бұрын
Oh yes, just what I needed, thank you!! 👌
@mimoduocss
@mimoduocss 2 жыл бұрын
Ooo we're definitely guilty of some of this over here! I like the idea of separating out api calls. It gets a little wild in there. Thanks for the breakdown!
@WebDevCody
@WebDevCody 2 жыл бұрын
Yeah keeping them separate helps them also be reusable in other components if needed
@syamprasadupputalla8233
@syamprasadupputalla8233 2 жыл бұрын
Thank you brother for bringing up this👏👏. I feel you should bring up all react topics in depth as you do. It would be helpful to everyone.🤝🤝
@mohammed.haydar
@mohammed.haydar 2 жыл бұрын
I've been building a react app for a couple of months now, this problem has occurred a lot it's really irritating this video cleared it a little bit, but I need to apply it to my code to learn it 🙃
@allhailalona
@allhailalona 2 ай бұрын
very very good video, thank you!
@matthewbrignola5510
@matthewbrignola5510 Жыл бұрын
Dude thank you. I had been using useEffect in some of my apps and was passing a state value in as a dependency in the dependencies array and wasn't understanding why api calls were getting made a million times. Definitely not a good thing when you can only make a limited number of api calls per month for certain apis lol. I was looking for how to stop this and had tried watching other videos but nobody was helping, so thank you 🙏
@matthewbrignola5510
@matthewbrignola5510 Жыл бұрын
Like I was watching the useEffect working with console logs and was like 🤬 here goes all my api calls
@WebDevCody
@WebDevCody Жыл бұрын
Isn’t react great?!
@raygo44
@raygo44 2 жыл бұрын
I am working with React app atm and that lint warning for useEffect dependency is annoying. The first solution to move the code outside of component seemed to be the best and simplest imo.
@auberginesoep5391
@auberginesoep5391 5 ай бұрын
I will try this solution tomorrow, am trying to fix it for multiple hours in my project and stopped to take a break. Hopefully it will work.
@cwancy
@cwancy 2 жыл бұрын
Even though I don't use React in my dev job, your videos are just great and informative.
@alisonoz7219
@alisonoz7219 Жыл бұрын
amazing explanation bro! thank you so much!
@mohiuddinshahrukh
@mohiuddinshahrukh Жыл бұрын
Generic feedback, 1. close the left tab 2. Please dont move the screen (scroll) so much its dizzying!
@takeleberhe5168
@takeleberhe5168 11 ай бұрын
Great tutorial to the point thank you for your great explanation!!
@tnsaturday
@tnsaturday 2 жыл бұрын
BTW, you don't want to use useCallback with your API requests, because it assumes your function is pure, that means it always returns the same result given the same input. But if something happened on the server side and the object you're fetching has changed (like someone patched or deleted the resource), you're not making the request because the response have been cached and you have no way of finding that out.
@WebDevCody
@WebDevCody 2 жыл бұрын
That’s incorrect. UseCallback caches the function reference. Try it out. Make an api that increments by one each request and do this same approach on the UI with useCallback. You’ll get a new number each time. Also, where does it say in the react docs useCallback assumes a pure function? It doesn’t.
@tnsaturday
@tnsaturday 2 жыл бұрын
@@WebDevCody Maybe I mistaked it with useMemo, I'll give it a try, thank you.
@WebDevCody
@WebDevCody 2 жыл бұрын
@@tnsaturday yeah you’re correct, use memo will cache the value
@user-se7dk4rr5u
@user-se7dk4rr5u Жыл бұрын
This is very helpful! Thank you!
@paeon21
@paeon21 2 жыл бұрын
I really appreciate the detail of your breakdown of the infinite loop with function dependencies. What are your thoughts on the case of returning an api fetch callback from a custom hook, which then gets called in useEffect (naturally this triggered the useEffect dependencies warning)? I can't figure out if there's any simple fix for this (or if my code setup is violating some fundamental React principles, haha). Thanks.
@WebDevCody
@WebDevCody 2 жыл бұрын
I guess I’d ask why is the api fetch in a custom hook and not just a helper method? Are you setting isLoading state or something?
@paeon21
@paeon21 2 жыл бұрын
​@@WebDevCody It's funny, I jumped into making a custom hook without ever asked myself that before, but I've since incorporated both authContext and react-router into my hook for checking authentication on any api call (setting isAuth and authError states) and conditionally navigating to login. Does it sound like I should be extracting the api logic into a helper function, while refactoring the custom hook to focus just on auth handling?
@WebDevCody
@WebDevCody 2 жыл бұрын
@@paeon21 I'd say all axios calls should be wrapped into their own helper functions. You'd use these functions from your components. I also don't think you should even be trying to make these requests unless you're authenticated, so if you have a component that tries to hit a secured endpoint on mount, you shouldn't be rendering it when not logged in.... join my discord, it's too hard to help via yt comments
@paeon21
@paeon21 2 жыл бұрын
@@WebDevCody Cool. Will do. Thanks.
@nyashachoga9366
@nyashachoga9366 2 жыл бұрын
Which theme are you using?
@WebDevCody
@WebDevCody 2 жыл бұрын
Shades of purple
@solteeme8745
@solteeme8745 Жыл бұрын
Awesome! Just What I wanted.
@vuxuanhuy9079
@vuxuanhuy9079 Жыл бұрын
useCallback => use memory function useMemo => use memory value (calculator)
@Sky-yy
@Sky-yy 2 жыл бұрын
Very good topic to pick.
@ytaccount8374
@ytaccount8374 2 жыл бұрын
Hi, great video! Thank you! I'm wondering... how do you get the errors on your editor window? e.g. the error (warning?) on 0:21.
@totfosk
@totfosk 7 ай бұрын
thank you a lot !!!
@FaisalAmin001
@FaisalAmin001 Жыл бұрын
thank you!
@farookahmed4496
@farookahmed4496 4 ай бұрын
Very good content ❤ u bro.
@okopyl
@okopyl Жыл бұрын
Please, leave the link to the code's repo so everyone can check whether or not the code in your video works or not. In my example it does not, since I'm not getting the same warning you do.
@hbela1000
@hbela1000 Жыл бұрын
Not junk at all, I have just leant something important.thx.
@user-jb7pr8pt6i
@user-jb7pr8pt6i 10 ай бұрын
this is useful vidoe!
@rajann44
@rajann44 Жыл бұрын
Also keeping the dependency array empty fixes this issue.
@albertogarcia1101
@albertogarcia1101 10 ай бұрын
There is another solution the `useEffectEvent`
@okopyl
@okopyl Жыл бұрын
Why recreating a function reinvokes useEffect? The reference to the function remains the same, meaning getPokemon === getPokemon
@rea1m_
@rea1m_ Жыл бұрын
Actually after re-render getPokemon function will have a new reference
@okopyl
@okopyl Жыл бұрын
@@rea1m_ why?
@rea1m_
@rea1m_ Жыл бұрын
@@okopyl cuz it recreates the whole component. useCallback preserves the reference and only gets a new one when dependencies change. Go check it out yourself.
@okopyl
@okopyl Жыл бұрын
@@rea1m_ thanks
@ahmrfjamali7958
@ahmrfjamali7958 2 жыл бұрын
Best solution is useQuery or use custom hooks
@bensonyeboah297
@bensonyeboah297 2 жыл бұрын
great
@coldym
@coldym 2 жыл бұрын
Ohh I like this over engineered stuff from react
@tnsaturday
@tnsaturday 2 жыл бұрын
React functional components are so complicated compared to Vue clearness.
@WebDevCody
@WebDevCody 2 жыл бұрын
that I will agree with. these hooks make things twice as hard to understand.
@vvan22
@vvan22 Жыл бұрын
@@WebDevCody Agreed, I'm used to work with Vue and just using React for a project, these hooks concept seems easy on docs, but pretty hard to use properly on practice. But I'm wondering, these hooks are there to enable us to optimize how the component works, right? What about Vue, is it able to optimize by itself or what?
@SeibertSwirl
@SeibertSwirl 2 жыл бұрын
Good job babe!!!! FIRST!!!!!!
@mimoduocss
@mimoduocss 2 жыл бұрын
Shucks do you have super powers!? I was so quick to see this one!! ONA THESE DAYSS!!
@SeibertSwirl
@SeibertSwirl 2 жыл бұрын
Bahahahaha neverrrrrr!!!!!!!
@vamshikrishnareddy76
@vamshikrishnareddy76 Жыл бұрын
i tried doing this ````const [dataone, setdataone] = useState([]); const [datatwo, setdatatwo] = useState([]); const fetchMovies = async () => { const response = await Promise.all([ axios.get("url"), axios.get("url"), ]); console.log(response) setdataone(response[0]) setdatatwo(response[0]) conosole.log(dataone) }, useEffect(() => { fetchMovies(); }, []);``` console.log(dataone) is logging an empty array but console.log(response) logs out the data can some one help
@kalinduR96
@kalinduR96 Жыл бұрын
setter function provided by useState does not set the value right away. when you call it in somewhere in the code React schedules a re-render of the component with the newly set value. So dataone actually reflects the value in the following re-render. you can clearly see this if you take the console.log(dataone) out of the fetchMovie function. you will see two logs, one with an empty array (your initial value) and the other with data.
@dailymeow3283
@dailymeow3283 2 жыл бұрын
Best work around might be Next js, fetch the pokemons in getStaticProps then pass em to the page as prop
@WebDevCody
@WebDevCody 2 жыл бұрын
That will work as well and is a good solution, but it won’t solve every issue if your app needs to dynamically fetch data. You’ll eventually run into this same issue if you’re using a linter that wants the useEffect deps array.
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 471 М.
You might not need useEffect() ...
21:45
Academind
Рет қаралды 157 М.
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 85 МЛН
Or is Harriet Quinn good? #cosplay#joker #Harriet Quinn
00:20
佐助与鸣人
Рет қаралды 5 МЛН
Goodbye, useEffect - David Khourshid
29:59
BeJS
Рет қаралды 498 М.
Stop Doing this as a React Developer
12:27
CoderOne
Рет қаралды 162 М.
7 React Lessons I Wish I Knew Earlier
7:30
Code Bootcamp
Рет қаралды 62 М.
React Hooks Crash Course (useMemo, useCallback and more).
31:49
developedbyed
Рет қаралды 84 М.
The Truth about Rust/WebAssembly Performance
29:47
Greg Johnston
Рет қаралды 179 М.
When RESTful architecture isn't enough...
21:02
Dreams of Code
Рет қаралды 272 М.
The problem with useEffect
11:37
Cosden Solutions
Рет қаралды 33 М.
WTF Do These Even Mean
13:44
Web Dev Simplified
Рет қаралды 84 М.
Why I avoid useEffect For API Calls and use React Query instead
17:45
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 85 МЛН