@paysera/redux-state-history
v1.1.0
Published
A simple library that provides means to save Redux state and revert it when needed
Downloads
5
Readme
@paysera/redux-state-history
A simple library that provides means to save Redux state and revert it when needed.
Installation
Require the package via package manager:
npm i @paysera/redux-state-history
Simply import the
withHistory
higher-order reducer and wrap your reducer with it. You may as well provide configuration as a second argument.
import { withHistory } from '@paysera/redux-state-history';
import { combineReducers } from 'redux';
import fooReducer from './foo';
import barReducer from './bar';
import bazReducer from './baz';
const config = {
maxHistoryLength: 10,
};
const reducers = {
foo: withHistory(fooReducer, config),
bar: withHistory(barReducer),
baz: bazReducer,
};
export default combineReducers(reducers);
Usage
redux-history
is a simple collection of redux actions:
save()
Saves current branch into history.
import { save } from '@paysera/redux-state-history';
import fooAction from './fooAction';
function fooBar(payload) {
return (dispatch) => {
dispatch(save());
dispatch(fooAction(payload));
};
}
export default fooBar;
revert()
Reverts state a step back.
import { save, revert } from '@paysera/redux-state-history';
import fooAction from './fooAction';
function fooBar(payload) {
return (dispatch) => {
dispatch(save());
dispatch(fooAction(payload));
dispatch(revert());
};
}
export default fooBar;
saveAndLock()
Saves and locks the history state, so you cannot save or revert it without unlocking.
import { saveAndLock, revert } from '@paysera/redux-state-history';
import fooAction from './fooAction';
function fooBar(payload) {
return (dispatch) => {
dispatch(saveAndLock());
dispatch(fooAction(payload));
try {
dispatch(revert());
} catch (error) {
// catch HistoryLockError
}
};
}
export default fooBar;
revertAndUnlock()
Reverts and unlocks the history state.
import { saveAndLock, revertAndUnlock } from '@paysera/redux-state-history';
import fooAction from './fooAction';
function fooBar(payload) {
return (dispatch) => {
dispatch(saveAndLock());
dispatch(fooAction(payload));
dispatch(revertAndUnlock());
dispatch(fooAction(payload));
dispatch(saveAndLock());
};
}
export default fooBar;
Tips
Dispatching redux-state-history
actions from reducers
Although it is considered as an anti-pattern, there may be some use-cases where there is no other option as the current state is not valid anymore. For example, you want to revert your state to the previous saved state due to some error in the state (imagine you cannot make changes in seperate branch because you need to give feedback/render instantly to your user).
If you wanted to dispatch inside a reducer, you could do something like this:
import { dispatchAction, revert } from '@paysera/redux-state-history';
import store from './store';
export default (state, payload) => {
dispatchAction(store, revert, payload);
return state;
};
Or make a wrapper, that imports store and dispatchAction
and exports a simple function which you can use later on.
Considerations
redux-state-history
is scoped to the reducer it is being wrapped on, meaning you cannot manipulate states from within
different reducers as different reducers have their own separate branches in the Redux state. Although, you may wrap
as many reducers as you like using withHistory
.
On the other hand, in case you need to access another reducer' state you could consider using only one reducer and do some state branching instead.