about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-06-27 09:30:15 +0200
committerClaire <claire.github-309c@sitedethib.com>2022-06-28 13:13:10 +0200
commit485b43ed7e312ab2c3bad446132c57d6a0ce7de4 (patch)
tree78cee27bfe871569f3ae2e7aa62d847fe9df7046 /app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js
parentf218e633b4c2a14971bd84de34ad484d8b61cc5f (diff)
[Glitch] Add notifications for new reports
Port 2936f42a14cfdca70d4a9653dab29382315945e7 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js')
-rw-r--r--app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js b/app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js
new file mode 100644
index 000000000..4198afce8
--- /dev/null
+++ b/app/javascript/flavours/glitch/features/notifications/containers/admin_report_container.js
@@ -0,0 +1,13 @@
+import { connect } from 'react-redux';
+import { makeGetReport } from 'flavours/glitch/selectors';
+import AdminReport from '../components/admin_report';
+
+const mapStateToProps = (state, { notification }) => {
+  const getReport = makeGetReport();
+
+  return {
+    report: notification.get('report') ? getReport(state, notification.get('report'), notification.getIn(['report', 'target_account', 'id'])) : null,
+  };
+};
+
+export default connect(mapStateToProps)(AdminReport);