1.11.3 • Published 5 years ago

redux-undone v1.11.3

Weekly downloads
28
License
MIT
Repository
github
Last release
5 years ago

Commitizen friendly NPM: redux-undone Build Status License: MIT

Redux Undone

Undo & Redo for complex redux workflows.

Installation

npm install --save redux-undone

Usage

This library is implemented as a redux middleware. When setting up your redux store, you create the middleware for redux-undone by passing in your transformers.

import { createStore, applyMiddleware, combineReducers } from 'redux';
import { reducers, transformers } from './modules';
import undone from 'redux-undone';

export default () => {
  const rootReducer = combineReducers(reducers);
  const middleware = [undone.createMiddleware(transformers)];

  return createStore(
    rootReducer,
    applyMiddleware(...middleware)
  );
};

Transformers is an object with a property for each undo-able action type. If you do not include a transformer for an action type, it is ignored by redux-undone (opt-in). A transformer is a function that is passed three parameters: the state before before the original action was dispatched, the state after the original action was dispatched, and the original action itself. The function must return either a thunk or an action, which represents the transformation from the original action.

...
{
  [ADD_TODO]: (action, prevState, nextState, undoing) => {
    const { value } = action.payload;
    return attemptRemoveTodo(value);
  },
  [REMOVE_TODO]: (action, prevState, nextState, undoing) => {
    const { payload } = action;
    const { value, done } = getTodo(prevState, payload);
    return attemptAddTodo({ value, done, index: payload });
  },
}
...

Now all you need to do is make use of the provided action creators.

import { undo, redo } from 'redux-undone';
...
store.dispatch(undo());
...
store.dispatch(redo());
...

See example for complete usage.

Additional Notes

If you are using redux-thunk, you can continue to do so, but it is unnecessary, because this library also handles thunks.

1.11.3

5 years ago

1.11.2

5 years ago

1.11.1

5 years ago

1.11.0

5 years ago

1.10.0

5 years ago

1.9.0

5 years ago

1.8.0

6 years ago

1.7.2

6 years ago

1.7.1

6 years ago

1.7.0

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.6

6 years ago

1.4.5

6 years ago

1.4.4

6 years ago

1.4.3

6 years ago

1.4.2

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago