2017-11-18 04:11:18 +01:00
|
|
|
// Package imports.
|
2017-07-12 10:10:17 +02:00
|
|
|
import { connect } from 'react-redux';
|
2017-11-18 04:11:18 +01:00
|
|
|
|
|
|
|
// Our imports.
|
2017-12-04 08:26:40 +01:00
|
|
|
import { makeGetNotification } from 'flavours/glitch/selectors';
|
2017-07-12 10:10:17 +02:00
|
|
|
import Notification from '../components/notification';
|
2017-12-04 08:26:40 +01:00
|
|
|
import { mentionCompose } from 'flavours/glitch/actions/compose';
|
2017-07-12 10:10:17 +02:00
|
|
|
|
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getNotification = makeGetNotification();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
|
|
notification: getNotification(state, props.notification, props.accountId),
|
2017-11-18 04:11:18 +01:00
|
|
|
notifCleaning: state.getIn(['notifications', 'cleaningMode']),
|
2017-07-12 10:10:17 +02: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);
|