|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
|
|
|
|
import { PRIORITY_LEVELS } from '../../../../shared/constants/gas';
|
|
|
|
import { submittedPendingTransactionsSelector } from '../../../selectors/transactions';
|
|
|
|
import { useGasFeeContext } from '../../../contexts/gasFee';
|
|
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
|
|
import ActionableMessage from '../../../components/ui/actionable-message/actionable-message';
|
|
|
|
import Button from '../../../components/ui/button';
|
|
|
|
import Typography from '../../../components/ui/typography';
|
|
|
|
import { TYPOGRAPHY } from '../../../helpers/constants/design-system';
|
|
|
|
import { TRANSACTION_TYPES } from '../../../../shared/constants/transaction';
|
|
|
|
|
|
|
|
const TransactionAlerts = ({
|
|
|
|
userAcknowledgedGasMissing,
|
|
|
|
setUserAcknowledgedGasMissing,
|
|
|
|
isBuyableChain,
|
|
|
|
nativeCurrency,
|
|
|
|
networkName,
|
|
|
|
showBuyModal,
|
|
|
|
type,
|
|
|
|
}) => {
|
|
|
|
const {
|
|
|
|
balanceError,
|
|
|
|
estimateUsed,
|
|
|
|
hasSimulationError,
|
|
|
|
supportsEIP1559V2,
|
|
|
|
isNetworkBusy,
|
|
|
|
} = useGasFeeContext();
|
|
|
|
const pendingTransactions = useSelector(submittedPendingTransactionsSelector);
|
|
|
|
const t = useI18nContext();
|
|
|
|
|
|
|
|
if (!supportsEIP1559V2) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="transaction-alerts">
|
|
|
|
{hasSimulationError && (
|
|
|
|
<ActionableMessage
|
|
|
|
message={t('simulationErrorMessageV2')}
|
|
|
|
useIcon
|
|
|
|
iconFillColor="var(--color-error-default)"
|
|
|
|
type="danger"
|
|
|
|
primaryActionV2={
|
|
|
|
userAcknowledgedGasMissing === true
|
|
|
|
? undefined
|
|
|
|
: {
|
|
|
|
label: t('proceedWithTransaction'),
|
|
|
|
onClick: setUserAcknowledgedGasMissing,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{pendingTransactions?.length > 0 && (
|
|
|
|
<ActionableMessage
|
|
|
|
message={
|
|
|
|
<Typography
|
|
|
|
align="left"
|
|
|
|
className="transaction-alerts__pending-transactions"
|
|
|
|
margin={[0, 0]}
|
|
|
|
tag={TYPOGRAPHY.Paragraph}
|
|
|
|
variant={TYPOGRAPHY.H7}
|
|
|
|
>
|
|
|
|
<strong>
|
|
|
|
{pendingTransactions?.length === 1
|
|
|
|
? t('pendingTransactionSingle', [pendingTransactions?.length])
|
|
|
|
: t('pendingTransactionMultiple', [
|
|
|
|
pendingTransactions?.length,
|
|
|
|
])}
|
|
|
|
</strong>{' '}
|
|
|
|
{t('pendingTransactionInfo')}
|
|
|
|
{t('learnCancelSpeeedup', [
|
|
|
|
<a
|
|
|
|
key="cancelSpeedUpInfo"
|
|
|
|
href="https://metamask.zendesk.com/hc/en-us/articles/360015489251-How-to-speed-up-or-cancel-a-pending-transaction"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
{t('cancelSpeedUp')}
|
|
|
|
</a>,
|
|
|
|
])}
|
|
|
|
</Typography>
|
|
|
|
}
|
|
|
|
useIcon
|
|
|
|
iconFillColor="var(--color-warning-default)"
|
|
|
|
type="warning"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{balanceError && type === TRANSACTION_TYPES.DEPLOY_CONTRACT ? (
|
|
|
|
<ActionableMessage
|
|
|
|
className="actionable-message--warning"
|
|
|
|
message={
|
|
|
|
isBuyableChain ? (
|
|
|
|
<Typography variant={TYPOGRAPHY.H7} align="left">
|
|
|
|
{t('insufficientCurrencyBuyOrDeposit', [
|
|
|
|
nativeCurrency,
|
|
|
|
networkName,
|
|
|
|
<Button
|
|
|
|
type="inline"
|
|
|
|
className="confirm-page-container-content__link"
|
|
|
|
onClick={showBuyModal}
|
|
|
|
key={`${nativeCurrency}-buy-button`}
|
|
|
|
>
|
|
|
|
{t('buyAsset', [nativeCurrency])}
|
|
|
|
</Button>,
|
|
|
|
])}
|
|
|
|
</Typography>
|
|
|
|
) : (
|
|
|
|
<Typography variant={TYPOGRAPHY.H7} align="left">
|
|
|
|
{t('insufficientCurrencyDeposit', [
|
|
|
|
nativeCurrency,
|
|
|
|
networkName,
|
|
|
|
])}
|
|
|
|
</Typography>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
useIcon
|
|
|
|
iconFillColor="var(--color-error-default)"
|
|
|
|
type="danger"
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
{estimateUsed === PRIORITY_LEVELS.LOW && (
|
|
|
|
<ActionableMessage
|
|
|
|
dataTestId="low-gas-fee-alert"
|
|
|
|
message={
|
|
|
|
<Typography
|
|
|
|
align="left"
|
|
|
|
margin={[0, 0]}
|
|
|
|
tag={TYPOGRAPHY.Paragraph}
|
|
|
|
variant={TYPOGRAPHY.H7}
|
|
|
|
>
|
|
|
|
{t('lowPriorityMessage')}
|
|
|
|
</Typography>
|
|
|
|
}
|
|
|
|
useIcon
|
|
|
|
iconFillColor="var(--color-warning-default)"
|
|
|
|
type="warning"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{isNetworkBusy ? (
|
|
|
|
<ActionableMessage
|
|
|
|
message={
|
|
|
|
<Typography
|
|
|
|
align="left"
|
|
|
|
margin={[0, 0]}
|
|
|
|
tag={TYPOGRAPHY.Paragraph}
|
|
|
|
variant={TYPOGRAPHY.H7}
|
|
|
|
>
|
|
|
|
{t('networkIsBusy')}
|
|
|
|
</Typography>
|
|
|
|
}
|
|
|
|
iconFillColor="var(--color-warning-default)"
|
|
|
|
type="warning"
|
|
|
|
useIcon
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
TransactionAlerts.propTypes = {
|
|
|
|
userAcknowledgedGasMissing: PropTypes.bool,
|
|
|
|
setUserAcknowledgedGasMissing: PropTypes.func,
|
|
|
|
nativeCurrency: PropTypes.string,
|
|
|
|
networkName: PropTypes.string,
|
|
|
|
showBuyModal: PropTypes.func,
|
|
|
|
type: PropTypes.string,
|
|
|
|
isBuyableChain: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TransactionAlerts;
|