about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/notifications/containers/notification_container.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/features/notifications/containers/notification_container.js')
-rw-r--r--app/javascript/themes/glitch/features/notifications/containers/notification_container.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/javascript/themes/glitch/features/notifications/containers/notification_container.js b/app/javascript/themes/glitch/features/notifications/containers/notification_container.js
deleted file mode 100644
index b61aaa21c..000000000
--- a/app/javascript/themes/glitch/features/notifications/containers/notification_container.js
+++ /dev/null
@@ -1,27 +0,0 @@
-//  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);