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

55 lines
1.0 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
};
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
})
}
render () {
const { setMaxModeTo, maxModeOn } = this.props
7 years ago
return (
<div
className="send-v2__amount-max"
7 years ago
onClick={(event) => {
event.preventDefault()
setMaxModeTo(true)
this.setMaxAmount()
7 years ago
}}
>
{!maxModeOn ? this.context.t('max') : ''}
7 years ago
</div>
)
7 years ago
}
}
AmountMaxButton.contextTypes = {
t: PropTypes.func,
}