From 0fb4c9bd40b8ef39dc4f66969a63d282924021eb Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 26 Apr 2022 13:03:41 -0400 Subject: [PATCH] Convert ReportModal to TSX --- .../features/ui/components/report_modal.js | 161 ------------------ .../features/ui/components/report_modal.tsx | 129 ++++++++++++++ app/soapbox/hooks/index.ts | 1 + app/soapbox/hooks/useAccount.ts | 6 + 4 files changed, 136 insertions(+), 161 deletions(-) delete mode 100644 app/soapbox/features/ui/components/report_modal.js create mode 100644 app/soapbox/features/ui/components/report_modal.tsx create mode 100644 app/soapbox/hooks/useAccount.ts diff --git a/app/soapbox/features/ui/components/report_modal.js b/app/soapbox/features/ui/components/report_modal.js deleted file mode 100644 index 2dcdd03d7..000000000 --- a/app/soapbox/features/ui/components/report_modal.js +++ /dev/null @@ -1,161 +0,0 @@ -import { OrderedSet } from 'immutable'; -import PropTypes from 'prop-types'; -import React from 'react'; -import ImmutablePropTypes from 'react-immutable-proptypes'; -import ImmutablePureComponent from 'react-immutable-pure-component'; -import { defineMessages, FormattedMessage, injectIntl } from 'react-intl'; -import { connect } from 'react-redux'; -import Toggle from 'react-toggle'; - -import { blockAccount } from 'soapbox/actions/accounts'; -import { changeReportComment, changeReportForward, changeReportBlock, submitReport } from 'soapbox/actions/reports'; -import { expandAccountTimeline } from 'soapbox/actions/timelines'; -import { Button, Modal } from 'soapbox/components/ui'; -import { makeGetAccount } from 'soapbox/selectors'; -import { isRemote, getDomain } from 'soapbox/utils/accounts'; -import { getFeatures } from 'soapbox/utils/features'; - - -import StatusCheckBox from '../../report/containers/status_check_box_container'; - -const messages = defineMessages({ - close: { id: 'lightbox.close', defaultMessage: 'Close' }, - placeholder: { id: 'report.placeholder', defaultMessage: 'Additional comments' }, - submit: { id: 'report.submit', defaultMessage: 'Submit' }, -}); - -const makeMapStateToProps = () => { - const getAccount = makeGetAccount(); - - const mapStateToProps = state => { - const accountId = state.getIn(['reports', 'new', 'account_id']); - const account = getAccount(state, accountId); - const instance = state.get('instance'); - const features = getFeatures(instance); - - return { - isSubmitting: state.getIn(['reports', 'new', 'isSubmitting']), - account, - comment: state.getIn(['reports', 'new', 'comment']), - forward: state.getIn(['reports', 'new', 'forward']), - block: state.getIn(['reports', 'new', 'block']), - statusIds: OrderedSet(state.getIn(['timelines', `account:${accountId}:with_replies`, 'items'])).union(state.getIn(['reports', 'new', 'status_ids'])), - canForward: isRemote(account) && features.federating, - }; - }; - - return mapStateToProps; -}; - -export default @connect(makeMapStateToProps) -@injectIntl -class ReportModal extends ImmutablePureComponent { - - static propTypes = { - isSubmitting: PropTypes.bool, - account: ImmutablePropTypes.record, - statusIds: ImmutablePropTypes.orderedSet.isRequired, - comment: PropTypes.string.isRequired, - forward: PropTypes.bool, - block: PropTypes.bool, - canForward: PropTypes.bool, - dispatch: PropTypes.func.isRequired, - intl: PropTypes.object.isRequired, - }; - - handleCommentChange = e => { - this.props.dispatch(changeReportComment(e.target.value)); - } - - handleForwardChange = e => { - this.props.dispatch(changeReportForward(e.target.checked)); - } - - handleBlockChange = e => { - this.props.dispatch(changeReportBlock(e.target.checked)); - } - - handleSubmit = () => { - this.props.dispatch(submitReport()); - if (this.props.block) { - this.props.dispatch(blockAccount(this.props.account.get('id'))); - } - } - - handleKeyDown = e => { - if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) { - this.handleSubmit(); - } - } - - componentDidMount() { - this.props.dispatch(expandAccountTimeline(this.props.account.get('id'), { withReplies: true })); - } - - componentDidUpdate(prevProps) { - const { account } = this.props; - if (prevProps.account !== account && account) { - this.props.dispatch(expandAccountTimeline(account.get('id'), { withReplies: true })); - } - } - - render() { - const { account, comment, intl, statusIds, isSubmitting, forward, block, canForward, onClose } = this.props; - - if (!account) { - return null; - } - - return ( - {account.get('acct')} }} />} - onClose={onClose} - > -
-
-

- -