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.
54 lines
1.0 KiB
54 lines
1.0 KiB
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
export default class AmountMaxButton extends Component {
|
|
|
|
static propTypes = {
|
|
balance: PropTypes.string,
|
|
gasTotal: PropTypes.string,
|
|
maxModeOn: PropTypes.bool,
|
|
selectedToken: PropTypes.object,
|
|
setAmountToMax: PropTypes.func,
|
|
setMaxModeTo: PropTypes.func,
|
|
tokenBalance: PropTypes.string,
|
|
};
|
|
|
|
setMaxAmount () {
|
|
const {
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
setAmountToMax,
|
|
tokenBalance,
|
|
} = this.props
|
|
|
|
setAmountToMax({
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
tokenBalance,
|
|
})
|
|
}
|
|
|
|
render () {
|
|
const { setMaxModeTo, maxModeOn } = this.props
|
|
|
|
return (
|
|
<div
|
|
className="send-v2__amount-max"
|
|
onClick={(event) => {
|
|
event.preventDefault()
|
|
setMaxModeTo(true)
|
|
this.setMaxAmount()
|
|
}}
|
|
>
|
|
{!maxModeOn ? this.context.t('max') : ''}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
AmountMaxButton.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|