Implement the Fetch as you Render Approach for Improved Performance

Kent C. Dodds
InstructorKent C. Dodds
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

Along with the release of Suspense, the React team has given us some recommendations for how we approach structuring our data loading so we can optimize both dynamic loading of code and data. There are two approaches to data and code loading that are common in the React ecosystem, and one that the React team is recommending called "fetch as you render." Let's compare these approaches to understand how they differ and why "fetch as you render" is the superior approach over "fetch on render" and "fetch then render."

Instructor: [00:00] It's great that we solved the problem of preloading images so that our data doesn't show until the image is ready as well. Let's remind ourselves of what the user experience is going to be like here.

[00:11] Let's go ahead, and empty cache hard reload. I'll clear all this out. We'll go to a slow 3G connection. Then, if we go to Pikachu, then it's going to take a while before we see Pikachu's information because first, we have to load this graphQL request to get the Pikachu's data.

[00:29] Then, once that data shows up, then we know the URL for Pikachu's image, and we can load that. Whereas before, we could show some data as soon as that GraphQL request was finished. Now we have to wait to show the data and the image until after the image is finished.

[00:45] The same thing happens here with Charizard. It takes a while to get that GraphQL options request finished. Then, we get the post for the GraphQL request. Once that's finished, then we can jump in with getting Charizards image. Once Charizards image is loaded, then we can update the information to show Charizard.

[01:04] What would be even better is if we could start preloading the image at the same time we make the GrpahQL request. It just so happens that these URLs for these images are predictable. It just has the Pokémon's name in there and we happen to have the Pokémon name because the user entered that Pokémon name for us.

[01:22] We even have a special little utility for that called the get image URL for Pokémon. Let's take advantage of this by coming down here to our create Pokémon resource. We'll actually create an image resource as well as a data resource.

[01:38] I'm going to change this API a little bit. We're going to make this be a data resource, we'll returning an object that has that data resource. We'll also create an image resource. I'll just come up here and we'll borrow some code from our image component that we wrote earlier and we'll paste that right here.

[01:57] We'll create a resource that preloads the image for the source. We can get that source from get image URL for Pokémon by the Pokémon's name. The user can type a capital C here and we need to lowercase that. What I'm going to do is I'll make it lowerName = PokémonName.toLowerCase and we'll pass the lower name. Then we'll add our image resource to the object that we're returning.

[02:23] Now, when we call this create Pokémon resource, this resource is actually an object of two resources together, a data and an image. Let's go to where this getPokémon resource is called, right here where we call set Pokémon resource.

[02:38] This Pokémon resource is that object of image and data. That's getting forwarded along to our Pokémon info component. This Pokémon resource is now going to have a data property where we can read the data, and then the image is going to be available from the PokémonResource.image.read.

[02:59] Then we can just use a regular image here because we've already handled creating a resource for this particular source. We don't need this image component anymore. It might be useful somewhere else, but we don't need it for this component.

[03:11] Now, let's go ahead...I'm going to change this back to online. We'll save this. Get a refresh here. I'm going to do a hard reload here emptying the cache. Clear that out. We'll go to slow 3G and see how this experience changes.

[03:26] We'll go to Pikachu. You'll notice that right from the get-go, the Pikachu image is actually the first thing that we start requesting. Immediately thereafter, we make the GraphQL Pokémon options request. Once that's finished, then we can make the actual post request to get the Pokémon's data.

[03:44] We've squeezed things over to the left side of the waterfall as closely as we possibly can. We can do the same thing with Charizard. We see Charizard is getting requested right away, right along with the GraphQL request so that Charizard's information gets loaded quicker.

[04:01] This is one of the core principles of React Suspense. As soon as you have the information you need to get the data and resources you need, you should make the request for those resources rather than waiting for the component that will use those resources to fetch those things. This will improve the performance of your application significantly.

[04:19] In review, what we did here is we edited our create Pokémon resource to create not only a data resource for the Pokémon's data, but also an image resource for the Pokémon's image because our image URL is predictable and we don't have to wait for the data to come back for us to know what URL the image will be.

[04:39] Then we return both of those resources as data and image so that when our create Pokémon resource is called that resource is now actually an object of two resources. When we set our Pokémon resource to that object and forward it along to the Pokémon info component, that Pokémon info component can take that Pokémon resource, read the data, and read the image.

[05:02] This Pokémon info component can suspend while that data and image are being loaded. Again, the difference here is before we were suspending just for the data and we were waiting for the data to finish suspending before we could start suspending for the image.

[05:17] Now, we start loading both of those resources at the same time so that they can get resolved a lot quicker, drastically improving the performance of our app. I'll just add here that the reason that they're both being requested at the same time isn't because the read calls are happening in the same component but because we're creating the resource at the same time.

Stephen James
Stephen James
~ 4 years ago

How would you handle the case, where you implemented optimistic loading, like here, but in some cases the predictive URL was not correct?

Kent C. Dodds
Kent C. Doddsinstructor
~ 4 years ago

Hi Stephen, That's a good question. Unfortunately there's not much you can do in that case. You'll have to use the suspending Img component solution (or just deal with the issues we had before).

One solution might be to make an endpoint that acts as a proxy so you can make the image URLs predictable (and have the server proxy to the actual image URL).

Sung Kim
Sung Kim
~ 4 years ago

Is the number of concurrent request dependent on the browser's implementation?
e.g.) If Chrome allows 6 max network connections, and 10 resources are created and requesting data, then would first 6 request will be sent, and rest (4) will be loaded subsequently?

Kent C. Dodds
Kent C. Doddsinstructor
~ 4 years ago

Yes, you may bump against the browser's number of concurrent requests limitation (which is a good argument for graphql honestly), but even then the more you make concurrently the better off you are because even if the browser limits the requests going out, it will be able to fire off the rest while you're parsing the results of the ones that have already returned.

Markdown supported.
Become a member to join the discussionEnroll Today