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