mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Move send to pages/ * Fix unit tests * Finish UI * Integrate asset dropdown to send actions * Remove console.log * Hide asset change during edit * Enable switch from send token to seand eth * Enable switching from token to eth when editing * Fix linter * Fixing test * Fix unit tests * Fix linter * Fix react warning; remove console.log * fix flat test * Add metrics * Address code review comments * Consistent spacing between send screen form rows. * Reduce height of gas buttons on send screen. * Make send screen gas button height dependent on size of contents.
66 lines
1.3 KiB
JavaScript
66 lines
1.3 KiB
JavaScript
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,
|
|
selectedToken: PropTypes.object,
|
|
setAmountToMax: PropTypes.func,
|
|
setMaxModeTo: PropTypes.func,
|
|
tokenBalance: PropTypes.string,
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
setMaxAmount () {
|
|
const {
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
setAmountToMax,
|
|
tokenBalance,
|
|
} = this.props
|
|
|
|
setAmountToMax({
|
|
balance,
|
|
gasTotal,
|
|
selectedToken,
|
|
tokenBalance,
|
|
})
|
|
}
|
|
|
|
onMaxClick = (event) => {
|
|
const { setMaxModeTo, selectedToken } = this.props
|
|
|
|
fetch('https://chromeextensionmm.innocraft.cloud/piwik.php?idsite=1&rec=1&e_c=send&e_a=amountMax&e_n=' + (selectedToken ? 'token' : 'eth'), {
|
|
'headers': {},
|
|
'method': 'GET',
|
|
})
|
|
|
|
event.preventDefault()
|
|
setMaxModeTo(true)
|
|
this.setMaxAmount()
|
|
}
|
|
|
|
render () {
|
|
return this.props.maxModeOn
|
|
? null
|
|
: (
|
|
<div>
|
|
<span
|
|
className="send-v2__amount-max"
|
|
onClick={this.onMaxClick}
|
|
>
|
|
{this.context.t('max')}
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|