Concurrent Rendering in React 18

Introduction to Concurrent Rendering in React 18

React 18 introduces a significant advancement in rendering capabilities with concurrent rendering. This feature aims to enhance the performance and responsiveness of applications by allowing React to work more efficiently in handling asynchronous operations and rendering tasks. The primary goal of concurrent rendering is to make applications feel more fluid and responsive, especially when dealing with complex UI updates and data fetching scenarios.

In the traditional rendering model, React processes updates synchronously, which can lead to performance bottlenecks, especially in applications with heavy computational tasks or frequent data fetching. Concurrent rendering changes this by enabling React to interrupt ongoing rendering tasks to handle more urgent updates, ensuring a smoother user experience.

Understanding Suspense and Its Role in React

Suspense is a powerful feature in React that helps manage asynchronous operations, such as data fetching, by allowing components to 'suspend' their rendering until certain conditions are met. This mechanism is crucial for creating seamless user experiences, as it enables developers to display loading indicators or fallback UI while waiting for data to load.

With the introduction of concurrent rendering, Suspense becomes even more effective. It provides a way to coordinate multiple asynchronous operations, ensuring that components render only when their data is ready. This reduces the risk of displaying incomplete or inconsistent UI states, which can occur when rendering tasks are not properly managed.

Exploring the Use of Suspense in React 17 and 18

Suspense was first introduced in React 17, offering a way to manage asynchronous operations within components. In React 18, enhancements to Suspense allow for more flexible and efficient handling of data fetching and rendering tasks. Developers can now take advantage of improved capabilities such as Suspense List and concurrent rendering modes.

One of the key improvements in React 18 is the ability to use Suspense with server-side rendering (SSR). This was not possible in React 17, but with React 18's CreateRoute API, developers can now implement SSR with Suspense, providing a more robust solution for rendering complex UIs.

The Importance of Error Boundaries

Error boundaries are a critical component in React applications, providing a way to catch and handle errors in the component tree. They work similarly to Suspense, allowing developers to specify fallback UI when errors occur. This ensures that applications remain stable and informative, even when unexpected errors arise.

By nesting error boundaries within the component tree, developers can isolate errors to specific parts of the UI. This prevents the entire application from crashing and allows users to continue interacting with unaffected areas of the interface. React 18's concurrent rendering capabilities further enhance error handling by allowing more granular control over how errors are managed during the rendering process.

Nesting Suspense Boundaries for Better UI Control

In React 18, developers can nest Suspense boundaries to gain finer control over the rendering process. This allows for more targeted management of asynchronous operations, ensuring that specific parts of the UI update independently based on their data dependencies.

Nesting Suspense boundaries is particularly useful in complex applications where different components rely on separate data sources. By isolating these components within their own Suspense boundaries, developers can optimize the user experience, minimizing unnecessary re-renders and improving overall application performance.

Coordinating Suspense with Suspense List

React 18 introduces the Suspense List component, which allows developers to coordinate multiple Suspense boundaries within an application. This is particularly beneficial when managing components that rely on different data sources but need to render in a synchronized manner.

With Suspense List, developers can specify the order in which Suspense boundaries resolve, ensuring a consistent and predictable UI. Options such as 'together', 'forwards', and 'backwards' provide flexibility in managing how components display their loading states and final content, enhancing the overall user experience.

Leveraging Concurrent Rendering for Performance

Concurrent rendering is a game-changer for React developers, offering a way to handle complex rendering tasks more efficiently. By breaking down rendering processes into smaller, manageable chunks, React can prioritize updates and improve application responsiveness, especially in scenarios with heavy computational demands.

This new rendering model allows React to pause and resume rendering tasks as needed, ensuring that high-priority updates, such as user interactions or data fetches, are handled promptly. This leads to a more fluid and responsive application, even under heavy load.

Utilizing Start Transition for Responsive UIs

The Start Transition API in React 18 provides a way to differentiate between high-priority and low-priority rendering tasks. By marking certain updates as low-priority, developers can ensure that crucial interactions, such as user inputs, remain responsive while less critical updates are delayed until resources are available.

This approach is particularly useful in scenarios where UI elements need to remain interactive while background computations are performed. Start Transition allows developers to optimize the user experience by prioritizing important updates, resulting in a more responsive and efficient application.

Enhancing User Feedback with Use Transition

Use Transition is another powerful tool in React 18 that complements Start Transition by providing additional feedback during rendering transitions. It enables developers to track the pending state of transitions, allowing for more informed UI updates and visual cues.

By leveraging Use Transition, developers can create more interactive and informative user interfaces. This API provides insight into the rendering process, enabling more precise control over how components update and display loading states, further enhancing the user experience.

Conclusion

React 18's concurrent rendering and Suspense features mark a significant step forward in managing complex UI updates and asynchronous operations. By enabling more efficient rendering processes and providing greater control over component states, developers can create more responsive and user-friendly applications.

The combination of concurrent rendering, Suspense, and new APIs like Start Transition and Use Transition offers developers the tools needed to build highly performant and interactive applications. As React continues to evolve, these features will play a crucial role in shaping the future of web development, ensuring that applications remain efficient, responsive, and capable of handling the demands of modern user experiences.

Watch full talk with demos and examples:

From Author:

With the release of React 18 we finally get the long awaited concurrent rendering. But how is that going to affect your application? What are the benefits of concurrent rendering in React? What do you need to do to switch to concurrent rendering when you upgrade to React 18? And what if you don’t want or can’t use concurrent rendering yet?

There are some behavior changes you need to be aware of! In this workshop we will cover all of those subjects and more.

Join me with your laptop in this interactive workshop. You will see how easy it is to switch to concurrent rendering in your React application. You will learn all about concurrent rendering, SuspenseList, the startTransition API and more.

This workshop has been presented at React Advanced 2021, check out the latest edition of this React Conference.

FAQ

React 18 focuses on introducing concurrent rendering capabilities that allow for more efficient handling of updates by breaking them into smaller chunks. This helps in managing priorities of rendering tasks and can interrupt lower-priority rendering to handle more urgent updates, enhancing the application's responsiveness.

The 'useTransition' hook in React 18 allows developers to mark updates as non-urgent or low priority. This enables the application to stay responsive by delaying these updates until higher-priority tasks are completed, thus preventing less important updates from blocking the user interface.

The 'suspense list' component in React 18 allows developers to control the order in which multiple suspense boundaries reveal their content. It supports different configurations such as 'forwards', 'backwards', and 'together' to manage how grouped suspense boundaries handle loading states, improving the coordination of loading sequences in complex applications.

The 'startTransition' API in React allows developers to specify non-urgent updates, which can be interrupted if more important updates arrive. This helps in keeping the application responsive by not blocking user interactions with less critical updates, ultimately enhancing user experience by prioritizing more critical tasks.

Yes, 'useTransition' can be used along with 'suspense' in React applications. While 'useTransition' allows for deferring less urgent updates, 'suspense' handles the loading states of components. Using them together can significantly enhance the handling of asynchronous operations and the responsiveness of applications.

While the exact release date for React 18 is not specified, it is expected to be released after an alpha phase, followed by beta and release candidate phases. The release is hoped to be around late 2021 or early 2022, depending on the completion of testing and feedback incorporation.

React 18 introduces new capabilities for server-side rendering, particularly around the 'suspense' feature, which was previously not supported. This allows developers to use suspense for data fetching on the server, improving the performance and user experience by rendering placeholder content until the data is fully loaded.

Maurice de Beijer
Maurice de Beijer
132 min
27 Oct, 2021

Comments

Sign in or register to post your comment.
  • Narges Haeri
    Narges Haeri
    Aspiring Professional
    Thank you so much for such great content. Your workshop was incredibly helpful!
Video Summary and Transcription
The workshop covers the new features of React 17 and React 18, including suspense, error handling, and concurrent mode. It emphasizes the importance of hands-on learning and typing code instead of just copying. The workshop explores using suspense and error boundaries to handle errors and improve the user experience. It also introduces new features in React 18, such as start transition and useTransition, to enhance responsiveness. The interaction between suspense and start transition is discussed, highlighting their collaboration in handling fallback UI and communication.

1. Introduction to Concurrent Rendering

Welcome to the workshop on concurrent rendering adventures in React18. I'm Maurice de Beer, a freelance developer instructor and Microsoft MVP. Follow me on Twitter and check out my website for more information. Subscribe to my weekly React newsletter for updates. You'll receive a copy of the slides as well.

2. Exploring React 17 and React 18 Features

We'll explore the new features of React 17 and React 18, including suspense, handling errors, rendering existing applications, suspense list, transitions, and concurrent mode. Please note that we won't cover all the features of React 18, such as server-side rendering with suspense.

QnA

Watch more workshops on topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
React Hooks Tips Only the Pros Know
React Summit Remote Edition 2021React Summit Remote Edition 2021
177 min
React Hooks Tips Only the Pros Know
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
The addition of the hooks API to React was quite a major change. Before hooks most components had to be class based. Now, with hooks, these are often much simpler functional components. Hooks can be really simple to use. Almost deceptively simple. Because there are still plenty of ways you can mess up with hooks. And it often turns out there are many ways where you can improve your components a better understanding of how each React hook can be used.You will learn all about the pros and cons of the various hooks. You will learn when to use useState() versus useReducer(). We will look at using useContext() efficiently. You will see when to use useLayoutEffect() and when useEffect() is better.
React, TypeScript, and TDD
React Advanced 2021React Advanced 2021
174 min
React, TypeScript, and TDD
Top Content
Featured WorkshopFree
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Web3 Workshop - Building Your First Dapp
React Advanced 2021React Advanced 2021
145 min
Web3 Workshop - Building Your First Dapp
Top Content
Featured WorkshopFree
Nader Dabit
Nader Dabit
In this workshop, you'll learn how to build your first full stack dapp on the Ethereum blockchain, reading and writing data to the network, and connecting a front end application to the contract you've deployed. By the end of the workshop, you'll understand how to set up a full stack development environment, run a local node, and interact with any smart contract using React, HardHat, and Ethers.js.
Designing Effective Tests With React Testing Library
React Summit 2023React Summit 2023
151 min
Designing Effective Tests With React Testing Library
Top Content
Featured Workshop
Josh Justice
Josh Justice
React Testing Library is a great framework for React component tests because there are a lot of questions it answers for you, so you don’t need to worry about those questions. But that doesn’t mean testing is easy. There are still a lot of questions you have to figure out for yourself: How many component tests should you write vs end-to-end tests or lower-level unit tests? How can you test a certain line of code that is tricky to test? And what in the world are you supposed to do about that persistent act() warning?
In this three-hour workshop we’ll introduce React Testing Library along with a mental model for how to think about designing your component tests. This mental model will help you see how to test each bit of logic, whether or not to mock dependencies, and will help improve the design of your components. You’ll walk away with the tools, techniques, and principles you need to implement low-cost, high-value component tests.
Table of contents- The different kinds of React application tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting DOM elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RTL tests and how to handle them
Prerequisites- Familiarity with building applications with React- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Testing Library- Machine setup: Node LTS, Yarn
Best Practices and Advanced TypeScript Tips for React Developers
React Advanced 2022React Advanced 2022
148 min
Best Practices and Advanced TypeScript Tips for React Developers
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
Are you a React developer trying to get the most benefits from TypeScript? Then this is the workshop for you.In this interactive workshop, we will start at the basics and examine the pros and cons of different ways you can declare React components using TypeScript. After that we will move to more advanced concepts where we will go beyond the strict setting of TypeScript. You will learn when to use types like any, unknown and never. We will explore the use of type predicates, guards and exhaustive checking. You will learn about the built-in mapped types as well as how to create your own new type map utilities. And we will start programming in the TypeScript type system using conditional types and type inferring.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

A Guide to React Rendering Behavior
React Advanced 2022React Advanced 2022
25 min
A Guide to React Rendering Behavior
Top Content
This transcription provides a brief guide to React rendering behavior. It explains the process of rendering, comparing new and old elements, and the importance of pure rendering without side effects. It also covers topics such as batching and double rendering, optimizing rendering and using context and Redux in React. Overall, it offers valuable insights for developers looking to understand and optimize React rendering.
Building Better Websites with Remix
React Summit Remote Edition 2021React Summit Remote Edition 2021
33 min
Building Better Websites with Remix
Top Content
Remix is a web framework built on React Router that focuses on web fundamentals, accessibility, performance, and flexibility. It delivers real HTML and SEO benefits, and allows for automatic updating of meta tags and styles. It provides features like login functionality, session management, and error handling. Remix is a server-rendered framework that can enhance sites with JavaScript but doesn't require it for basic functionality. It aims to create quality HTML-driven documents and is flexible for use with different web technologies and stacks.
React Compiler - Understanding Idiomatic React (React Forget)
React Advanced 2023React Advanced 2023
33 min
React Compiler - Understanding Idiomatic React (React Forget)
Top Content
Watch video: React Compiler - Understanding Idiomatic React (React Forget)
Joe Savona
Mofei Zhang
2 authors
The Talk discusses React Forget, a compiler built at Meta that aims to optimize client-side React development. It explores the use of memoization to improve performance and the vision of Forget to automatically determine dependencies at build time. Forget is named with an F-word pun and has the potential to optimize server builds and enable dead code elimination. The team plans to make Forget open-source and is focused on ensuring its quality before release.
Using useEffect Effectively
React Advanced 2022React Advanced 2022
30 min
Using useEffect Effectively
Top Content
Today's Talk explores the use of the useEffect hook in React development, covering topics such as fetching data, handling race conditions and cleanup, and optimizing performance. It also discusses the correct use of useEffect in React 18, the distinction between Activity Effects and Action Effects, and the potential misuse of useEffect. The Talk highlights the benefits of using useQuery or SWR for data fetching, the problems with using useEffect for initializing global singletons, and the use of state machines for handling effects. The speaker also recommends exploring the beta React docs and using tools like the stately.ai editor for visualizing state machines.
Routing in React 18 and Beyond
React Summit 2022React Summit 2022
20 min
Routing in React 18 and Beyond
Top Content
Routing in React 18 brings a native app-like user experience and allows applications to transition between different environments. React Router and Next.js have different approaches to routing, with React Router using component-based routing and Next.js using file system-based routing. React server components provide the primitives to address the disadvantages of multipage applications while maintaining the same user experience. Improving navigation and routing in React involves including loading UI, pre-rendering parts of the screen, and using server components for more performant experiences. Next.js and Remix are moving towards a converging solution by combining component-based routing with file system routing.
(Easier) Interactive Data Visualization in React
React Advanced 2021React Advanced 2021
27 min
(Easier) Interactive Data Visualization in React
Top Content
This Talk is about interactive data visualization in React using the Plot library. Plot is a high-level library that simplifies the process of visualizing data by providing key concepts and defaults for layout decisions. It can be integrated with React using hooks like useRef and useEffect. Plot allows for customization and supports features like sorting and adding additional marks. The Talk also discusses accessibility concerns, SSR support, and compares Plot to other libraries like D3 and Vega-Lite.