about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/report/components/status_check_box.js
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2023-04-14 19:22:47 -0500
committerStarfall <us@starfall.systems>2023-04-14 19:22:47 -0500
commit4fe1689de43f4404eb9530fcfbcbfb26d6c1c13a (patch)
tree6811b845bb7f4966b10dcefa3dea404246f161c7 /app/javascript/flavours/glitch/features/report/components/status_check_box.js
parent65c1e53a32cabcdbb7bca57002bb0f6acdebe07e (diff)
parentbed63f6dae0879ac840066b031229e0d139089cd (diff)
Merge remote-tracking branch 'glitch/main' HEAD main
Diffstat (limited to 'app/javascript/flavours/glitch/features/report/components/status_check_box.js')
-rw-r--r--app/javascript/flavours/glitch/features/report/components/status_check_box.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/app/javascript/flavours/glitch/features/report/components/status_check_box.js b/app/javascript/flavours/glitch/features/report/components/status_check_box.js
deleted file mode 100644
index 2231fc0ce..000000000
--- a/app/javascript/flavours/glitch/features/report/components/status_check_box.js
+++ /dev/null
@@ -1,60 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import ImmutablePropTypes from 'react-immutable-proptypes';
-import StatusContent from 'flavours/glitch/components/status_content';
-import Avatar from 'flavours/glitch/components/avatar';
-import DisplayName from 'flavours/glitch/components/display_name';
-import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp';
-import Option from './option';
-import MediaAttachments from 'flavours/glitch/components/media_attachments';
-import VisibilityIcon from 'flavours/glitch/components/status_visibility_icon';
-
-export default class StatusCheckBox extends React.PureComponent {
-
-  static propTypes = {
-    id: PropTypes.string.isRequired,
-    status: ImmutablePropTypes.map.isRequired,
-    checked: PropTypes.bool,
-    onToggle: PropTypes.func.isRequired,
-  };
-
-  handleStatusesToggle = (value, checked) => {
-    const { onToggle } = this.props;
-    onToggle(value, checked);
-  };
-
-  render () {
-    const { status, checked } = this.props;
-
-    if (status.get('reblog')) {
-      return null;
-    }
-
-    const labelComponent = (
-      <div className='status-check-box__status poll__option__text'>
-        <div className='detailed-status__display-name'>
-          <div className='detailed-status__display-avatar'>
-            <Avatar account={status.get('account')} size={46} />
-          </div>
-
-          <div><DisplayName account={status.get('account')} /> · <VisibilityIcon visibility={status.get('visibility')} /><RelativeTimestamp timestamp={status.get('created_at')} /></div>
-        </div>
-
-        <StatusContent status={status} media={<MediaAttachments status={status} revealed={false} />} />
-      </div>
-    );
-
-    return (
-      <Option
-        name='status_ids'
-        value={status.get('id')}
-        checked={checked}
-        onToggle={this.handleStatusesToggle}
-        label={status.get('search_index')}
-        labelComponent={labelComponent}
-        multiple
-      />
-    );
-  }
-
-}