mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
|
/*
|
||
|
|
||
|
`<NotificationPurgeButtonsContainer>`
|
||
|
=========================
|
||
|
|
||
|
This container connects `<NotificationPurgeButtons>`s to the Redux store.
|
||
|
|
||
|
*/
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
|
|
||
|
/*
|
||
|
|
||
|
Imports:
|
||
|
--------
|
||
|
|
||
|
*/
|
||
|
|
||
|
// Package imports //
|
||
|
import { connect } from 'react-redux';
|
||
|
|
||
|
// Our imports //
|
||
|
import NotificationPurgeButtons from './notification_purge_buttons';
|
||
|
import {
|
||
|
deleteMarkedNotifications,
|
||
|
enterNotificationClearingMode,
|
||
|
} 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 => ({
|
||
|
onEnterCleaningMode(yes) {
|
||
|
dispatch(enterNotificationClearingMode(yes));
|
||
|
},
|
||
|
|
||
|
onDeleteMarkedNotifications() {
|
||
|
dispatch(deleteMarkedNotifications());
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const mapStateToProps = state => ({
|
||
|
active: state.getIn(['notifications', 'cleaningMode']),
|
||
|
});
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(NotificationPurgeButtons);
|