mastodon/app/javascript/themes/glitch/features/notifications/containers/notification_container.js

28 lines
834 B
JavaScript
Raw Normal View History

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