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 { isRemote, getDomain } from 'soapbox/utils/accounts'; import { getFeatures } from 'soapbox/utils/features'; import { blockAccount } from '../../../actions/accounts'; import { changeReportComment, changeReportForward, changeReportBlock, submitReport } from '../../../actions/reports'; import { expandAccountTimeline } from '../../../actions/timelines'; import IconButton from '../../../components/icon_button'; import { Button } from '../../../components/ui'; import { makeGetAccount } from '../../../selectors'; 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')} }} />