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.1 KiB

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