2017-07-14 21:13:02 +03:00
|
|
|
/*
|
|
|
|
|
|
|
|
`<NotificationContainer>`
|
|
|
|
=========================
|
|
|
|
|
|
|
|
This container connects `<Notification>`s to the Redux store.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
--------
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-07-12 11:02:51 +03:00
|
|
|
// Package imports //
|
2016-11-20 20:39:18 +02:00
|
|
|
import { connect } from 'react-redux';
|
2017-07-12 11:02:51 +03:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import { makeGetNotification } from '../../../mastodon/selectors';
|
|
|
|
|
|
|
|
// Our imports //
|
2017-07-13 12:40:16 +03:00
|
|
|
import Notification from '.';
|
2016-11-20 20:39:18 +02:00
|
|
|
|
2017-07-14 21:13:02 +03:00
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
State mapping:
|
|
|
|
--------------
|
|
|
|
|
|
|
|
The `mapStateToProps()` function maps various state properties to the
|
|
|
|
props of our component. We wrap this in `makeMapStateToProps()` so that
|
|
|
|
we only have to call `makeGetNotification()` once instead of every
|
|
|
|
time.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-11-20 20:39:18 +02:00
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getNotification = makeGetNotification();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
2017-05-20 18:31:47 +03:00
|
|
|
notification: getNotification(state, props.notification, props.accountId),
|
2017-06-29 08:00:54 +03:00
|
|
|
settings: state.get('local_settings'),
|
2017-07-30 19:36:28 +03:00
|
|
|
notifCleaning: state.getIn(['notifications', 'cleaningMode']),
|
2016-11-20 20:39:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2017-07-14 21:13:02 +03:00
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
2017-07-21 21:33:16 +03:00
|
|
|
export default connect(makeMapStateToProps)(Notification);
|