2016-11-21 03:39:18 +09:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { NotificationStack } from 'react-notification';
|
2017-06-23 23:05:04 +09:00
|
|
|
import { dismissAlert } from '../../../actions/alerts';
|
2016-11-21 03:39:18 +09:00
|
|
|
import { getAlerts } from '../../../selectors';
|
2016-09-13 02:20:55 +09:00
|
|
|
|
2017-06-23 23:05:04 +09:00
|
|
|
const mapStateToProps = state => ({
|
2017-05-21 00:31:47 +09:00
|
|
|
notifications: getAlerts(state),
|
2016-09-22 05:07:18 +09:00
|
|
|
});
|
2016-09-13 02:20:55 +09:00
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
return {
|
2016-11-21 03:39:18 +09:00
|
|
|
onDismiss: alert => {
|
|
|
|
dispatch(dismissAlert(alert));
|
2017-05-21 00:31:47 +09:00
|
|
|
},
|
2016-09-13 02:20:55 +09:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);
|