@gluonjs/store / packages/store/src / AsyncPersistencePlugin
Interface: AsyncPersistencePlugin()
Extends
AsyncPersistencePlugin(
context):StorePluginResult
Parameters
context
Returns
Properties
lifecycle
readonlylifecycle:AsyncPersistenceLifecycle
Example
Install the async persistence plugin in one application and retain its lifecycle handle for bootstrap and disposal:
import {
createAsyncPersistencePlugin,
createStoreManager,
defineStore,
type AsyncPersistenceLifecycle,
type AsyncPersistencePlugin,
type AsyncPersistencePluginOptions,
type AsyncPersistenceStatus,
type AsyncStorageLike,
type StoreAbortSignal,
} from '@gluonjs/store';
declare function indexedDbGet(key: string, signal?: StoreAbortSignal): Promise<string | null>;
declare function indexedDbSet(key: string, value: string, signal?: StoreAbortSignal): Promise<void>;
const storage: AsyncStorageLike = {
async getItem(key, signal) { return await indexedDbGet(key, signal); },
async setItem(key, value, signal) { await indexedDbSet(key, value, signal); },
};
const signal: StoreAbortSignal | undefined = undefined;
const pluginOptions: AsyncPersistencePluginOptions = { storage, signal };
const persistence: AsyncPersistencePlugin = createAsyncPersistencePlugin(pluginOptions);
const manager = createStoreManager({ plugins: [persistence] });
const cart = manager.use(defineStore({ id: 'cart', state: () => ({ items: [] as string[] }), persist: true }));
const lifecycle: AsyncPersistenceLifecycle = persistence.lifecycle;
const status: AsyncPersistenceStatus = lifecycle.status;
await lifecycle.ready;
if (lifecycle.status === 'ready') console.log('bootstrap restored store', cart.items);