redux-notifications-middleware

1.0.6 • Public • Published

Build Status npm version

Notification middleware for redux

A simple middleware for handling notifications using redux store

How to use

  • install package yarn add redux-notification-middleware

Steps to add middleware

  • Add reducer
import { combineReducers } from 'redux';
import { notificationReducer } from 'redux-notification-middleware';

const reducer = combineReducers({
  // app reducers
  notification: notificationReducer,
});
  • Keep list of actions to show notifications
import C from './constants';

export default [
  'LOGIN_ACTION',
  'FETCH_PRODUCT_ACTION',
  ...
];
  • Add middleware to store with events
import { createStore, applyMiddleware } from 'redux';
import { notificationMiddleware } from 'redux-notification-middleware';
import notificationEvents from './notification_actions';
import rootReducer from './reducers';

const store = createStore(
  rootReducer,
  applyMiddleware(notificationMiddleware(notificationEvents))
);
...

In the actions we can now supply notification payload and delay

For eg:-

{
  type: 'FETCH_PRODUCT_SUCCESS',
  notificationPayload: 'Successfully fetched products',
  notificationDelay: 2000,
}

Notification states will be available in the redux store and can be consumed in any connected containers

Readme

Keywords

none

Package Sidebar

Install

npm i redux-notifications-middleware

Weekly Downloads

1

Version

1.0.6

License

MIT

Last publish

Collaborators

  • anupvarghese