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-11-20 10:39:18 -08:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { NotificationStack } from 'react-notification';
|
2017-12-03 23:26:40 -08:00
|
|
|
import { dismissAlert } from 'flavours/glitch/actions/alerts';
|
|
|
|
import { getAlerts } from 'flavours/glitch/selectors';
|
2016-09-12 10:20:55 -07:00
|
|
|
|
2017-06-23 07:05:04 -07:00
|
|
|
const mapStateToProps = state => ({
|
2017-05-20 08:31:47 -07:00
|
|
|
notifications: getAlerts(state),
|
2016-09-21 13:07:18 -07:00
|
|
|
});
|
2016-09-12 10:20:55 -07:00
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
return {
|
2016-11-20 10:39:18 -08:00
|
|
|
onDismiss: alert => {
|
|
|
|
dispatch(dismissAlert(alert));
|
2017-05-20 08:31:47 -07:00
|
|
|
},
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);
|