1.0.0 • Published 8 years ago
react-notification-redux v1.0.0
React Notifications Integrated with Redux
Install
Install via npm:
npm install react-notification-reduxInstall via yarn:
yarn add react-notification-reduxUsage
This library is designed in the way, that you only need to include <Notification /> component once
in your app, somewhere in your high level component; then you need to add a notificationReducer
to your combineReducers function, and you are done.
Now you are able to dispatch a showNotification action from anywhere in your app,
and it will show a notification to the user.
So here are the steps:
1. Import Notification component at the top of your file:
import {Notification} from 'react-notification-redux'And then add it somewhere in your render function:
render() {
...
...
<Notification />
...
...
}2. Include a reducer into your global reducers file:
...
import {notificationReducer} from 'react-notification-redux';
...
const reducers = combineReducers({
...
...
notification: notificationReducer
});3. Somewhere in your application, where you need to show the notification, just dispatch an action specifying the message to show:
...
import {showNotification} from 'react-notification-redux';
...
...
dispatch(showNotification('Hello World'));
...1.0.0
8 years ago