react-warehouse

React Warehouse

npm install react-warehouse

The package provides necessary React Hooks to create resource, load and preload its entities using React Suspense (in both legacy and concurrent mode). The implementation attempts to invalidate stale data and keep things up to date without additional effort from developers and without sacrificing user experience.

Abilities & Restrictions

What the API can do:

What the API cannot do at the moment:

Things on the roadmap:

Usage

Render as you fetch

To be defined

Local-first & Refactoring-friendly

To be defined

Opt-in waterfall requests

If a component requires data queried from different sources where one piece depends on another, you can bypass “render as you fetch” pattern and request data directly where it’s going to be used.

Note: useResourceSync() only works with pre-defined resources since it can’t rely on the component’s state.

import { useResourceValue, useResourceSync } from 'react-warehouse';

function FriendList({ user$ }) {
  let user = useResourceValue(user$);
  let friends = useResourceSync(FriendsResource, [user.id]);
  return (
    <section>
      {friends.map(friend => ...)}
    </section>
  );
}

Controlling max age and cache capacity

There are plenty of cases where you may know specific max age for data, or even consider some data immutable. Max age handling becomes important when users keep long living tabs with your application and keep using them without reloading.

For example, it is safe to assume that employees list is not updating too often, so we can avoid unnecessary requests by keeping data for at least 12 hours.

let Employees = createResource({
  query() { ... },
  maxAge: 12 * 60 * 60 * 1000,
});

Some pieces of data may be considered immutable in real world, which means we can avoid invalidating it based on age therefore reducing page flickering.

let PokemonAbilities = createResource({
  query(id) { ... },
  maxAge: Infinity,
});

Cache capacity makes sure the cache size don’t create performance and memory issues for the application. Modifying it is not necessary in most cases, but there are some that can take advantage of it.

For example, when performing real time search request, we can set capacity: 1 which means we only need the latest result of the search saved. So whenever users type slowly and producing intermediate requests, the resource can cancel them and remove from the cache.

let UserSearch = createResource({
  query(searchString) {
    let url = `/api/users?query=${searchString}`;
    let controller = new AbortController();
    let onCancel = () => controller.abort();
    let request = fetch(url, { signal: controller.signal }).then((response) => response.json());
    return [request, onCancel];
  },
  capacity: 1,
});

When user goes through pages of content, they only see a single page. However, they may need to “go back to previous page” so it would be better to keep it for at least some time.

When they click through pages quickly, we don’t need to process all requests, so clicking 6 times on “next page” really fast, will produce 6 requests, but 3 of them will be cancelled based on capacity.

API Reference

The API designed in the way that does not require specific non-local changes. The hooks can be added to existing components without refactoring the whole implementation.

createResource(options)

This function can be treated as React’s createContext() function. Returns Resource instance that will be consumed by following hooks.

useResource(Resource, [...deps])

Returns an instance of resource while preloading data using query(...deps) and caching the result with Resources cache options.

useResourceFactory(query, [...deps])

Returns an instance of resource while preloading data using query(...deps) and keeping the instance as a part of the calling component.

useResourceFlow(Resource, [...deps])

Returns a pair of [resource, isPending] where resource is the same as from useResource() and isPending is a boolean flag which turns true for any subsequent request after the first request is resolved.

useResourceValue(resource)

Unwraps resource instance’s value and suspends if necessary.

useResourceSync(Resource, [...deps])

A composition of useResource() and useResourceValue() that allows suspending in the component which makes use of the resolved data. Suitable when waterfall is needed.

useResourceMutation(Resource, resource)

Provides a callback that uses Resource.mutate() function to update resource value and cache.

<ErrorBoundary fallback={...} onError={...} />

An optional implementation of Error Boundary. When not used, will be tree-shaked out of the bundle.

Typings

The project includes typings for both Flow and TypeScript without requiring installation of additional packages. Most of the types working under the hood providing developer experience benefits. There two types that can be used for annotating resource’s query function and components props.

It is recommended to provide explicit type annotation to query() functions.

type ResourceQuery<Data>

A union type of variants that query() can return. The usage is optional since specific result type can be specified instead.

import { createResource } from 'react-warehouse';
// type ResourceQuery<Data> = Promise<Data> | [Promise<Data>, () => void]
import type { ResourceQuery } from 'react-warehouse';

type User = { id: string, fullName: string };

let UserInfo = createResource({
  query(userId: string): ResourceQuery<User> {
    return ...;
  },
});

type Resource<Data>

Represents a resource instance that is passed from parent component to child that later suspends. The usage is optional since necessary hooks are typed. Explicit usage is needed when a component’s annotation is required.

import { useResourceValue } from 'react-warehouse';
import type { Resource } from 'react-warehouse';

type User = { id: string, fullName: string };
type Props = { user$: Resource<User> };

export function UserInfoView({ user$ }: Props) {
  let user = useResourceValue(user$);
  return ...;
}