2017-07-14 20:13:02 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
`<NotificationContainer>`
|
|
|
|
=========================
|
|
|
|
|
|
|
|
This container connects `<Notification>`s to the Redux store.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
--------
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-07-12 10:02:51 +02:00
|
|
|
// Package imports //
|
2016-11-20 19:39:18 +01:00
|
|
|
import { connect } from 'react-redux';
|
2017-07-12 10:02:51 +02:00
|
|
|
|
|
|
|
// Our imports //
|
2017-07-13 11:40:16 +02:00
|
|
|
import Notification from '.';
|
2016-11-20 19:39:18 +01:00
|
|
|
|
2017-07-14 20:13:02 +02:00
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
2017-10-05 21:55:02 +02:00
|
|
|
const mapStateToProps = (state, props) => {
|
|
|
|
// replace account id with object
|
|
|
|
let leNotif = props.notification.set('account', state.getIn(['accounts', props.notification.get('account')]));
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-10-05 21:55:02 +02:00
|
|
|
// populate markedForDelete from state - is mysteriously lost somewhere
|
|
|
|
for (let n of state.getIn(['notifications', 'items'])) {
|
|
|
|
if (n.get('id') === props.notification.get('id')) {
|
|
|
|
leNotif = leNotif.set('markedForDelete', n.get('markedForDelete'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-10-05 21:55:02 +02:00
|
|
|
return ({
|
|
|
|
notification: leNotif,
|
2017-06-29 07:00:54 +02:00
|
|
|
settings: state.get('local_settings'),
|
2017-07-30 18:36:28 +02:00
|
|
|
notifCleaning: state.getIn(['notifications', 'cleaningMode']),
|
2016-11-20 19:39:18 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-07-14 20:13:02 +02:00
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
|
2017-10-05 21:55:02 +02:00
|
|
|
export default connect(mapStateToProps)(Notification);
|