mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
111 lines
3.0 KiB
JavaScript
111 lines
3.0 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import PageContainerContent from '../../../components/ui/page-container/page-container-content.component';
|
|
import Dialog from '../../../components/ui/dialog';
|
|
import {
|
|
ETH_GAS_PRICE_FETCH_WARNING_KEY,
|
|
GAS_PRICE_FETCH_FAILURE_ERROR_KEY,
|
|
GAS_PRICE_EXCESSIVE_ERROR_KEY,
|
|
UNSENDABLE_ASSET_ERROR_KEY,
|
|
} from '../../../helpers/constants/error-keys';
|
|
import SendAmountRow from './send-amount-row';
|
|
import SendHexDataRow from './send-hex-data-row';
|
|
import SendAssetRow from './send-asset-row';
|
|
import SendGasRow from './send-gas-row';
|
|
|
|
export default class SendContent extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
isAssetSendable: PropTypes.bool,
|
|
showAddToAddressBookModal: PropTypes.func,
|
|
showHexData: PropTypes.bool,
|
|
contact: PropTypes.object,
|
|
isOwnedAccount: PropTypes.bool,
|
|
warning: PropTypes.string,
|
|
error: PropTypes.string,
|
|
gasIsExcessive: PropTypes.bool.isRequired,
|
|
isEthGasPrice: PropTypes.bool,
|
|
noGasPrice: PropTypes.bool,
|
|
networkAndAccountSupports1559: PropTypes.bool,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
warning,
|
|
error,
|
|
gasIsExcessive,
|
|
isEthGasPrice,
|
|
noGasPrice,
|
|
isAssetSendable,
|
|
networkAndAccountSupports1559,
|
|
} = this.props;
|
|
|
|
let gasError;
|
|
if (gasIsExcessive) gasError = GAS_PRICE_EXCESSIVE_ERROR_KEY;
|
|
else if (noGasPrice) gasError = GAS_PRICE_FETCH_FAILURE_ERROR_KEY;
|
|
|
|
return (
|
|
<PageContainerContent>
|
|
<div className="send-v2__form">
|
|
{gasError && this.renderError(gasError)}
|
|
{isEthGasPrice && this.renderWarning(ETH_GAS_PRICE_FETCH_WARNING_KEY)}
|
|
{isAssetSendable === false &&
|
|
this.renderError(UNSENDABLE_ASSET_ERROR_KEY)}
|
|
{error && this.renderError(error)}
|
|
{warning && this.renderWarning()}
|
|
{this.maybeRenderAddContact()}
|
|
<SendAssetRow />
|
|
<SendAmountRow />
|
|
{!networkAndAccountSupports1559 && <SendGasRow />}
|
|
{this.props.showHexData && <SendHexDataRow />}
|
|
</div>
|
|
</PageContainerContent>
|
|
);
|
|
}
|
|
|
|
maybeRenderAddContact() {
|
|
const { t } = this.context;
|
|
const {
|
|
isOwnedAccount,
|
|
showAddToAddressBookModal,
|
|
contact = {},
|
|
} = this.props;
|
|
|
|
if (isOwnedAccount || contact.name) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Dialog
|
|
type="message"
|
|
className="send__dialog"
|
|
onClick={showAddToAddressBookModal}
|
|
>
|
|
{t('newAccountDetectedDialogMessage')}
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
renderWarning(gasWarning = '') {
|
|
const { t } = this.context;
|
|
const { warning } = this.props;
|
|
return (
|
|
<Dialog type="warning" className="send__error-dialog">
|
|
{gasWarning === '' ? t(warning) : t(gasWarning)}
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
renderError(error) {
|
|
const { t } = this.context;
|
|
return (
|
|
<Dialog type="error" className="send__error-dialog">
|
|
{t(error)}
|
|
</Dialog>
|
|
);
|
|
}
|
|
}
|