2017-11-14 21:56:41 -05:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import Toggle from 'react-toggle';
|
|
|
|
import Button from '../../../components/button';
|
|
|
|
import { closeModal } from '../../../actions/modal';
|
|
|
|
import { muteAccount } from '../../../actions/accounts';
|
|
|
|
import { toggleHideNotifications } from '../../../actions/mutes';
|
|
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
|
|
|
return {
|
|
|
|
account: state.getIn(['mutes', 'new', 'account']),
|
|
|
|
notifications: state.getIn(['mutes', 'new', 'notifications']),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
onConfirm(account, notifications) {
|
|
|
|
dispatch(muteAccount(account.get('id'), notifications));
|
|
|
|
},
|
|
|
|
|
|
|
|
onClose() {
|
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
|
|
|
|
onToggleNotifications() {
|
|
|
|
dispatch(toggleHideNotifications());
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @connect(mapStateToProps, mapDispatchToProps)
|
2017-11-14 21:56:41 -05:00
|
|
|
@injectIntl
|
2018-09-14 11:59:48 -04:00
|
|
|
class MuteModal extends React.PureComponent {
|
2017-11-14 21:56:41 -05:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: PropTypes.object.isRequired,
|
|
|
|
notifications: PropTypes.bool.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
onConfirm: PropTypes.func.isRequired,
|
|
|
|
onToggleNotifications: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.button.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
this.props.onClose();
|
|
|
|
this.props.onConfirm(this.props.account, this.props.notifications);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancel = () => {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = (c) => {
|
|
|
|
this.button = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleNotifications = () => {
|
|
|
|
this.props.onToggleNotifications();
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { account, notifications } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal mute-modal'>
|
|
|
|
<div className='mute-modal__container'>
|
|
|
|
<p>
|
|
|
|
<FormattedMessage
|
|
|
|
id='confirmations.mute.message'
|
|
|
|
defaultMessage='Are you sure you want to mute {name}?'
|
|
|
|
values={{ name: <strong>@{account.get('acct')}</strong> }}
|
|
|
|
/>
|
|
|
|
</p>
|
2019-09-29 15:46:05 -04:00
|
|
|
<p className='mute-modal__explanation'>
|
|
|
|
<FormattedMessage
|
|
|
|
id='confirmations.mute.explanation'
|
2019-10-01 17:55:11 -04:00
|
|
|
defaultMessage='This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.'
|
2019-09-29 15:46:05 -04:00
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<div className='setting-toggle'>
|
|
|
|
<Toggle id='mute-modal__hide-notifications-checkbox' checked={notifications} onChange={this.toggleNotifications} />
|
|
|
|
<label className='setting-toggle__label' htmlFor='mute-modal__hide-notifications-checkbox'>
|
2017-11-14 21:56:41 -05:00
|
|
|
<FormattedMessage id='mute_modal.hide_notifications' defaultMessage='Hide notifications from this user?' />
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='mute-modal__action-bar'>
|
|
|
|
<Button onClick={this.handleCancel} className='mute-modal__cancel-button'>
|
|
|
|
<FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' />
|
|
|
|
</Button>
|
|
|
|
<Button onClick={this.handleClick} ref={this.setRef}>
|
|
|
|
<FormattedMessage id='confirmations.mute.confirm' defaultMessage='Mute' />
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|