Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ianschmitz/react-lazy-with-preload

React.lazy() with preload support!
https://github.com/ianschmitz/react-lazy-with-preload

Last synced: about 2 months ago
JSON representation

React.lazy() with preload support!

Awesome Lists containing this project

README

        

`react-lazy-with-preload` wraps the `React.lazy()` API and adds the ability to preload the component before it is rendered for the first time.

## Install

```sh
npm install react-lazy-with-preload
```

## Usage

**Before:**

```js
import { lazy, Suspense } from "react";
const OtherComponent = lazy(() => import("./OtherComponent"));
```

**After:**

```js
import { Suspense } from "react";
import { lazyWithPreload } from "react-lazy-with-preload";
const OtherComponent = lazyWithPreload(() => import("./OtherComponent"));

// ...
OtherComponent.preload();
```

To preload a component before it is rendered for the first time, the component that is returned from `lazyWithPreload()` has a `preload` function attached that you can invoke. `preload()` returns a `Promise` that you can wait on if needed. The promise is idempotent, meaning that `preload()` will return the same `Promise` instance if called multiple times.

For more information about React code-splitting, `React.lazy` and `React.Suspense`, see https://reactjs.org/docs/code-splitting.html.

## Example

For example, if you need to load a component when a button is pressed, you could start preloading the component when the user hovers over the button:

```js
function SomeComponent() {
const { showOtherComponent, setShowOtherComponent } = useState(false);

return (


Loading...
}>
{showOtherComponent && }

setShowOtherComponent(true)}
// This component will be needed soon. Let's preload it!
onMouseOver={() => OtherComponent.preload()}
>
Click me to render OtherComponent


);
}
```

## Acknowledgements

Inspired by the preload behavior of [react-loadable](https://github.com/jamiebuilds/react-loadable).