1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 19:10:22 +01:00
metamask-extension/ui/pages/send/send-content/send-gas-row/send-gas-row.component.js

196 lines
5.1 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import SendRowWrapper from '../send-row-wrapper';
import GasPriceButtonGroup from '../../../../components/app/gas-customization/gas-price-button-group';
import AdvancedGasInputs from '../../../../components/app/gas-customization/advanced-gas-inputs';
import GasFeeDisplay from './gas-fee-display/gas-fee-display.component';
2018-04-11 16:21:54 +02:00
export default class SendGasRow extends Component {
static propTypes = {
balance: PropTypes.string,
2018-06-29 19:19:40 +02:00
gasFeeError: PropTypes.bool,
gasLoadingError: PropTypes.bool,
gasTotal: PropTypes.string,
maxModeOn: PropTypes.bool,
2018-04-27 12:41:18 +02:00
showCustomizeGasModal: PropTypes.func,
sendToken: PropTypes.object,
setAmountToMax: PropTypes.func,
setGasPrice: PropTypes.func,
setGasLimit: PropTypes.func,
tokenBalance: PropTypes.string,
gasPriceButtonGroupProps: PropTypes.object,
gasButtonGroupShown: PropTypes.bool,
advancedInlineGasShown: PropTypes.bool,
resetGasButtons: PropTypes.func,
gasPrice: PropTypes.string,
gasLimit: PropTypes.string,
insufficientBalance: PropTypes.bool,
isMainnet: PropTypes.bool,
isEthGasPrice: PropTypes.bool,
noGasPrice: PropTypes.bool,
};
2018-04-11 16:21:54 +02:00
static contextTypes = {
t: PropTypes.func,
trackEvent: PropTypes.func,
};
2020-11-03 00:41:28 +01:00
renderAdvancedOptionsButton() {
const { trackEvent } = this.context;
const {
showCustomizeGasModal,
isMainnet,
isEthGasPrice,
noGasPrice,
} = this.props;
// Tests should behave in same way as mainnet, but are using Localhost
if (!isMainnet && !process.env.IN_TEST) {
return null;
}
if (isEthGasPrice || noGasPrice) {
return null;
}
return (
<div
className="advanced-gas-options-btn"
onClick={() => {
trackEvent({
category: 'Transactions',
event: 'Clicked "Advanced Options"',
});
showCustomizeGasModal();
}}
>
2020-11-03 00:41:28 +01:00
{this.context.t('advancedOptions')}
</div>
);
}
2020-11-03 00:41:28 +01:00
setMaxAmount() {
const {
balance,
gasTotal,
sendToken,
setAmountToMax,
tokenBalance,
} = this.props;
setAmountToMax({
balance,
gasTotal,
sendToken,
tokenBalance,
});
}
2020-11-03 00:41:28 +01:00
renderContent() {
2018-04-11 16:21:54 +02:00
const {
gasLoadingError,
gasTotal,
showCustomizeGasModal,
gasPriceButtonGroupProps,
gasButtonGroupShown,
advancedInlineGasShown,
maxModeOn,
resetGasButtons,
setGasPrice,
setGasLimit,
gasPrice,
gasLimit,
insufficientBalance,
isMainnet,
isEthGasPrice,
noGasPrice,
} = this.props;
const { trackEvent } = this.context;
const gasPriceFetchFailure = isEthGasPrice || noGasPrice;
2018-04-11 16:21:54 +02:00
const gasPriceButtonGroup = (
<div>
<GasPriceButtonGroup
className="gas-price-button-group--small"
showCheck={false}
{...gasPriceButtonGroupProps}
handleGasPriceSelection={async (opts) => {
trackEvent({
category: 'Transactions',
event: 'User Clicked Gas Estimate Button',
properties: {
gasEstimateType: opts.gasEstimateType.toLowerCase(),
},
});
await gasPriceButtonGroupProps.handleGasPriceSelection(opts);
if (maxModeOn) {
this.setMaxAmount();
}
}}
/>
</div>
);
const gasFeeDisplay = (
<GasFeeDisplay
gasLoadingError={gasLoadingError}
gasTotal={gasTotal}
onReset={() => {
resetGasButtons();
if (maxModeOn) {
this.setMaxAmount();
}
}}
onClick={() => showCustomizeGasModal()}
/>
);
const advancedGasInputs = (
<div>
<AdvancedGasInputs
2020-11-03 00:41:28 +01:00
updateCustomGasPrice={(newGasPrice) =>
setGasPrice({ gasPrice: newGasPrice, gasLimit })
2020-11-03 00:41:28 +01:00
}
updateCustomGasLimit={(newGasLimit) =>
setGasLimit(newGasLimit, gasPrice)
}
customGasPrice={gasPrice}
customGasLimit={gasLimit}
insufficientBalance={insufficientBalance}
customPriceIsSafe
isSpeedUp={false}
/>
</div>
);
// Tests should behave in same way as mainnet, but are using Localhost
if (
advancedInlineGasShown ||
(!isMainnet && !process.env.IN_TEST) ||
gasPriceFetchFailure
) {
return advancedGasInputs;
} else if (gasButtonGroupShown) {
return gasPriceButtonGroup;
}
return gasFeeDisplay;
}
2020-11-03 00:41:28 +01:00
render() {
const {
gasFeeError,
gasButtonGroupShown,
advancedInlineGasShown,
} = this.props;
2018-04-11 16:21:54 +02:00
return (
2020-10-29 17:31:48 +01:00
<>
<SendRowWrapper
label={`${this.context.t('transactionFee')}:`}
showError={gasFeeError}
errorType="gasFee"
>
2020-11-03 00:41:28 +01:00
{this.renderContent()}
2020-10-29 17:31:48 +01:00
</SendRowWrapper>
2020-11-03 00:41:28 +01:00
{gasButtonGroupShown || advancedInlineGasShown ? (
<SendRowWrapper>{this.renderAdvancedOptionsButton()}</SendRowWrapper>
) : null}
2020-10-29 17:31:48 +01:00
</>
);
2018-04-11 16:21:54 +02:00
}
}