You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
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({ |
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' }, |
|
}); |
|
|
|
export default @injectIntl |
|
class Account extends ImmutablePureComponent { |
|
|
|
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'> |
|
<IconButton active icon='unlock' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} /> |
|
</div> |
|
</div> |
|
</div> |
|
); |
|
} |
|
|
|
}
|
|
|