This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/features/notifications/containers/notification_container.js

27 lines
795 B
JavaScript
Raw Normal View History

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