import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; export default class AmountMaxButton extends Component { static propTypes = { balance: PropTypes.string, buttonDataLoading: PropTypes.bool, clearMaxAmount: PropTypes.func, inError: PropTypes.bool, gasTotal: PropTypes.string, maxModeOn: PropTypes.bool, sendToken: PropTypes.object, setAmountToMax: PropTypes.func, setMaxModeTo: PropTypes.func, tokenBalance: PropTypes.string, }; static contextTypes = { t: PropTypes.func, metricsEvent: PropTypes.func, }; setMaxAmount() { const { balance, gasTotal, sendToken, setAmountToMax, tokenBalance, } = this.props; setAmountToMax({ balance, gasTotal, sendToken, tokenBalance, }); } onMaxClick = () => { const { setMaxModeTo, clearMaxAmount, maxModeOn } = this.props; const { metricsEvent } = this.context; metricsEvent({ eventOpts: { category: 'Transactions', action: 'Edit Screen', name: 'Clicked "Amount Max"', }, }); if (maxModeOn) { setMaxModeTo(false); clearMaxAmount(); } else { setMaxModeTo(true); this.setMaxAmount(); } }; render() { const { maxModeOn, buttonDataLoading, inError } = this.props; return (
{this.context.t('max')}
); } }