This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-09-12 10:20:55 -07:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { NotificationStack } from 'react-notification';
|
2016-09-21 13:07:18 -07:00
|
|
|
import {
|
|
|
|
dismissNotification,
|
|
|
|
clearNotifications
|
|
|
|
} from '../../../actions/notifications';
|
2016-10-07 15:01:22 -07:00
|
|
|
import { getNotifications } from '../../../selectors';
|
2016-09-12 10:20:55 -07:00
|
|
|
|
2016-09-21 13:07:18 -07:00
|
|
|
const mapStateToProps = (state, props) => ({
|
2016-10-07 15:01:22 -07:00
|
|
|
notifications: getNotifications(state)
|
2016-09-21 13:07:18 -07:00
|
|
|
});
|
2016-09-12 10:20:55 -07:00
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
return {
|
|
|
|
onDismiss: notifiction => {
|
|
|
|
dispatch(dismissNotification(notifiction));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);
|