mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
8fef9fd8df
Co-authored-by: Amer Kadic <amerkadic@Amers-MacBook-Pro.local> Co-authored-by: George Marshall <george.marshall@consensys.net>
98 lines
2.2 KiB
JavaScript
98 lines
2.2 KiB
JavaScript
import { ethErrors } from 'eth-rpc-errors';
|
|
import {
|
|
COLORS,
|
|
JUSTIFY_CONTENT,
|
|
SEVERITIES,
|
|
TYPOGRAPHY,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
const PENDING_TX_DROP_NOTICE = {
|
|
id: 'PENDING_TX_DROP_NOTICE',
|
|
severity: SEVERITIES.WARNING,
|
|
content: {
|
|
element: 'span',
|
|
children: {
|
|
element: 'MetaMaskTranslation',
|
|
props: {
|
|
translationKey: 'switchingNetworksCancelsPendingConfirmations',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
async function getAlerts() {
|
|
return [PENDING_TX_DROP_NOTICE];
|
|
}
|
|
|
|
function getValues(pendingApproval, t, actions) {
|
|
return {
|
|
content: [
|
|
{
|
|
element: 'Typography',
|
|
key: 'title',
|
|
children: t('switchEthereumChainConfirmationTitle'),
|
|
props: {
|
|
variant: TYPOGRAPHY.H3,
|
|
align: 'center',
|
|
fontWeight: 'normal',
|
|
boxProps: {
|
|
margin: [0, 0, 2],
|
|
padding: [0, 4, 0, 4],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
element: 'Typography',
|
|
key: 'description',
|
|
children: t('switchEthereumChainConfirmationDescription'),
|
|
props: {
|
|
variant: TYPOGRAPHY.H7,
|
|
color: COLORS.TEXT_ALTERNATIVE,
|
|
align: 'center',
|
|
boxProps: {
|
|
padding: [0, 4, 0, 4],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
element: 'Box',
|
|
key: 'status-box',
|
|
props: {
|
|
justifyContent: JUSTIFY_CONTENT.CENTER,
|
|
},
|
|
children: {
|
|
element: 'ConfirmationNetworkSwitch',
|
|
key: 'network-being-switched',
|
|
props: {
|
|
newNetwork: {
|
|
chainId: pendingApproval.requestData.chainId,
|
|
name: pendingApproval.requestData.nickname,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
approvalText: t('switchNetwork'),
|
|
cancelText: t('cancel'),
|
|
onApprove: () =>
|
|
actions.resolvePendingApproval(
|
|
pendingApproval.id,
|
|
pendingApproval.requestData,
|
|
),
|
|
|
|
onCancel: () =>
|
|
actions.rejectPendingApproval(
|
|
pendingApproval.id,
|
|
ethErrors.provider.userRejectedRequest().serialize(),
|
|
),
|
|
networkDisplay: true,
|
|
};
|
|
}
|
|
|
|
const switchEthereumChain = {
|
|
getAlerts,
|
|
getValues,
|
|
};
|
|
|
|
export default switchEthereumChain;
|