mastodon/app/javascript/themes/glitch/features/notifications/containers/notification_container.js
2017-11-17 19:29:16 -08:00

28 lines
834 B
JavaScript

// Package imports.
import { connect } from 'react-redux';
// Our imports.
import { makeGetNotification } from 'themes/glitch/selectors';
import Notification from '../components/notification';
import { mentionCompose } from 'themes/glitch/actions/compose';
const makeMapStateToProps = () => {
const getNotification = makeGetNotification();
const mapStateToProps = (state, props) => ({
notification: getNotification(state, props.notification, props.accountId),
settings: state.get('local_settings'),
notifCleaning: state.getIn(['notifications', 'cleaningMode']),
});
return mapStateToProps;
};
const mapDispatchToProps = dispatch => ({
onMention: (account, router) => {
dispatch(mentionCompose(account, router));
},
});
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);