2018-03-04 20:46:27 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import IconButton from './icon_button';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
2020-03-09 08:13:21 +00:00
|
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' },
|
2018-03-04 20:46:27 +00:00
|
|
|
});
|
|
|
|
|
2019-09-09 13:16:08 +00:00
|
|
|
export default @injectIntl
|
|
|
|
class Account extends ImmutablePureComponent {
|
2018-03-04 20:46:27 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
domain: PropTypes.string,
|
|
|
|
onUnblockDomain: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleDomainUnblock = () => {
|
|
|
|
this.props.onUnblockDomain(this.props.domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { domain, intl } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='domain'>
|
|
|
|
<div className='domain__wrapper'>
|
|
|
|
<span className='domain__domain-name'>
|
|
|
|
<strong>{domain}</strong>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<div className='domain__buttons'>
|
2019-02-01 15:15:44 +00:00
|
|
|
<IconButton active icon='unlock' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} />
|
2018-03-04 20:46:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|