0.1.4 • Published 2 years ago
@zhourengui/redux-async-persist v0.1.4
Redux Async Persist
Support asynchronous persistent redux
Installation
npm install @zhourengui/redux-async-persist
# or
yarn add @zhourengui/redux-async-persist
Usage
An example used in vue
import { useReduxPersist } from './persist_store';
import { store } from './stores';
import { getCurrentInstance } from '@vue/runtime-core';
import { onBeforeUnmount } from '@vue/runtime-core';
useReduxPersist({
key: 'chrome_extension',
store: store, // redux store
persistKeys: ['term'], // persist keys
storage: {
getItem: async (key: string) =>
(await chrome.storage.local.get([key]))[key],
setItem: async (key: string, value: any) =>
await chrome.storage.local.set({ [key]: value }),
},
baseReducer: baseReducer // redux reducers,
disposed: (unsubscribe) => onBeforeUnmount(unsubscribe, app), // unsubscribe
});
0.0.20
2 years ago
0.0.21
2 years ago
0.0.22
2 years ago
0.0.23
2 years ago
0.0.24
2 years ago
0.0.16
2 years ago
0.0.17
2 years ago
0.0.18
2 years ago
0.0.19
2 years ago
0.0.10
2 years ago
0.0.11
2 years ago
0.0.12
2 years ago
0.0.13
2 years ago
0.0.14
2 years ago
0.1.0
2 years ago
0.1.2
2 years ago
0.1.1
2 years ago
0.0.9
2 years ago
0.0.8
2 years ago
0.1.4
2 years ago
0.1.3
2 years ago
0.0.7
2 years ago
0.0.6
2 years ago
0.0.3
2 years ago
0.0.2
2 years ago
0.0.5
2 years ago
0.0.4
2 years ago
0.0.1
2 years ago