createLocalPersister
The createLocalPersister
function creates a LocalPersister
object that can persist the Store
to the browser's local storage.
createLocalPersister(
store: Store | MergeableStore,
storageName: string,
onIgnoredError?: (error: any) => void,
): LocalPersister
Type | Description | |
---|---|---|
store | Store | MergeableStore | The |
storageName | string | The unique key to identify the storage location. |
onIgnoredError? | (error: any) => void | An optional handler for the errors that the |
returns | LocalPersister | A reference to the new |
A LocalPersister
supports both regular Store
and MergeableStore
objects.
As well as providing a reference to the Store
to persist, you must provide a storageName
parameter which is unique to your application. This is the key that the browser uses to identify the storage location.
Example
This example creates a LocalPersister
object and persists the Store
to the browser's local storage.
import {createLocalPersister} from 'tinybase/persisters/persister-browser';
import {createStore} from 'tinybase';
const store = createStore().setTables({pets: {fido: {species: 'dog'}}});
const persister = createLocalPersister(store, 'pets');
await persister.save();
console.log(localStorage.getItem('pets'));
// -> '[{"pets":{"fido":{"species":"dog"}}},{}]'
persister.destroy();
localStorage.clear();
Since
v1.0.0