2017-07-21 20:33:16 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
`<NotificationOverlayContainer>`
|
|
|
|
=========================
|
|
|
|
|
|
|
|
This container connects `<NotificationOverlay>`s to the Redux store.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
--------
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Package imports //
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
// Our imports //
|
|
|
|
import NotificationOverlay from './notification_overlay';
|
|
|
|
import { markNotificationForDelete } from '../../../../mastodon/actions/notifications';
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Dispatch mapping:
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The `mapDispatchToProps()` function maps dispatches to our store to the
|
|
|
|
various props of our component. We only need to provide a dispatch for
|
|
|
|
deleting notifications.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onMarkForDelete(id, yes) {
|
|
|
|
dispatch(markNotificationForDelete(id, yes));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-07-30 18:36:28 +02:00
|
|
|
show: state.getIn(['notifications', 'cleaningMode']),
|
2017-07-21 20:33:16 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationOverlay);
|