redux-persist-transform-filter
redux-persist-transform-filter copied to clipboard
Filter transformator for redux-persist
Hello, I'm running into troubles trying to blacklist a part of my reducer. here is my entriesReducer's initial state: ``` const initialState = { serverCopy : [], entriesPerDay : [],...
I was using this library to blacklist a part of my reducer state. This lead in big performances issues, using a simple blacklist filter like this one: ```javascript export const...
Bumps [pathval](https://github.com/chaijs/pathval) from 1.1.0 to 1.1.1. Release notes Sourced from pathval's releases. v1.1.1 Fixes a security issue around prototype pollution. Commits db6c3e3 chore: v1.1.1 7859e0e Merge pull request #60 from...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.0 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
Hi, this transform is great! Hopefully there is a solution that I'm just missing but it seems to me if you are only storing a subset of your reducer's state,...
How to persist only 1 reducer with couple of keys everything else in that reducer is blacklisted? My 10+ other reducers should also be blacklisted by default, I dont want...
@edy thanks for this repo! It seems the rehydration is not properly dealing with defaults when using transforms. Here my default state: ``` const defaultState = { computing: [], notification:...
Due to the way the `filterFunction` is currently implemented it is only able to handle objects. This causes strings in the state to be "objectified" during a filterFunction operation. eg...