React storage helpers that provide structure around useSyncExternalStore or React Context.
For small to medium sized apps I found redux to be a bit heavy for what it achieved. In reality, most of the time I want to create a simple website that blocks the form submit as a network call is being processed.
TL;DR: See our working example of how to use our SyncExternalStore<T>
base class with useSyncExternalStore
and how to write cleaner tests with it.
React@18 added useSyncExternalStore
which instead of storing any complicated state in a useState
, allowed for the use of a non-React based store and created a simple interface to connect it to React. This means any complex logic of storing state (e.g. async fetch calls) can now get pulled out of React and into a vanilla JS file or package which means cleaner component code! However the main frustration with useSyncExternalStore
is that you end up writing your subscribe
logic over and over again. To avoid this duplication, this library provides a SyncExternalStore<T>
base class to extend upon. Here's an example:
import { SyncExternalStore } from "react-context-store";
type Item = {
id: number;
name: string;
};
type ItemStoreState = {
state: "NOT_STARTED" | "PENDING" | "COMPLETE";
data: { [id: string]: Item };
};
class ItemStore extends SyncExternalStore<ItemStoreState> {
constructor() {
super({
state: "NOT_STARTED",
data: {},
});
}
getAll = async () => {
this.updateSnapshot((prevSnapshot) => ({
...prevSnapshot,
state: "PENDING",
}));
const response = await fetch("GET");
const json = await response.json();
this.updateSnapshot((prevSnapshot) => ({
...prevSnapshot,
state: "COMPLETE",
data: json,
}));
};
}
export const itemStore = new ItemStore();
Now to use this in a component, all you need is useSyncExternalStore:
import { itemStore } from "../stores/item-store.js";
export const Items = () => {
const snapshot = React.useSyncExternalStore(...itemStore.getUseSyncExternalStoreArgs());
const { state, data } = snapshot;
const onRefresh = () => {
itemStore.getAll();
};
return (
<div>
<h1>Items</h1>
<ul>
{Object.keys(data).map((key) => {
const item = data[key];
const { id, name } = item;
return <li key={id}>{name}</li>;
})}
</ul>
<button onClick={onRefresh} type="button">
Refresh
</button>
</div>
);
};
So why is this awesome? Because you can now get all the non-React state out of the React compnoents making the components more stateless than ever before! Further you can have a single store supplying data to multiple components without the heavy connecting of redux. All this means the component unit tests easier to write:
import { beforeEach, describe, it, jest } from "@jest/globals";
import { act, render } from "@testing-library/react";
import React from "react";
// 1. Mock the external store
const getSnapshot = jest.fn();
const getAll = jest.fn();
jest.unstable_mockModule("../stores/item-store.js", () => {
return {
mockStore: {
getAll,
getUseSyncExternalStoreArgs: () => [
// subscribe
() => () => {},
// snapshot
getSnapshot,
],
},
};
});
// 2. Import the component that uses the external store
const { Items } = await import("./items.js");
beforeEach(() => {
jest.resetAllMocks();
});
// 3. Test render of different snapshot data
describe("rendering snapshot data", () => {
// test only the rendering of the snapshot, no callbacks as the component can be entirely stateless now
});
// 4. Test actions get triggered, not that the snapshot updated based off the action
describe("callbacks to store", () => {
// Even better, when doing callbacks that perform actions on the store, you don't need to test the entire
// render cycle, just that the callback was sent with expected arguments. If you wanted to test
// that the snapshot was rendered correctly, you'd be in step #3.
});
See our working example for a running example of a store, component, and test
There are a few types of store hooks both of which return the current store contents and the available modifiers.
All come with some basic modifiers:
They also have the same states:
The useIndexableContextStore
and useIndexableStatefulContextStore
have additional update factories that allow for creating functions that manipulate individual items:
The following documentation has been copied out of a test case. If you find that it's not working, please check the test case. This example is an array but you can also use maps, or store a non-indexable type.
First create the context store
import React, { PropsWithChildren } from "react";
import {
ContextStore,
getNotImplementedPromise,
useIndexableContextStore,
} from "react-context-store";
export type Item = {
id: number,
name: string,
};
type ContextStoreData = Array<Item>;
export type RefreshAllParams = void;
export interface ContextValue extends ContextStore<ContextStoreData> {
refreshAll: (params: RefreshAllParams) => Promise<ContextStoreData>;
}
const defaultValue: ContextValue = {
data: [],
refreshAll: getNotImplementedPromise,
state: "unsent",
};
export const Context = React.createContext(defaultValue);
export type ProviderProps = PropsWithChildren<Record<string, never>>;
export function ApiProvider(props: ProviderProps) {
const { children } = props;
const [contextValue, { useUpdateFactory }] = useIndexableContextStore(
defaultValue
);
const refreshAll = useUpdateFactory({
action: (params: RefreshAllParams) => {
return fetchResults(params);
},
});
return (
<Context.Provider
value={{
...contextValue,
refreshAll,
}}
>
{children}
</Context.Provider>
);
}
Somewhere in your app, setup the shared provider
import { ApiProvider, Context } from "../context";
import { List } from "./component";
export function App() {
return (
<ApiProvider>
<List />
</ApiProvider>
);
}
And finally consume the context
import { ApiProvider, Context } from "../context";
export function List() {
const { data, refreshAll, state } = useContext(Context);
useEffect(() => {
refreshAll();
});
switch (state) {
case "error":
return <div>Oh no!</div>;
case "success":
return (
<div>
<ul>
{data.map((item) => {
const { id, name } = item;
return <li key={id}>{name}</li>;
})}
</ul>
</div>
);
default:
return <div>Loading</div>;
}
}
For more examples, take a look at our extensive testing suite.