2020-03-24 04:39:12 +00:00
|
|
|
import { injectIntl, defineMessages } from 'react-intl'
|
|
|
|
import { makeGetAccount } from '../../selectors'
|
|
|
|
import { blockAccount } from '../../actions/accounts'
|
|
|
|
import ConfirmationModal from './confirmation_modal'
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'block_title', defaultMessage: 'Block {name}' },
|
|
|
|
muteMessage: { id: 'confirmations.block.message', defaultMessage: 'Are you sure you want to block {name}?' },
|
|
|
|
block: { id: 'confirmations.block.confirm', defaultMessage: 'Block' },
|
|
|
|
})
|
|
|
|
|
|
|
|
const mapStateToProps = (state, { accountId }) => {
|
|
|
|
const getAccount = makeGetAccount()
|
|
|
|
|
|
|
|
return {
|
|
|
|
account: getAccount(state, accountId),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 23:29:19 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
onConfirm(account) {
|
|
|
|
dispatch(blockAccount(account.get('id')))
|
|
|
|
},
|
|
|
|
})
|
2020-03-24 04:39:12 +00:00
|
|
|
|
|
|
|
export default
|
|
|
|
@connect(mapStateToProps, mapDispatchToProps)
|
|
|
|
@injectIntl
|
|
|
|
class BlockAccountModal extends PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: PropTypes.object.isRequired,
|
|
|
|
onConfirm: PropTypes.func.isRequired,
|
2020-04-07 02:53:23 +01:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2020-03-24 04:39:12 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
this.props.onConfirm(this.props.account)
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-04-07 02:53:23 +01:00
|
|
|
const { account, intl, onClose } = this.props
|
2020-03-24 04:39:12 +00:00
|
|
|
|
|
|
|
const title = intl.formatMessage(messages.title, {
|
|
|
|
name: !!account ? account.get('acct') : '',
|
|
|
|
})
|
|
|
|
const message = intl.formatMessage(messages.muteMessage, {
|
|
|
|
name: !!account ? account.get('acct') : '',
|
|
|
|
})
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ConfirmationModal
|
|
|
|
title={title}
|
|
|
|
message={message}
|
|
|
|
confirm={intl.formatMessage(messages.block)}
|
|
|
|
onConfirm={this.handleClick}
|
2020-04-07 02:53:23 +01:00
|
|
|
onClose={onClose}
|
2020-03-24 04:39:12 +00:00
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|