A Metamask fork with Infura removed and default networks editable
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.
ciphermask/ui/app/components/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js

61 lines
1.1 KiB

7 years ago
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,
7 years ago
selectedToken: PropTypes.object,
setAmountToMax: PropTypes.func,
setMaxModeTo: PropTypes.func,
tokenBalance: PropTypes.string,
7 years ago
};
static contextTypes = {
t: PropTypes.func,
};
setMaxAmount () {
7 years ago
const {
balance,
gasTotal,
selectedToken,
7 years ago
setAmountToMax,
tokenBalance,
7 years ago
} = this.props
setAmountToMax({
balance,
7 years ago
gasTotal,
selectedToken,
tokenBalance,
7 years ago
})
}
onMaxClick = (event) => {
const { setMaxModeTo } = this.props
event.preventDefault()
setMaxModeTo(true)
this.setMaxAmount()
}
7 years ago
render () {
return this.props.maxModeOn
? null
: (
<div>
<span
className="send-v2__amount-max"
onClick={this.onMaxClick}
>
{this.context.t('max')}
</span>
</div>
)
7 years ago
}
}