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/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js

81 lines
1.8 KiB

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 (
<div
className="send-v2__amount-max"
onClick={buttonDataLoading || inError ? null : this.onMaxClick}
>
<input type="checkbox" checked={maxModeOn} readOnly />
<div
className={classnames('send-v2__amount-max__button', {
'send-v2__amount-max__button__disabled':
buttonDataLoading || inError,
})}
>
{this.context.t('max')}
</div>
</div>
);
}
}