2017-07-12 17:02:51 +09:00
|
|
|
// Package imports //
|
2016-11-21 03:39:18 +09:00
|
|
|
import { connect } from 'react-redux';
|
2017-07-12 17:02:51 +09:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import { makeGetNotification } from '../../../mastodon/selectors';
|
|
|
|
|
|
|
|
// Our imports //
|
2017-07-13 18:40:16 +09:00
|
|
|
import Notification from '.';
|
2017-07-15 00:03:43 +09:00
|
|
|
import { deleteNotification } from '../../../mastodon/actions/notifications';
|
2016-11-21 03:39:18 +09:00
|
|
|
|
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getNotification = makeGetNotification();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
2017-05-21 00:31:47 +09:00
|
|
|
notification: getNotification(state, props.notification, props.accountId),
|
2017-06-29 14:00:54 +09:00
|
|
|
settings: state.get('local_settings'),
|
2016-11-21 03:39:18 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2017-07-15 00:03:43 +09:00
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
onDeleteNotification (id) {
|
|
|
|
dispatch(deleteNotification(id));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);
|