Key prop

Loading "Key Prop Suspense"
πŸ‘¨β€πŸ’Ό Alrighty, we've got a problem that I've been pushing off, but it's time we resolve it. We removed confusion for our users by waiting until the image is ready before we display the ship's data, but that means our users have to wait until the ship's image loads before they can see the ship's data! Ugh, that's annoying. Wouldn't it be cool if we could have the best of all worlds:
  • Show the ship's data as soon as it's ready
  • Show the ship's image as soon as it's ready
  • Not show the old ship's image while we're waiting for the new one
Well, we can! But it requires a little extra thought. I'm going to have Olivia explain something to you about how suspense boundaries work with useTransition.
πŸ¦‰ Thanks Peter. Ok, so here's the deal with Suspense boundaries. When one of their children suspends, they render the fallback until the suspended child is ready to render. That much should be clear from what we've done so far.
When you add useTransition and trigger a "suspending state change" from within that transition, this will prevent the Suspense boundary from rendering and instead will keep the old UI around and give you a pending state to work with so you can show a more contextual pending state. That's what we did in the last exercise.
To add to this, even when you're using useTransition, the suspense fallback will show up on the initial render of the Suspense component. This is why you'll see the fallback when you load the page initially.
So here's the deal, we need a way to get both a suspense boundary (for the image) and a pending state (for the data) at the same time. We can do this by adding a Suspense boundary around the image. But that's not quite enough. We also need to have React treat the Suspense boundary around the image as if it's brand new for every image we render so it doesn't participate in the transition.
To do this, we need to give the Suspense boundary a unique key. This will make React treat it as a new boundary every time the key changes and will keep it out of the transition.
To make this more clear, here's a walkthrough of what's happening with our app right now:
Initial Render
  1. We render the app
  2. ShipDetails calls use(getShip(shipName)) which suspends
  3. React renders the suspense boundary
  4. The getShip promise resolves and React attempts to render the ShipDetails again.
  5. ShipImg renders Img which calls use(imgSrc(src)) which suspends
  6. React keeps the suspense boundary around
  7. The imgSrc promise resolves and React attempts to render the Img again
  8. Everything settles.
This all is operating as we'd like for now. It's the transition we want to improve:
Transition
  1. We call startTransition to change the shipName
  2. React tries to re-render and ShipDetails calls use(getShip(shipName)) which suspends
  3. React keeps the previous state around and gives us the isPending state as true so we can show a more contextual pending UI (opacity 0.6).
  4. The getShip promise resolves and React attempts to render the ShipDetails again.
  5. ShipImg renders Img which calls use(imgSrc(src)) which suspends
  6. React keeps the isPending state as-is
  7. The imgSrc promise resolves and React attempts to render the Img again
  8. Everything settles.
Here's how things will work when you're finished with this exercise:
Improved Transition
  1. We call startTransition to change the shipName
  2. React tries to re-render and ShipDetails calls use(getShip(shipName)) which suspends
  3. React keeps the previous state around and gives us the isPending state as true so we can show a more contextual pending UI (opacity 0.6).
  4. The getShip promise resolves and React attempts to render the ShipDetails again.
  5. ShipImg renders Img which calls use(imgSrc(src)) which suspends
  6. React finds a brand new suspense boundary and renders the fallback
  7. The ShipDetails renders fine while ShipImg shows the fallback
  8. The imgSrc promise resolves and React attempts to render the Img again
  9. Everything settles.
The key is the step where react finds a brand new suspense boundary. This is accomplished by using the key prop!
πŸ‘¨β€πŸ’Ό Thank you Olivia!
Great, so now we need you to add a suspense boundary with a key prop. It generally makes sense to put the Suspense boundary inside the ErrorBoundary (in case the fallback fails the error boundary can handle that as well). In addition we can put the key prop on the ErrorBoundary instead of the Suspense boundary as well (since the ErrorBoundary is the parent of the Suspense boundary).
So let's give that a shot!
Login to get access to the exclusive discord channel.
  • 🎣Hooks
    πŸ”€Suspense
    Clarification on how to trigger a suspense
    seven πŸš€:
    Hello, in lesson about useTransition Kent said that "anytime you have a state update thats going to ...
    3 Β· 11 days ago
  • General
    Launch editor error: Could not open 'index.html' from:'playground' in the editor.
    Japhet πŸš€ πŸ†:
    I'm encountering an issue when trying to open a link from the file list. The error message I receive...
    • βœ…1
    15 Β· a month ago
  • πŸ”€Suspense
    Suspense img tip
    Jon Winsley πŸš€:
    The solution for Suspense Img/Img Component wasn't working for me, and it took a little bit to figur...
    • πŸ™Œ3
    5 Β· 2 months ago
  • General
    Launch editor error: spawn code ENOENT
    Andrew Elans 🌌 πŸš€:
    Clicking index.html gives this error in VS Code. Both from Chrome and Safari. Anyone?
    • βœ…2
    6 Β· 3 days ago
  • General
    Welcome to EpicReact.dev! Say Hello πŸ‘‹
    Kent C. Dodds β—† πŸš€πŸ†πŸŒŒ:
    Welcome to the first of many posts in the EpicReact.dev channel! Take a moment to introduce yourself...
    • πŸš€5
    46 Β· a month ago
  • General
    AI Assistant?
    John πŸš€:
    Kent has mentioned an AI assistant that he's using in VSCode. Is there any detail on what that is an...
    • βœ…2
    2 Β· a month ago
  • General
    Script to save playground folder
    larissapissurno πŸš€:
    Hi all, I personally like to take notes on the playground files, so in order to not lose this notes ...
    • βœ…1
    2 Β· a month ago
  • General
    Runninng Learning app on iPad?
    marcus_polonus πŸš€:
    Hi all, Did anyone managed to setup learning app on iPad? I tried to use codesandbox, but when I am...
    • βœ…1
    1 Β· 2 months ago
  • General
    βš›οΈFundamentals
    Error boundary good practice
    Lloren πŸš€:
    I have always wondered if the error boundary is there a limit of error boundary that you can impleme...
    • βœ…1
    1 Β· a month ago
  • General
    Received this error when running the setup script for React Fundamentals
    ChrisP πŸš€:
    Hey guys, I am completely blocked at the moment. When I clone and run the setup for react fundamenta...
    • βœ…1
    2 Β· a month ago
  • General
    Unexpected server error (workshop-app does not load onboarding step)
    Matias 🌌 πŸš€:
    Hey! πŸ‘‹ I installed the free workshop "Build React Hooks" last week with no issues. Yesterday, whe...
    • βœ…1
    3 Β· a month ago
  • General
    Eye opening moment in 05/06 (β€žsatisfiesβ€œ operator of typescript)
    Chrigi πŸš€:
    Up until today I was not aware that having the type annotation on a variable is actually a type-cast...
    • πŸ™Œ2
    • βœ…1
    2 Β· a month ago
  • General
    Failed to fetch dynamically imported module...
    FacuPerezM:
    I am getting this error out of nowhere, in the 'test' tab inside the Workshop app. ``` Failed to f...
    • βœ…1
    3 Β· 2 months ago
  • General
    Epicshop not saving the video resolution
    Toni πŸš€ 🌌:
    Playback speed and caption settings are saved, but the video resolution always defaults to auto. Is ...
    • βœ…1
    7 Β· 2 months ago
  • General
    Clicking an exercise file launch VIM instead of VS Code
    DBattou πŸš€:
    I started going through the workshops, everything is setup and working fine except for opening a fil...
    • βœ…1
    2 Β· 2 months ago