react-wait
react-wait is a React Hook helps to manage multiple loading states on the page without any conflict. It's based on a very simple idea that manages an Array of multiple loading states. The built-in loader component listens its registered loader and immediately become loading state.
Why not React.Suspense
?:
React has its own Suspense feature to manage all the async works. For now it only supports code-splitting (not data-fetching).
useWait
allows you to manage waiting experiences much more explicitly and not only for Promised/async patterns but also complete loading management.
Overview
Here's a quick overview that what's useWait
for:
Quick Start
1. Install:
2. Require:
3. Wrap with the Waiter
Context Provider
And you should wrap your App
with Waiter
component. It's actually a Context.Provider
that provides a loading context to the component tree.
Installation
The API
react-wait provides some helpers to you to use in your templates.
anyWaiting()
Returns boolean value if any loader exists in context.
isWaiting(waiter String)
Returns boolean value if given loader exists in context.
startWaiting(waiter String)
Starts the given waiter.
endWaiting(waiter String)
Stops the given waiter.
Using Wait
Component
Better example for a button
with loading state:
Making Reusable Loader Components
With reusable loader components, you will be able to use custom loader components as example below. This will allow you to create better user loading experience.
Now you can use your spinner everywhere using waiting
attribute:
Creating Waiting Contexts using createWaitingContext(context String)
To keep your code DRY you can create a Waiting Context
using createWaitingContext
.