about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/report
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/features/report')
-rw-r--r--app/javascript/themes/glitch/features/report/components/status_check_box.js37
-rw-r--r--app/javascript/themes/glitch/features/report/containers/status_check_box_container.js19
2 files changed, 0 insertions, 56 deletions
diff --git a/app/javascript/themes/glitch/features/report/components/status_check_box.js b/app/javascript/themes/glitch/features/report/components/status_check_box.js
deleted file mode 100644
index cc9232201..000000000
--- a/app/javascript/themes/glitch/features/report/components/status_check_box.js
+++ /dev/null
@@ -1,37 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import ImmutablePropTypes from 'react-immutable-proptypes';
-import Toggle from 'react-toggle';
-
-export default class StatusCheckBox extends React.PureComponent {
-
-  static propTypes = {
-    status: ImmutablePropTypes.map.isRequired,
-    checked: PropTypes.bool,
-    onToggle: PropTypes.func.isRequired,
-    disabled: PropTypes.bool,
-  };
-
-  render () {
-    const { status, checked, onToggle, disabled } = this.props;
-    const content = { __html: status.get('contentHtml') };
-
-    if (status.get('reblog')) {
-      return null;
-    }
-
-    return (
-      <div className='status-check-box'>
-        <div
-          className='status__content'
-          dangerouslySetInnerHTML={content}
-        />
-
-        <div className='status-check-box-toggle'>
-          <Toggle checked={checked} onChange={onToggle} disabled={disabled} />
-        </div>
-      </div>
-    );
-  }
-
-}
diff --git a/app/javascript/themes/glitch/features/report/containers/status_check_box_container.js b/app/javascript/themes/glitch/features/report/containers/status_check_box_container.js
deleted file mode 100644
index 40d55fb3c..000000000
--- a/app/javascript/themes/glitch/features/report/containers/status_check_box_container.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import { connect } from 'react-redux';
-import StatusCheckBox from '../components/status_check_box';
-import { toggleStatusReport } from 'themes/glitch/actions/reports';
-import { Set as ImmutableSet } from 'immutable';
-
-const mapStateToProps = (state, { id }) => ({
-  status: state.getIn(['statuses', id]),
-  checked: state.getIn(['reports', 'new', 'status_ids'], ImmutableSet()).includes(id),
-});
-
-const mapDispatchToProps = (dispatch, { id }) => ({
-
-  onToggle (e) {
-    dispatch(toggleStatusReport(id, e.target.checked));
-  },
-
-});
-
-export default connect(mapStateToProps, mapDispatchToProps)(StatusCheckBox);