1.2.7 • Published 3 years ago

react-sspr v1.2.7

Weekly downloads
27
License
ISC
Repository
-
Last release
3 years ago

Usage

We need to create a cache on the server that will hold the external data, and configure the Providers that make the data accessible in the app

In the server rendering

Create a cache instance

Where urls is an array of URLs to prefetch.

This array should be removed to have urls dynamically retrieved in a future version

Wrap the app with SSPRServerProvider

import {SSPRServerProvider, addURL} from 'react-sspr';

const app = <SSPRServerProvider>
    <YourApp/>
</SSPRServerProvider>;

Add URLs you need cached. This is an async operation and its completion is not required for rendering the app

import {SSPRClientProvider, addURL} from 'react-sspr';

addURL("http://www.test.com");

TODO document processURL

In client react

Wrap the app with SSPRClientProvider

<SSPRClientProvider>
    <YourApp/>
</SSPRClientProvider>

Simply use the useSSPR hook in the components:

 const rawCity = useSSPR('https://a-prefetched-url');

This is enough to have external data prefetched and filled in the html, for SEO purpose for example.

To avoid having a state change on the client side when the data is refetched during hydration, add renderStaticSSPR, server-side, to your generated html :

import {renderStaticSSPR} from 'react-sspr';

const ssprData = renderStaticSSPR();

// ...
// in the html template :
<body>
{ssprData}
//...

This is going to pass the prefetched data (only the bit that is currently needed, not the whole cache) to the client through the html. No refetch is then needed on the client.

Refreshing the cache

The cache is refreshed when the server restarts. You can also trigger a refresh using refreshSSPRCache()

Example with an Express server and a route to trigger a refresh :

import {refreshSSPRCache} from 'react-sspr';

app.get('/refetch-external-data-cache', (req, res) => {
  refreshSSPRCache();
});
1.2.7

3 years ago

1.2.6

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.1.10

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago