mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
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,
|
|
selectedToken: PropTypes.object,
|
|
setAmountToMax: PropTypes.func,
|
|
setMaxModeTo: PropTypes.func,
|
|
tokenBalance: PropTypes.string,
|
|
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
}
|
|
|
|
setMaxAmount () {
|
|
const {
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
setAmountToMax,
|
|
tokenBalance,
|
|
} = this.props
|
|
|
|
setAmountToMax({
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
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(true)
|
|
this.setMaxAmount()
|
|
} else {
|
|
setMaxModeTo(false)
|
|
clearMaxAmount()
|
|
}
|
|
}
|
|
|
|
render () {
|
|
const { maxModeOn, buttonDataLoading, inError } = this.props
|
|
|
|
return (
|
|
<div className={'send-v2__amount-max'} onClick={buttonDataLoading || inError ? null : this.onMaxClick}>
|
|
<input type="checkbox" checked={maxModeOn} />
|
|
<div className={classnames('send-v2__amount-max__button', { 'send-v2__amount-max__button__disabled': buttonDataLoading || inError })}>
|
|
{this.context.t('max')}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|