README-recoil-sync.md
The recoil-sync package provides an add-on library to help synchronize Recoil state with external systems.
Please see the Recoil Sync Documentation
In Recoil, simple asynchronous data queries can be implemented via selectors or useEffect() and atom effects can be used for bi-directional syncing of individual atoms. The recoil-sync add-on package provides some additional functionality:
recoil-sync and refine help provide this functionality.The recoil-sync library also provides built-in implementations for external stores, such as syncing with the browser URL.
The basic idea is that a syncEffect() can be added to each atom that you wish to sync, and then a <RecoilSync/> is added inside your <RecoilRoot> to specify how to sync those atoms. You can use built-in stores such as <RecoilURLSyncJSON>, make your own, or sync different groups of atoms with different stores.
Here is a simple example syncing an atom with the browser URL:
const currentUserState = atom<number>({
key: 'CurrentUser',
default: 0,
effects: [
syncEffect({ refine: number() }),
],
});
Then, at the root of your application, simply include <RecoilURLSyncJSON /> to sync all of those tagged atoms with the URL
function MyApp() {
return (
<RecoilRoot>
<RecoilURLSyncJSON location={{part: 'queryParams'}}>
...
</RecoilURLSyncJSON>
</RecoilRoot>
)
}
That's it! Now this atom will initialize its state based on the URL during initial load, any state mutations will update the URL, and changes in the URL (such as the back button) will update the atom. See more examples in the Sync Effect, Store Implementation, and URL Persistence guides.
Please see the Recoil installation guide and add recoil-sync as an additional dependency. recoil-sync also includes the refine library.
Development of Recoil happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Recoil.
Recoil is MIT licensed.