Most Senior React Devs Don’t Know How To Fix This

Поділитися
Вставка
  • Опубліковано 31 лип 2024
  • React Simplified Course: reactsimplified.com
    You probably know about how to use keys in React arrays, but did you know that keys can be used for much more than just arrays? In this video I will show you 2 different ways that you can use keys to fix bugs that nearly no one knows about.
    📚 Materials/References:
    React Simplified Course: reactsimplified.com
    🌎 Find Me Here:
    My Blog: blog.webdevsimplified.com
    My Courses: courses.webdevsimplified.com
    Patreon: / webdevsimplified
    Twitter: / devsimplified
    Discord: / discord
    GitHub: github.com/WebDevSimplified
    CodePen: codepen.io/WebDevSimplified
    ⏱️ Timestamps:
    00:00 - Introduction
    00:28 - The bug explained
    03:18 - Using keys to fix the bug
    06:05 - Another advanced key use case
    #ReactJS #WDS #AdvancedReactJS

КОМЕНТАРІ • 345

  • @leos.2322
    @leos.2322 Рік тому +312

    been using keys for a long time and this video has actually finally made me understand what they truly are

    • @syth-1
      @syth-1 Рік тому

      Same! As soon as he said the issue I exclaimed 'keys', it finally occurred to me what those were for

    • @bismarkosei9656
      @bismarkosei9656 Рік тому

      Same here!!

    • @ghun131
      @ghun131 Рік тому +2

      Same. I guess it's because I'm clueless about the virtual DOM

    • @svenyboyyt2304
      @svenyboyyt2304 Рік тому

      ​@@ghun131It applies to the normal DOM too.

    • @fmilioni
      @fmilioni Рік тому

      Sad, but me too, 6+ years using react

  • @theresamclaird1572
    @theresamclaird1572 Рік тому +137

    This is funny; I literally dealt with this recently in a project. Figuring it out was frustrating because like others have mentioned, I had really only been using keys when mapping over arrays. I experienced all the emotions - disbelief, then anger (thinking I had found a bug with React), then frustration, then relief after adding keys, followed by confusion wondering whether I really should use keys - and after much research and digging around and seeing others do this, it made sense. Sometimes I think we miss some fundamentals while we “learn as we go”.

    • @AmodeusR
      @AmodeusR Рік тому +13

      I think this is one of those edge cases we can't really account for. It may look simple, but we rarely need to do something like this, hence no one teaches it.

    • @nghiaminh7704
      @nghiaminh7704 Рік тому

      who wrote this code without a comment explaining an edge case is an total asshole.

    • @user-te2pe5qm8o
      @user-te2pe5qm8o Рік тому +5

      Anger yes, we all do this

    • @supercoolcat7692
      @supercoolcat7692 Рік тому +2

      Literally had a discussion with a friend about the down sides of learning as you go. In my case it was modifying a rest api to process dynamic queries based on the POST object received from the client, so as to send only the requested data in the right format.
      Learning GraphQL in the first place would have saved me all that trouble. Learning as you go happens by default regardless. Learning actively has far reaching benefits without a doubt.

    • @user-te2pe5qm8o
      @user-te2pe5qm8o Рік тому +3

      ​@@supercoolcat7692 The best way is to do both simultaneously, direct learning is too boring and difficult to understand, Learning as you go is easy to get stuck in the basic errors.

  • @ngugimuchangi5824
    @ngugimuchangi5824 Рік тому +49

    Interestingly, this is usually highlighted in reacts docs:
    1. State is tied to a position in the tree
    2. Same component at the same position preserves state
    3. Different components at the same position reset state

    • @exmachina767
      @exmachina767 Рік тому +6

      Seems like a lot of people don’t like to read. I’ve seen it for React and other languages that actually have quite good docs for free. Seems like they’d rather pay for video courses…

    • @ngugimuchangi5824
      @ngugimuchangi5824 Рік тому

      @@exmachina767 Docs contain a lot of info about how the library works. Though an understanding of the language itself, in this case JavaScript is key, for someone to really gain insight from the docs. Otherwise, people want to copy and paste the solution.

    • @wlockuz4467
      @wlockuz4467 Рік тому +2

      Thank you! I think the title is a bit hyperbole when its explicitly pointed out how keys work in docs.

    • @ngugimuchangi5824
      @ngugimuchangi5824 Рік тому +1

      @@wlockuz4467 I agree. This is one of the topics that is covered quite early in react docs. You don't have to dig deep to find it.

    • @rico5146
      @rico5146 11 місяців тому

      Yeah, actually there are so many things we can learn from react docs. Even though somesone is senior react dev, i truely recommend reading all the react docs and api reference that updated all recently at least once.

  • @jyothiswaroop2964
    @jyothiswaroop2964 Рік тому +35

    Never used keys outside arrays!! Thanks Kyle! It was quite helpful.

  • @Franiveliuselmago
    @Franiveliuselmago Рік тому +2

    This short video is actually very useful. I have a scroll position persistence problem in a project and this should solve that

  • @marktheunknown1829
    @marktheunknown1829 Рік тому +16

    As a React learner, this was a very useful video
    Thank you and keep doing the good work

  • @peder6199
    @peder6199 Рік тому

    I'm really new to react and watch this yesterday and today I run into just this kind of problem but could now directly solve it. Thank you. 🙏

  • @mostafaalmahmud
    @mostafaalmahmud 9 місяців тому

    It really helped me a lot to find out the "unique key props" errors in the react projects. Thanks a lot for your efforts as well.

  • @ichigoplayss376
    @ichigoplayss376 Рік тому +2

    Ever since I learned about how useful keys are in react it made my life easier, 'cause before I sometimes use useEffect just to get the behavior I wanted, and is prone to unnecessary rerender. I just saw it on TikTok. And yes, this is very useful in so many cases. Thank you Kyle.

  • @petarkolev6928
    @petarkolev6928 Рік тому +7

    React community is so blessed having you, thank you, Kyle!

  • @sarahroberts7984
    @sarahroberts7984 Рік тому +2

    This is so helpful! Thank you so much for helping!

  • @johny962
    @johny962 9 місяців тому

    Thank you for publishing this. This tip has already helped me in multiple projects.

  • @IAmKillerPotato
    @IAmKillerPotato Рік тому

    I had this exact issue last week with an array of components.
    I have they keys as the array index so they persisted when I changed the elements of the array.
    I worked around it a different way but now I know a much cleaner solve.

  • @wistemoor9671
    @wistemoor9671 Рік тому

    I don't think i have run into this yet, going to have to keep a lookout for this. Thanks!

  • @atul7173
    @atul7173 Рік тому

    This really helped me improve my mental model around keys in react. Thanks for the video❤

  • @adamreed2000
    @adamreed2000 Рік тому +9

    Nice tutorial, really good explanation of what’s happening under the hood and some applications of how it’s used. Love it

  • @rubenmartinez2807
    @rubenmartinez2807 Рік тому +1

    Boosting careers out here, keep em coming Kyle we appreciate you very much man!

  • @ozzyfromspace
    @ozzyfromspace Рік тому

    That's wild! I literally experienced this while working with a controlled select element yesterday. Read through a github discussion and learned that keys could reset my select for the next round of my app to do its thing. I didn't fully get it, but I was like "it is what it is". Then YT recommends this video to me a day later. How perfectly timed! I was basically primed to appreciate this video. Thanks Kyle, this was awesome.

  • @beulahakindele9990
    @beulahakindele9990 Рік тому +1

    I remember encountering this issue 3 years ago when I was building an inventory management system.
    Took me days to understand why the state was persisting across re-renders.

  • @MarcelOramas
    @MarcelOramas Рік тому

    Loved this, didn't know about it!🙌

  • @nitsanbh
    @nitsanbh Рік тому +1

    Good vid!
    One your most helpful ones (for me, at least)!

  • @rubylnic
    @rubylnic Рік тому

    Thank you so much! Your videos are gems!❤

  • @sophektounn6422
    @sophektounn6422 11 місяців тому

    That's some gold nugget there! I didn't even know about how react treats the dom like that! Thanks I will definetly get your course now.

  • @sauer.voussoir
    @sauer.voussoir Рік тому +2

    Now I understand the purpose of keys in React. One important point you mentioned is that keys are mostly used in loops when returning JSX elements, and the compiler always warns us to use a key in such scenarios. Thanks to this video, I can now reuse the same component without encountering issues of conflicting distinctions.

  • @5iGnuM
    @5iGnuM Рік тому +2

    Keys become really important whenever dealing with animations. And there it also becomes super clear how this works. I recently wrote a component that fades in a view and fades out another one at the same time, like a visual animated swap of components. Without keys properly set, animations would never work correctly. Good point again Kyle, thanks for bringing it up!

  • @helleye311
    @helleye311 Рік тому +7

    Keys are fantastic. I learned the power of them a little bit ago from the (back then beta) new react docs, from the 'you might not need an effect' section.
    Basically immediately went and removed 10 useEffects, each ~15 lines long, just replaced them with initial state setters and keys. It was so nice.

    • @himbary
      @himbary Рік тому

      Thanks for the tip

  • @fadimeozdemir4453
    @fadimeozdemir4453 5 місяців тому

    Best explanation about keys in react I've seen so far

  • @elyasaf755
    @elyasaf755 Рік тому

    Oh wow. This video is amazing! Thank you :)

  • @rickharold7884
    @rickharold7884 Рік тому +2

    yea cool. Right out of ur awesome react course w arrays. Love it

  • @micguo2000
    @micguo2000 Рік тому

    Thank you! this is so clear and helpful.

  • @troshky_webanuti
    @troshky_webanuti Рік тому

    Using key was my first idea of how to deal with this issue when I watched the intro :) Thanks for the useful video as always :)

  • @StefanoV827
    @StefanoV827 Рік тому +16

    I already knew this because of dart/flutter.
    It works absolutely the same way, with the same syntax too 😂
    I think you could start a flutter channel too, cause dart is basically React + static typed variables with null safety.

    • @cardel-qq6xp
      @cardel-qq6xp Рік тому +1

      That would be awesome, I really want to learn bloc in flutter.

    • @StefanoV827
      @StefanoV827 Рік тому

      @@cardel-qq6xp a lil bit controversial, but i love BLoC. Absolutely more than provider or riverpod

    • @wlockuz4467
      @wlockuz4467 Рік тому

      Flutter was inspired by React after all

  • @MichaelCampbell01
    @MichaelCampbell01 Рік тому

    Neat. Well explained as always.

  • @aamiramin6112
    @aamiramin6112 Рік тому

    Very informative kyle. You are awesome

  • @Kitulous
    @Kitulous Рік тому

    0:21 i had something similar in flutter, where i was changing the rendering order of a few stacked widgets and they were behaving weirdly until i added keys

  • @sanchezcarlos1986
    @sanchezcarlos1986 11 місяців тому

    Today this video saved my day (and my mental health). Thank you!

  • @coding-lemur
    @coding-lemur Рік тому

    We have that "issue" often with our icons. Thanks for your detailed explanation :)

  • @NirdeshPokhrel
    @NirdeshPokhrel Рік тому

    Informative, Thanks !

  • @EddyVinck
    @EddyVinck 11 місяців тому

    I fixed a bug at work today with this, about a month after watching this video, thanks! 🎉

  • @naterardin8053
    @naterardin8053 Рік тому

    I've had a series of sneaky bugs where data was persisting between pages of a dynamic react-router route, and fixed it with some workarounds. Turns out, adding a "key" actually solves all of them!
    Even better yet, I didnt go searching for this video. It just appeared in my recommended

  • @kokoyroy
    @kokoyroy Рік тому

    well done! Great Job bro!

  • @karthikudupa5475
    @karthikudupa5475 Рік тому

    That is great explanation Kyle.

  • @taofeeqomotolani2311
    @taofeeqomotolani2311 Рік тому +11

    The new react doc explained this so well too. Cool video

    • @yashchauhan5710
      @yashchauhan5710 Рік тому

      Can u give link?

    • @MrTomro
      @MrTomro Рік тому

      the video is pretty much a copy from official docs. still cool for people that dont like reading docs i guess

    • @zksumon847
      @zksumon847 Рік тому

      ​@@MrTomrocool for people that don't know how to read

  • @Helium6000
    @Helium6000 Рік тому +1

    I encountered this bug before and resolved it by utilizing the useEffect hook, with 'name' specified as a dependency. Whenever the name changes, the counter restarts. However, it would have been great if I had known about this earlier. XD

  • @mohammedsaber6782
    @mohammedsaber6782 Рік тому

    Very usefull explaination, keep going man.

  • @netssrmrz
    @netssrmrz Рік тому +4

    Nice video. Good to shed some light on the internals of React's virtual DOM. Personally, this makes me so glad I don't use React for my personal projects.

  • @user-sc6vy4tw6m
    @user-sc6vy4tw6m Рік тому +4

    This is enlightening! I guess this peculiar behavior comes from React's reconciliation mechanism, where React finds the React DOM node that's changed and then updates the changed node and its child nodes, while unchanged nodes and their child nodes remain intact.

  • @Amar11115
    @Amar11115 Рік тому

    it was great explanation. thanks!

  • @StephenRayner
    @StephenRayner Рік тому +25

    😮 shocked so many people don’t know this. Well explained though. Always solid content! Knowledge is power 🎉

    • @diosupremo4928
      @diosupremo4928 Рік тому +3

      So do I, hooks are suposed to hold values between re renders, and if you change a parameter which is independent from the hook it has no sense to lose that state. Or at least this was the way i though it.

    • @husler7424
      @husler7424 Рік тому

      @@diosupremo4928 "hooks are suposed to hold values between re renders" can you please elaborate this statement?

  • @Cloud9er
    @Cloud9er 11 місяців тому

    This video helped a lot in clearing up another React nuance

  • @jorgejorge8878
    @jorgejorge8878 Рік тому

    Great content, as usual, Kyle

  • @timonesh7949
    @timonesh7949 Рік тому

    I always come here when I need to get smth quick fast 👍great work

  • @feynthefallen
    @feynthefallen Рік тому

    Very good explanation on how React uses the DOM.

  • @marimuthur9456
    @marimuthur9456 Рік тому

    You are really incredible man awesome keep going👌👌👍

  • @MyMike004
    @MyMike004 Рік тому +1

    I was running multiple times on this issue but it was ok because React notify you on your browser elements should have keys haha except for the case early he was explaining, this can be tricky! well done :)

    • @BRP-Moto-Tips
      @BRP-Moto-Tips Рік тому

      I think the warning only comes if you're mapping an array or something along those lines, a few days ago I had a problem involving the state of a child that persisted while the parent rerendered on new state. I solved it using a key in the child component and voila

    • @MyMike004
      @MyMike004 Рік тому

      @@BRP-Moto-Tips yes this is exactly what I am talking about. Also, it doesn't come as a warning but as an error

  • @ninthsun
    @ninthsun Рік тому

    wow this seems super useful!!👍

  • @lucienchu9649
    @lucienchu9649 5 місяців тому

    Nice deep dive, thanks

  • @sekhar6753
    @sekhar6753 Рік тому

    Very useful content! thanks

  • @armandsriekstins7646
    @armandsriekstins7646 Рік тому

    Happy to know I knew the answer to this

  • @ahmedatri3036
    @ahmedatri3036 Рік тому

    good topic, perfect explanation

  • @bla156
    @bla156 Рік тому +1

    I don't think it's senior-level stuff, but I understand that the clickbaity video title is good for the channel in general.

  • @golden_smiles
    @golden_smiles Рік тому +1

    What a piece of work the React, that's why it's happening. Tell us that Snow and Charcoal is exactly the same thing, and go on to tell how to fix this bug in _our_ code. We just need add keys to all of our code, no problem. Otherwise internal state of a component will no any binding to the component itself, and you completely messed up. Oh, we don't need to add keys to all of our code... But you need to guess, do the react knows is this chunk of DOM is the same than the other one or not. So better look better. Peace of beautiful work.

  • @oo-fv7sy
    @oo-fv7sy Рік тому +2

    im currently working on a project and i dealt with this and i just gave up on solving it
    really thank u
    u helped me alot and more ppl like me
    thanks again ♥

    • @inkclusiveDesign
      @inkclusiveDesign Рік тому +1

      If you had read react docs you would've solved even faster , do give react doc a good read you'll learn a lot

    • @oo-fv7sy
      @oo-fv7sy Рік тому +1

      @@inkclusiveDesign thats true
      im actually gonna start reading it all now
      thanks for the reminder

    • @inkclusiveDesign
      @inkclusiveDesign Рік тому

      @@oo-fv7sy Docs are so well written and structured, you'll love reading it

  • @user-jt1vn9eg3o
    @user-jt1vn9eg3o Рік тому

    wow it's really helpful video. thank you

  • @sandrinjoy
    @sandrinjoy Рік тому

    Got similar behavior on nextjs page change. where i was charging the order of list using msth random , but the ui wasn't updating because there were only image renders. it was working fine when i added some text in the item component

  • @seanmcgrady8688
    @seanmcgrady8688 Рік тому +1

    I understood the problem before the reveal. I feel special. :D

  • @AttackHelicopter64
    @AttackHelicopter64 Рік тому

    this is actually really important, as knowing reconciler algorithms helps to avoid so much pain
    one of the reasons why conditional rendering is a thing - it allows us to preserve positions
    {isTest && } }
    no matter what value 'isTest' is, Component's element will be on index-1, while index-0 is either false or
    same thing here - reconciler only cares about position and type. so if type and position is the same - it only updates
    that's why if you construct component type dynamically, you should memoize it properly (or use another approach tbh), cause if not your component will just keep re-mounting

  • @mikejakusz1493
    @mikejakusz1493 Рік тому

    Hey @WebDevSimplified, when is the course expected to come out?

  • @x209sfinestx
    @x209sfinestx Рік тому

    Awesome explaination

  • @sm1ley732
    @sm1ley732 Рік тому

    informative as usual 👌

  • @rasibn
    @rasibn Рік тому

    Great video!

  • @d3vilm4ster
    @d3vilm4ster Рік тому

    I'm glad to know I actually learnt this like 5 years ago...
    I been doing react since early 2015, but great tip tho!

  • @ae_holic
    @ae_holic Рік тому

    I also was interested in how you made your useLocalStorage hook but sadly you didn't toggle the function body which I was waiting for.

  • @alexanderhergert875
    @alexanderhergert875 Рік тому

    after 10sec the answer is key :) The learn react tutorial was really amazing and was covering this example. I suggest all new react learners to work trough the official react tutorials they are very good.

  • @amnaatarapper
    @amnaatarapper Рік тому

    I've learned this the hard way. We've had a weird bug in our cart system whenever you edit the quantity of an item in a cart the item above it lose its quantity, this time we actually had keys which was relying on an id, the problem is the dev before me was extracting id from an object instead of _id so all items had undefined as a key which led to the bug..

  • @losav96
    @losav96 Рік тому +1

    For React "isKyle ? : " is the equivalent of , so it would be mounted only once, and so the state.
    A stupid solution could have been putting a prop "isKyle" to Counter, and using a useEffect(() => setCounter(0), [isKyle]), so everytime Kyle state changes, the useEffect will be triggered, resetting the counter. The best solution can be using "key" as he said during the video.
    The solutions, sometimes, can be a lot, especially when the code becomes more complex as you go. But the "best" (better) solution can be known only when you deep understand what you are using (React framework, in this case). That's why you should always deepen your knowledge about a new framework/library/sdk/language, when start learning it, otherwise you will always be a "half developer", that will cause spaghetti code, bad maintained code, no extendibility, etc.
    I worked with people that didn't know about useMemo, useCallback and memo(), Suspense, Lazy, etc. and they didn't know how to use them. In big projects you risk to destroy the application performance, because you tend to use the solution that can work in that very moment. Instead, the best practice is always trying to create/find the best solution, thinking that can be reusable for other components, thinking that in the future the code can be changed, thinking that that code can be read by someone else. When you always try to do better, it will be easier for your brain to find the best solution for that problem, because you are training your brain to think Out of the box. Instead, if you find the cheap solution, your brain will always stay at the same level.
    Hope it helps to new programmers, or new React developers.

  • @godwinchibyk639
    @godwinchibyk639 Рік тому

    This is helpful 👏

  • @grzesieksgs
    @grzesieksgs Рік тому +1

    I'd say that this approach with using key is debatable. Counter could be reset by using useEffect, and overall this "bug" would not float up if code would be structured in different way. Theres no point to confuse junior developers with less known react features, when code can be simply restructured.

  • @nilambarsharma4869
    @nilambarsharma4869 Рік тому +1

    Nice tip. Thanks.

  • @raulnoheagoodness
    @raulnoheagoodness Рік тому +1

    Thank you for this video. It makes me happy I skipped React and use Svelte 😂.
    Of course, sometimes we have to do assignments to force reactivity, so pick your poison.
    function addNumber() {
    numbers.push(numbers.length + 1);
    numbers = numbers;
    }

  • @system_infected
    @system_infected Рік тому +6

    You could also have an useEffect set the state back to 0 in the Counter component with the prop name as dependency

    • @BasantSiingh
      @BasantSiingh Рік тому

      Even I thought of doing that but using useEffect will have an extra render when you set the state to 0

  • @HiImKyle
    @HiImKyle Рік тому

    I can't think of a situation where I have used this setup and used the same element for both true and false so I'd argue it still works how you expect it to just in this specific case it has unwanted side effects

  • @brain5853
    @brain5853 Рік тому

    Is this the same in Next JS? For example, when you open the same page with different data. Some state sometimes persists, keys then should solve this too?

  • @ManvendraSK
    @ManvendraSK Рік тому

    Such kind of use cases are rare, but they exist. I used manual keys once in 2017 and recently this year in April.

  • @vileider
    @vileider Рік тому

    I watch your videos for such a long time that I said "..you have to use key" with you. Greeting from UHI in inverness.

  • @NotesandPens-ro9wx
    @NotesandPens-ro9wx Рік тому

    Wow dude, you cleared my concept in just 10mins, minus my teeths :D

  • @unknown-vh1dc
    @unknown-vh1dc Рік тому

    That totally saved me!!!

  • @CrusaderMen
    @CrusaderMen Рік тому

    Thanks!

  • @vipex.v
    @vipex.v Рік тому

    Nice video!

  • @viniciuscarvalho8316
    @viniciuscarvalho8316 Рік тому

    I spent the whole day racking my brain over it and couldn't figure it out. Thank you! By the way, are you a wizard?

  • @TylerR909
    @TylerR909 Рік тому +3

    Huh, can't say in 5 years I've ever encountered this but interesting nonetheless. Would've been nice to see you write out `` to drive the point home that all React sees is that Props changed, not the whole component. I absolutely would've expected React to figure this out on its own, but good to be aware of.

    • @veedjohnson
      @veedjohnson Рік тому

      I’m pretty sure he didn’t do it that way cos he wanted to buttress the point that even though two counter components are rendered, react wouldn’t know which one to update

  • @manuelcasares7270
    @manuelcasares7270 Рік тому

    Greaaat video, what a teacher

  • @sabujdeeptudu6215
    @sabujdeeptudu6215 Рік тому

    Awesome!!

  • @mdminhazahamedrifat3282
    @mdminhazahamedrifat3282 Рік тому

    do you mind explaining how to reset state on a dynamic route with query params (both slug and query change) on nextjs?

  • @Liz3_
    @Liz3_ Рік тому

    you could just have a useEffect within the counter which resets the count state on name change, this is expected behaviour afterall and would avoid a entirely new instance of the component because it just updates the state, also there no need to tenary the entire comp can just do that on the prop that makes it a bit less ambiguous.
    Using "useLocalStorage"(which btw is also a terrible idea because its a sync main thread operation which can be slow for big data blobs) it probs doing the above mentioned under the hood so you would not need any keys.

  • @peryMimon
    @peryMimon Рік тому

    worth watching. And it's a simple matter. But first time I come across keys outside the loop

  • @AnnaGottin
    @AnnaGottin Рік тому

    I believe this is explained in the react docs in the section "Preserving and Resetting State", would not consider it a bug.

  • @PostMeridianLyf
    @PostMeridianLyf Рік тому

    I wrap all my components in fragment or divs. or . I mainly do this in case i need to give a name to a div class but havent used it in a while. I wonder if this is why I never ran into this issue.

  • @jsonkody
    @jsonkody 11 місяців тому

    Well, as a kinda senior Vue dev I knew what the probelm is - it's quite common in Vue that when I render someting in similar way I need to key the components.

  • @diegounanue
    @diegounanue Рік тому

    What plug-in are you using to get methods info and types? And code suggestion like minute 4:56 and 5:00