/replicache-react

Miscellaneous utilities for using Replicache with React

Primary LanguageTypeScriptMIT LicenseMIT

replicache-react

npm version


npm i replicache-react

Provides a useSubscribe() hook for React which wraps Replicache's subscribe() method.

API

function useSubscribe

React hook that allows you monitor replicache changes

Parameter Type Description
rep Replicache Replicache instance that is being monitored
query (tx: ReadTransaction) => Promise<R> Query that retrieves data to be watched
options? Object | undefined Option bag containing the named arguments listed below ⬇️
.default? R | undefined = undefined Default value returned on first render or whenever query returns undefined
.dependencies? Array<any> = [] List of dependencies, query will be rerun when any of these change
.isEqual? ((a: R, b: R) => boolean) = jsonDeepEqual Compare two returned values. Used to know whether to refire subscription.

Usage

example of useSubscribe in todo app that is watching a specific category

const {category} = props;
const todos = useSubscribe(
  replicache,
  tx => {
    return tx
      .scan({prefix: `/todo/${category}`})
      .values()
      .toArray();
  },
  {
    default: [],
    dependencies: [category],
  },
);

return (
  <ul>
    {todos.map(t => (
      <li>{t.title}</li>
    ))}
  </ul>
);

Changelog

5.0.1

Change package to pure ESM. See See #61 for more information.

5.0.0

  • Add support for custom isEqual. See #59 for more information.
  • Requires Replicache 14.

4.0.1

Removes def from default dependencies. This is how it was before 0.4.0. Including by default makes it very easy to accidentally trigger render loops. People can added it explicitly if they really want.

4.0.0

This release changes the semantics of def slightly. In previous releases, def was returned only until query returned, then useSubscribe returns query's result. Now, def is returned initially, but also if query returns undefined.

This is an ergonomic benefit because it avoids having to type the default in two places. Before:

useSubscribe(r, tx => (await tx.get('count')) ?? 0, 0);

now:

useSubscribe(r, tx => tx.get('count'), 0);

3.1.0

Support a new generic form of ReadTransaction. New Replicaches and Reflects have tx.get<T> and tx.scan<T>. This update adds support for these to replicache-react. See: #55

3.0.0

Support (and require) Replicache 13.

2.11.0

When changing the value of r passed in, return the def value again, until the new subscription fires. See: https://github.com/rocicorp/replicache-react/commit/369d7513b09f48598db338c6776a9a22c7198e5c