Subscription based lightweight React store.
- easy to use
- easy testing
- no dependencies
- no react context
- TypeScript support included
- Very small package size (< 1kB gzipped)
- Much better performance than react-redux
// >>> in your store.js
import { createStore } from 'react-use-sub';
const initialState = { foo: 'bar', num: 2 };
export const [useSub, Store] = createStore(initialState);
// >>> in any component
import { useSub } from '/path/to/store.js';
export const App = () => {
// subscribe here your custom store mapper
const { fooLength, num } = useSub(({ foo, num }) => ({ fooLength: foo.length, num }));
const square = useSub(({ num }) => num**2);
return <div>Magic number is: {fooLength * num * square}</div>;
}
// >>> in any other (or same) place
import { Store } from '/path/to/store.js';
// signature (almost) equally to the Setter function of useState
Store.set({ foo: 'something' });
// or functional
Store.set(({ foo }) => ({ foo: foo + '_2' }));
// this updates the stored data
expect(Store.get()).toEqual({ foo: 'something_2', num: 2 });
// and updates all components that would be passed
// different values from the subscribed store mapper
Let me introduce you to some interesting things.
Since TypeScript can not distinguish
between missing fields and undefined values, you have to use null
on top-level. Please don't use optional fields on top-level. Updates
with undefined
on top-level will be simply ignored.
// BAD
type State = { lastVisit?: Date };
// GOOD
type State = { lastVisit: null | Date };
When calling Store.set
with undefined
or a function that returns undefined
has
no effect and performs no update.
// only update the stock if articles are present
Store.set(articles.length ? { stock: articles.length } : undefined);
// but this easy example could/should be rewritten to
articles.length && Store.set({ stock: articles.length });
// this feature comes more handy in examples like this
Store.set(({ articles }) => (articles.length ? { stock: articles.length } : undefined));
// or equivalent
Store.set(({ articles }) => {
if (articles.length) {
return { stock: articles.length };
}
});
Sometimes you may want to subscribe your component to state that depends on additional component state. This can be accomplished with the typical dependency array most of us got used to with most basic React hooks.
export const FancyItem: React.FC<{ id: string }> = ({ id }) => {
const { name, color } = useSub(({ items }) => items[id], [id]);
return <div style={{ color }}>{name}</div>;
}
But you shouldn't provide an empty array as second argument to useSub
,
since internal optimizations make this the default.
The returned value of the defined mapper will be compared shallowly against
the next computed value to determine if some rerender is necessary. E.g.
following the example of the App
component above:
// if Store.get().foo === 'bar'
Store.set({ foo: '123' });
// --> no rerender since "foo.length" did not change
// if Store.get().num === 3
Store.set({ num: 3 });
// --> no rerender since "num" did not change
Please feel free to use multiple subscriptions in a single component.
export const GreatArticle = () => {
const { id, author, title } = useSub(({ article }) => article);
const reviews = useSub(({ reviews }) => reviews);
const [trailer, recommendation] = useSub(({ trailers, recommendations }) => [trailer[id], recommendations[id]], [id]);
return (...);
}
Whenever a store update would trigger any of the above subscriptions the component will be rerendered only once even if all subscriptions would return different data. That's a pretty important capability when thinking about custom hooks that subscribe to certain states.
If you perform multiple store updates in the same synchronous task this has (almost) no negative impact on your performance and leads not to any unnecessary rerenders. All updates will be enqueued, processed in the next tick and batched to minimize the necessary rerenders.
Store.set({ foo: 'bar' });
Store.set({ num: 2 });
Store.set({ lastVisit: new Date() });
You can instantiate as many stores as you like, but make sure you don't create your own hell with too many convoluted stores to subscribe.
import { createStore } from 'react-use-sub';
export const [useArticleSub, ArticleStore] = createStore(initialArticleState);
export const [useCustomerSub, CustomerStore] = createStore(initialCustomerState);
export const [useEventSub, EventStore] = createStore(initialEventState);
If you're exporting useSub
and Store
like mentioned in the
example above, your IDE most likely doesn't suggest importing those
while typing inside some component. To achieve this you could do the
following special trick.
const [useSub, Store] = createStore(initialState);
export { useSub, Store };
You don't need to mock any functions in order to test the integration of the store. But you will need to run all timers with jest because all updates of components are processed batched.
// in some component
export const MyExample: React.FC = () => {
const stock = useSub(({ article: { stock } }) => stock);
return <span>Article stock is: {stock}</span>;
};
// before all tests
jest.useFakeTimers();
describe('<MyExample />', () => {
it('renders the stock', () => {
// initialization
// feel free to use any-casts in your tests (but only there)
Store.set({ article: { stock: 1337 } as any });
// render with stock 1337
const { container } = render(<MyExample />);
expect(container.textContent).toBe('Article stock is: 1337');
// update the stock
Store.set({ article: { stock: 444 } as any });
jest.runAllTimers();
expect(container.textContent).toBe('Article stock is: 444');
});
});