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.
96 lines
2.3 KiB
96 lines
2.3 KiB
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
|
import AmountMaxButton from './amount-max-button/amount-max-button.component'
|
|
import CurrencyDisplay from '../../../send/currency-display'
|
|
|
|
export default class SendAmountRow extends Component {
|
|
|
|
static propTypes = {
|
|
amount: PropTypes.string,
|
|
amountConversionRate: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
balance: PropTypes.string,
|
|
conversionRate: PropTypes.number,
|
|
convertedCurrency: PropTypes.string,
|
|
gasTotal: PropTypes.string,
|
|
inError: PropTypes.bool,
|
|
primaryCurrency: PropTypes.string,
|
|
selectedToken: PropTypes.object,
|
|
setMaxModeTo: PropTypes.func,
|
|
tokenBalance: PropTypes.string,
|
|
updateSendAmount: PropTypes.func,
|
|
updateSendAmountError: PropTypes.func,
|
|
}
|
|
|
|
validateAmount (amount) {
|
|
const {
|
|
amountConversionRate,
|
|
balance,
|
|
conversionRate,
|
|
gasTotal,
|
|
primaryCurrency,
|
|
selectedToken,
|
|
tokenBalance,
|
|
updateSendAmountError,
|
|
} = this.props
|
|
|
|
updateSendAmountError({
|
|
amount,
|
|
amountConversionRate,
|
|
balance,
|
|
conversionRate,
|
|
gasTotal,
|
|
primaryCurrency,
|
|
selectedToken,
|
|
tokenBalance,
|
|
})
|
|
}
|
|
|
|
handleAmountChange (amount) {
|
|
const { updateSendAmount, setMaxModeTo } = this.props
|
|
|
|
setMaxModeTo(false)
|
|
this.validateAmount(amount)
|
|
updateSendAmount(amount)
|
|
}
|
|
|
|
render () {
|
|
const {
|
|
amount,
|
|
amountConversionRate,
|
|
convertedCurrency,
|
|
gasTotal,
|
|
inError,
|
|
primaryCurrency = 'ETH',
|
|
selectedToken,
|
|
} = this.props
|
|
|
|
return (
|
|
<SendRowWrapper
|
|
label={`${this.context.t('amount')}:`}
|
|
showError={inError}
|
|
errorType={'amount'}
|
|
>
|
|
{!inError && gasTotal && <AmountMaxButton />}
|
|
<CurrencyDisplay
|
|
conversionRate={amountConversionRate}
|
|
convertedCurrency={convertedCurrency}
|
|
handleChange={newAmount => this.handleAmountChange(newAmount)}
|
|
inError={inError}
|
|
primaryCurrency={primaryCurrency}
|
|
selectedToken={selectedToken}
|
|
value={amount || '0x0'}
|
|
/>
|
|
</SendRowWrapper>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
SendAmountRow.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
|