2016-11-20 19:39:18 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { makeGetNotification } from '../../../selectors';
|
|
|
|
import Notification from '../components/notification';
|
2017-10-06 01:07:59 +02:00
|
|
|
import { mentionCompose } from '../../../actions/compose';
|
2016-11-20 19:39:18 +01:00
|
|
|
|
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getNotification = makeGetNotification();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
2017-05-20 17:31:47 +02:00
|
|
|
notification: getNotification(state, props.notification, props.accountId),
|
2016-11-20 19:39:18 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2017-10-06 01:07:59 +02:00
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onMention: (account, router) => {
|
|
|
|
dispatch(mentionCompose(account, router));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);
|