mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
118 lines
3.6 KiB
JavaScript
118 lines
3.6 KiB
JavaScript
|
import React, { Component } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import Identicon from '../identicon'
|
||
|
import Tooltip from '../tooltip-v2'
|
||
|
import copyToClipboard from 'copy-to-clipboard'
|
||
|
|
||
|
export default class SenderToRecipient extends Component {
|
||
|
static propTypes = {
|
||
|
senderName: PropTypes.string,
|
||
|
senderAddress: PropTypes.string,
|
||
|
recipientName: PropTypes.string,
|
||
|
recipientAddress: PropTypes.string,
|
||
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
state = {
|
||
|
senderAddressCopied: false,
|
||
|
recipientAddressCopied: false,
|
||
|
}
|
||
|
|
||
|
renderRecipientWithAddress () {
|
||
|
const { t } = this.context
|
||
|
const { recipientName, recipientAddress } = this.props
|
||
|
|
||
|
return (
|
||
|
<div
|
||
|
className="sender-to-recipient__recipient sender-to-recipient__recipient--with-address"
|
||
|
onClick={() => {
|
||
|
this.setState({ recipientAddressCopied: true })
|
||
|
copyToClipboard(recipientAddress)
|
||
|
}}
|
||
|
>
|
||
|
<div className="sender-to-recipient__sender-icon">
|
||
|
<Identicon
|
||
|
address={recipientAddress}
|
||
|
diameter={24}
|
||
|
/>
|
||
|
</div>
|
||
|
<Tooltip
|
||
|
position="bottom"
|
||
|
title={this.state.recipientAddressCopied ? t('copiedExclamation') : t('copyAddress')}
|
||
|
wrapperClassName="sender-to-recipient__tooltip-wrapper"
|
||
|
containerClassName="sender-to-recipient__tooltip-container"
|
||
|
onHidden={() => this.setState({ recipientAddressCopied: false })}
|
||
|
>
|
||
|
<div className="sender-to-recipient__name sender-to-recipient__recipient-name">
|
||
|
{ recipientName || this.context.t('newContract') }
|
||
|
</div>
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
renderRecipientWithoutAddress () {
|
||
|
return (
|
||
|
<div className="sender-to-recipient__recipient">
|
||
|
<i className="fa fa-file-text-o" />
|
||
|
<div className="sender-to-recipient__name sender-to-recipient__recipient-name">
|
||
|
{ this.context.t('newContract') }
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { t } = this.context
|
||
|
const { senderName, senderAddress, recipientAddress } = this.props
|
||
|
|
||
|
return (
|
||
|
<div className="sender-to-recipient__container">
|
||
|
<div
|
||
|
className="sender-to-recipient__sender"
|
||
|
onClick={() => {
|
||
|
this.setState({ senderAddressCopied: true })
|
||
|
copyToClipboard(senderAddress)
|
||
|
}}
|
||
|
>
|
||
|
<div className="sender-to-recipient__sender-icon">
|
||
|
<Identicon
|
||
|
address={senderAddress}
|
||
|
diameter={24}
|
||
|
/>
|
||
|
</div>
|
||
|
<Tooltip
|
||
|
position="bottom"
|
||
|
title={this.state.senderAddressCopied ? t('copiedExclamation') : t('copyAddress')}
|
||
|
wrapperClassName="sender-to-recipient__tooltip-wrapper"
|
||
|
containerClassName="sender-to-recipient__tooltip-container"
|
||
|
onHidden={() => this.setState({ senderAddressCopied: false })}
|
||
|
>
|
||
|
<div className="sender-to-recipient__name sender-to-recipient__sender-name">
|
||
|
{ senderName }
|
||
|
</div>
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
<div className="sender-to-recipient__arrow-container">
|
||
|
<div className="sender-to-recipient__arrow-circle">
|
||
|
<img
|
||
|
height={15}
|
||
|
width={15}
|
||
|
src="./images/arrow-right.svg"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
{
|
||
|
recipientAddress
|
||
|
? this.renderRecipientWithAddress()
|
||
|
: this.renderRecipientWithoutAddress()
|
||
|
}
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|