Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
If you love React, youâve probably heard something about the upcoming Suspense APIs, but even after watching a demo or two, it was pretty difficult for me to lay my finger on how exactly Suspense works.
So I put my computer science cap on and decided to try and recreate it with the current version of React v16.
A few disclaimers before we get started that my fictional legal team wants to get out of the way.
The actual version of Suspense that will ship with React is significantly more complicated and efficient than the version in this polyfill. This tutorial & accompanying module are meant mainly for learning and experimental purposes. Also, the current polyfill will likely not play well with SSR.
If you only care about the codes, check out react-suspense-polyfill, otherwise here we go!
Setting the Stage
IMHO, Suspense is a very powerful addition to the core React API surface, and I believe it will have a profound effect on how pragmatic React code is written a few years from now.
If you take nothing else away from this article, understand this:
At its core, React Suspense works by allowing an async component to throw a Promise from its render method.
This polyfill mimics Reactâs internal support for this behavior by implementing an error boundary in the Timeout component. If the error boundary encounters a thrown Promise, it waits until that Promise resolves and then attempts to re-render its children. It also handles falling back to loading content if the Promise takes too long to resolve. (explained in detail below)
I hope this module and accompanying demos make it easier to get up-to-speed with React Suspense. đ
React.Placeholder
Placeholder is the main public-facing component exposed by React Suspense. Its interface is relatively straightforward, exposing the following props:
- delayMs - Amount of time in milliseconds to wait before displaying fallback / loading content. The main reason for adding a delay before displaying fallback content is to prevent loading indicators flashing too quickly before the main async content loads which can be an annoying UI distraction.
- fallback - A React Node that will be displayed while any child component is loading only after delayMs have elapsed. This will typically be some type of loading spinner.
- suspense - A React Node that will be displayed while any child component is loading only before delayMs have elapsed. Note: this optional prop is specific to react-suspense-polyfill and is strictly for the purpose of demoing how suspense works.
- children - A React Node that represents the main content of this Placeholder component which may or may not throw a Promise while loading asynchronous resources. See react-async-elements for some examples of super sexy, async-friendly child components.
Placeholder is the component youâre most likely to use in your code, but in the spirit of understanding how it works, the majority of the complexity is handled by Timeout.
React.Timeout
The Timeout component is a bit more tricky, so letâs break down whatâs going on in steps:
- The render method (Line 50) will initially invoke its children render function with a boolean value signifying whether or not this component has hit its timeout ms since mounting and encountering an async workload.
- If the children render successfully, all is well with the world and React continues on as normal. đ
- If any component within the children subtree throws a Promise from its render method, it will be caught by Timeoutâs error boundary, componentDidCatch (Line 24).
- The error handler first starts a timeout for this async work (Line 28), such that the Timeout will fall back to displaying loading content if & when the ms timeout expires.
- During the ms time before this Promise may expire, the Timeout is âin suspenseâ (Lines 29 and 63), which essentially means that weâre waiting for some resource to load but it hasnât taken long enough to justify displaying the fallback / loading content just yet.
- Once the Promise resolves (Line 43), Timeout once again invokes its children render prop (Line 39) with the expectation that this time, the initial asynchronous resource will resolve synchronously and all will once again be well with the world. đ
Note that itâs entirely possible for a subtree to contain multiple, independent async resources, in which case the Timeout component may repeat steps 3â6 once for each async resource that needs to be resolved. Alternatively, Placeholders & Timeouts may be nested like any React component, so itâs entirely possible that a higher-level Timeout wonât need to handle an async request that is thrown lower in the React component tree if that request is captured by a Timeout closer to its origin. This follows the public behavior of React error boundaries pretty closely.
Hopefully, the Placeholder and underlying Timeout components are now more concrete in terms of how theyâre expected to behave.
99% of the time youâll be working with a simple Placeholder component and ignoring these details in Timeout, but I believe itâs extremely beneficial and empowering to have this type of deeper mental model to rely on for the type of fundamentally game-changing pattern that React Suspense supports.
And with that in mind, letâs talk a bit about how this basic mental model differs from the official version that the extremely talented React core team is cooking up!
Subtrees upon subtrees upon trees. (Image Credit: Unsplash)
Comparison to Official React Suspense
There are two major limitations of this polyfill compared with the forthcoming official implementation of React Suspense.
Correctness
Okay, so we may have cheated a little bit đ There is one important detail that we left out of our implementation in terms of polyfilling the correct behavior.
Can you guess what it is?
If youâre not sure, thatâs completely fine. I had done this whole coding exercise before I realized that Dan Abramov had pointed out a potential flaw with this approach, so donât worry if youâre drawing a blankâŠ
The one potential correctness issue with this approach (that Iâm aware of) is that React unmounts the Timeout subtree once an error is thrown, which has the unintended side effect of resetting all subtree components and their state each time an async resource is thrown or resolves.
Reactâs internal implementation of Suspense doesnât suffer from this issue, as they have full control over tracking component state and can therefore ensure that partially rendered subtrees are properly restored after resolving suspenseful resources.
The good news here, however, is that this is very much an edge case, and empirically, I would expect that this doesnât come into play very often. As long as you follow the 95% use case where the immediate child of Placeholder is the only potentially async child component, and that async child component eagerly loads all async state up front instead of say, in response to user interaction, you wonât run into any problems. đ
Iâm actually curious if it would make sense for React core to enforce this restrictionâŠ
Efficiency
This is the one area where a userland implementation of React Suspense simply canât come close to the official core implementation. Otherwise, Iâm sure the React team wouldâve considered implementing this pattern on top of React as opposed to expanding the core React APIÂ surface.
In particular, the React team has done a lot of work in the past year or so to enable smarter re-use of partial rendering and the ability to suspend low priority updates in favor of higher priority updates that are closer to affecting a userâs perception of application responsiveness.
This work is collectively known as React Fiber, and React Suspense should be viewed as one of the first major optimizations thatâs been enabled in React core as a direct result of the amazing foundation established with React Fiber.
Huge props to Sebastian MarkbÄge, Andrew Clark, Dan Abramov, Sophie Alpert, and the rest of the React team + contributors for their work in this area!
Compatibility
This polyfill does not currently support React v15 because error boundaries weren't properly supported until React v16. If you have ideas on how to add support for React v15, please submit an issue and let's discuss!
Note that React will log an error to the console when using this polyfill regarding the thrown error, but this console message can safely be ignored. Unfortunately, there is no way to disable this error reporting for these types of intentional use cases. :sigh:
Wrapping Up
If youâve read this far, please check out the full source code and âïž the repo as a way of saying thanks!
I really hope youâve found this article helpful. If youâre a React junkie, here are some related links:
- Creating React Suspense in v16.2 - Similar experiment by Pete Gleeson.
- react-suspense-starter - Alternative which bundles a pre-built version of Suspense-enabled React allowing you to experiment with React Suspense right meow. By Jared Palmer.
- react-async-elements - Suspense-friendly async React elements for common situations. By Jared Palmer.
- fresh-async-react - More Suspense stuff (code, demos, and discussions). By Swyx.
Have any thoughts that I left out? Let me know below in the comments! â€ïž
Before you goâŠ
If you liked this article, click the đ below, and share it with others so they can enjoy it as well.
Building a Polyfill for React Suspense was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.