mastodon/app/javascript/themes/glitch/features/ui/containers/notifications_container.js

19 lines
499 B
JavaScript
Raw Normal View History

2016-11-20 19:39:18 +01:00
import { connect } from 'react-redux';
import { NotificationStack } from 'react-notification';
2017-11-18 04:11:18 +01:00
import { dismissAlert } from 'themes/glitch/actions/alerts';
import { getAlerts } from 'themes/glitch/selectors';
2017-06-23 16:05:04 +02:00
const mapStateToProps = state => ({
notifications: getAlerts(state),
});
const mapDispatchToProps = (dispatch) => {
return {
2016-11-20 19:39:18 +01:00
onDismiss: alert => {
dispatch(dismissAlert(alert));
},
};
};
export default connect(mapStateToProps, mapDispatchToProps)(NotificationStack);