本文整理汇总了TypeScript中redux-persist.createPersistor函数的典型用法代码示例。如果您正苦于以下问题:TypeScript createPersistor函数的具体用法?TypeScript createPersistor怎么用?TypeScript createPersistor使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了createPersistor函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getStoredState
getStoredState(persistConfig, (err: any, restoredState: any) => {
const store: Store<any> = createStore(reducer, restoredState)
const persistor: Persistor = createPersistor(store, persistConfig)
const secondaryPersistor: Persistor = createPersistor(store, { storage : asyncSessionStorage })
persistor.pause()
persistor.resume()
persistor.purge(["foo", "bar"])
persistor.rehydrate(restoredState, rehydrateOptions)
})
示例2: createFilter
import { createStore, Reducer, Store } from "redux";
import { createPersistor, Transform } from "redux-persist";
import createFilter from "redux-persist-transform-filter";
const reducer: Reducer<any> = (state: any, action: any) => ({ state, action });
const filter: Transform<any, any> = createFilter(
"foo",
["foo.bar"],
["fizz.buzz"]
);
const store: Store<any> = createStore(reducer);
createPersistor(store, { transforms : [filter] });
示例3: createEncryptor
import { createStore, Reducer, Store } from "redux"
import { createPersistor, Persistor, PersistTransformer } from "redux-persist"
import { EncryptorConfig } from "redux-persist-transform-encrypt"
import * as createEncryptor from "redux-persist-transform-encrypt"
const reducer: Reducer<any> = (state: any, action: any) => ({})
const config: EncryptorConfig = { secretKey : "foo" }
const encryptor: PersistTransformer = createEncryptor(config)
const store: Store<any> = createStore(reducer)
const persistor: Persistor = createPersistor(store, { transforms : [encryptor] })
示例4: createEncryptor
import { createStore, Reducer, Store } from "redux";
import { createPersistor, Transform } from "redux-persist";
import createEncryptor, { EncryptorConfig } from "redux-persist-transform-encrypt";
import createAsyncEncryptor, { AsyncEncryptorConfig } from "redux-persist-transform-encrypt/async";
const reducer: Reducer<any> = (state: any, action: any) => ({ state, action });
const config: EncryptorConfig = {
secretKey: "foo",
onError: (err: Error) => { err.message; }
};
const encryptor: Transform<any, any> = createEncryptor(config);
const configNoError: EncryptorConfig = { secretKey: "foo" };
const encryptorNoError: Transform<any, any> = createEncryptor(configNoError);
const asyncConfig: AsyncEncryptorConfig = { secretKey: "foo" };
const asyncEncryptor: Transform<any, any> = createAsyncEncryptor(asyncConfig);
const store: Store<any> = createStore(reducer);
createPersistor(store, { transforms : [encryptor, encryptorNoError, asyncEncryptor] });
示例5: createFilter
import { createStore, Reducer, Store } from "redux"
import { createPersistor, Persistor, PersistTransformer } from "redux-persist"
import createFilter from "redux-persist-transform-filter"
const reducer: Reducer<any> = (state: any, action: any) => ({})
const filter: PersistTransformer = createFilter(
"foo",
["foo.bar"],
["fizz.buzz"]
)
const store: Store<any> = createStore(reducer)
const persistor: Persistor = createPersistor(store, { transforms : [filter] })
示例6: require
import { createStore, Reducer, Store } from "redux"
import { createPersistor, Persistor, PersistTransformer } from "redux-persist"
import createCompressor = require("redux-persist-transform-compress")
const reducer: Reducer<any> = (state: any, action: any) => ({})
const compressor: PersistTransformer = createCompressor({ whitelist : ["foo"] })
const store: Store<any> = createStore(reducer)
const persistor: Persistor = createPersistor(store, { transforms : [compressor] })