Understanding the {#await ...} block in Svelte

Justin's profile pic

Justin Ahinon

Last updated on

Enter your email to get this article emailed to you

From my research, I've found that the  {#await ...}  block in Svelte to be one of the less used and understood features of the framework.

While it's not the most common feature, it's still a very useful one. Let's dig into it.

Promises in Svelte

It's not uncommon to see a Svelte component that looks like this:

SVELTE

We define a reactive variable  data  and then fetch some data from an API. Once the data is fetched, we assign it to the  data  variable and then use it in our markup.

Now, let's say we want to fetch some data from an API, but we want to show a loading indicator while the data is being fetched.

We could potentially do something like this:

SVELTE

So far, so good. Now, let's say we also want to display errors if the API call fails. We will need to add another  then()  chain to our promise:

SVELTE

This is one of the way you'd handle promises in Svelte. But there's a better way. And you'll find it very useful when you start having a bunch of promises and data fetching in your components.

Enter the {#await ...} block

Before I explain anything, let's take a look at what the previous example would look like using the  {#await ...}  block:

SVELTE

This code is very self-explanatory, but let's go over it anyway.

  • We start by defining an  async  function that will fetch the data from the API. This function will return a promise.

  • We then use the  {#await ...}  block to wait for the promise to resolve. While the promise is pending, the code inside the block will be rendered.

  • When the promise resolves, the code inside the  {:then ...}  block will be rendered. The resolved value of the promise will be passed to the block.

  • If the promise rejects, the code inside the  {:catch ...}  block will be rendered. The rejected value of the promise will be passed to the block.

As you can see, the  {#await ...}  block is a very powerful, improves our code lisibility and makes it easier to handle loading states and errors while fetching data.

Overall, we are saving a lot of lines of code, and it's much easier to read and understand what's going on.

Checkout the documentation for the {#await ...}  block in Svelte here.

You might also like these blog posts

A lovely bath

How to re-render Svelte components?

Get hands-on with Svelte! Learn how the {#key ...} block lets you control re-rendering and breathe new life into your components.

A lovely bath

How to fix the "window is not defined" error in SvelteKit

Overcome the "window is not defined" error in SvelteKit with ease! Learn effective solutions like using the SvelteKit browser module and onMount lifecycle function.