mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
1304ec7af5
We want to convert NetworkController to TypeScript in order to be able to compare differences in the controller between in this repo and the core repo. To do this, however, we need to convert the dependencies of the controller to TypeScript. As a part of this effort, this commit converts `shared/constants/metametrics` to TypeScript. Note that simple objects have been largely replaced with enums. There are some cases where I even split up some of these objects into multiple enums. Co-authored-by: Mark Stacey <markjstacey@gmail.com>
331 lines
10 KiB
JavaScript
331 lines
10 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import copyToClipboard from 'copy-to-clipboard';
|
|
import classnames from 'classnames';
|
|
import log from 'loglevel';
|
|
|
|
import AccountListItem from '../../components/app/account-list-item';
|
|
import Identicon from '../../components/ui/identicon';
|
|
import Tooltip from '../../components/ui/tooltip';
|
|
import { PageContainerFooter } from '../../components/ui/page-container';
|
|
|
|
import { MetaMetricsEventCategory } from '../../../shared/constants/metametrics';
|
|
import { SECOND } from '../../../shared/constants/time';
|
|
import { Numeric } from '../../../shared/modules/Numeric';
|
|
import { EtherDenomination } from '../../../shared/constants/common';
|
|
import { Icon, ICON_NAMES } from '../../components/component-library';
|
|
import { IconColor } from '../../helpers/constants/design-system';
|
|
import { formatCurrency } from '../../helpers/utils/confirm-tx.util';
|
|
import { getValueFromWeiHex } from '../../../shared/modules/conversion.utils';
|
|
|
|
export default class ConfirmDecryptMessage extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func.isRequired,
|
|
trackEvent: PropTypes.func.isRequired,
|
|
};
|
|
|
|
static propTypes = {
|
|
fromAccount: PropTypes.shape({
|
|
address: PropTypes.string.isRequired,
|
|
balance: PropTypes.string,
|
|
name: PropTypes.string,
|
|
}).isRequired,
|
|
clearConfirmTransaction: PropTypes.func.isRequired,
|
|
cancelDecryptMessage: PropTypes.func.isRequired,
|
|
decryptMessage: PropTypes.func.isRequired,
|
|
decryptMessageInline: PropTypes.func.isRequired,
|
|
history: PropTypes.object.isRequired,
|
|
mostRecentOverviewPage: PropTypes.string.isRequired,
|
|
requesterAddress: PropTypes.string,
|
|
txData: PropTypes.object,
|
|
subjectMetadata: PropTypes.object,
|
|
nativeCurrency: PropTypes.string.isRequired,
|
|
currentCurrency: PropTypes.string.isRequired,
|
|
conversionRate: PropTypes.number,
|
|
};
|
|
|
|
state = {
|
|
copyToClipboardPressed: false,
|
|
hasCopied: false,
|
|
};
|
|
|
|
copyMessage = () => {
|
|
copyToClipboard(this.state.rawMessage);
|
|
this.context.trackEvent({
|
|
category: MetaMetricsEventCategory.Messages,
|
|
event: 'Copy',
|
|
properties: {
|
|
action: 'Decrypt Message Copy',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
this.setState({ hasCopied: true });
|
|
setTimeout(() => this.setState({ hasCopied: false }), SECOND * 3);
|
|
};
|
|
|
|
renderHeader = () => {
|
|
return (
|
|
<div className="request-decrypt-message__header">
|
|
<div className="request-decrypt-message__header-background" />
|
|
|
|
<div className="request-decrypt-message__header__text">
|
|
{this.context.t('decryptRequest')}
|
|
</div>
|
|
|
|
<div className="request-decrypt-message__header__tip-container">
|
|
<div className="request-decrypt-message__header__tip" />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderAccount = () => {
|
|
const { fromAccount } = this.props;
|
|
const { t } = this.context;
|
|
|
|
return (
|
|
<div className="request-decrypt-message__account">
|
|
<div className="request-decrypt-message__account-text">
|
|
{`${t('account')}:`}
|
|
</div>
|
|
|
|
<div className="request-decrypt-message__account-item">
|
|
<AccountListItem account={fromAccount} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderBalance = () => {
|
|
const {
|
|
conversionRate,
|
|
nativeCurrency,
|
|
currentCurrency,
|
|
fromAccount: { balance },
|
|
} = this.props;
|
|
const { t } = this.context;
|
|
|
|
const nativeCurrencyBalance = conversionRate
|
|
? formatCurrency(
|
|
getValueFromWeiHex({
|
|
value: balance,
|
|
fromCurrency: nativeCurrency,
|
|
toCurrency: currentCurrency,
|
|
conversionRate,
|
|
numberOfDecimals: 6,
|
|
toDenomination: EtherDenomination.ETH,
|
|
}),
|
|
currentCurrency,
|
|
)
|
|
: new Numeric(balance, 16, EtherDenomination.WEI)
|
|
.toDenomination(EtherDenomination.ETH)
|
|
.round(6)
|
|
.toBase(10)
|
|
.toString();
|
|
|
|
return (
|
|
<div className="request-decrypt-message__balance">
|
|
<div className="request-decrypt-message__balance-text">
|
|
{`${t('balance')}:`}
|
|
</div>
|
|
<div className="request-decrypt-message__balance-value">
|
|
{`${nativeCurrencyBalance} ${
|
|
conversionRate ? currentCurrency?.toUpperCase() : nativeCurrency
|
|
}`}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderRequestIcon = () => {
|
|
const { requesterAddress } = this.props;
|
|
|
|
return (
|
|
<div className="request-decrypt-message__request-icon">
|
|
<Identicon diameter={40} address={requesterAddress} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderAccountInfo = () => {
|
|
return (
|
|
<div className="request-decrypt-message__account-info">
|
|
{this.renderAccount()}
|
|
{this.renderRequestIcon()}
|
|
{this.renderBalance()}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderBody = () => {
|
|
const { decryptMessageInline, subjectMetadata, txData } = this.props;
|
|
const { t } = this.context;
|
|
|
|
const targetSubjectMetadata = subjectMetadata[txData.msgParams.origin];
|
|
const name = targetSubjectMetadata?.name || txData.msgParams.origin;
|
|
const notice = t('decryptMessageNotice', [txData.msgParams.origin]);
|
|
|
|
const {
|
|
hasCopied,
|
|
hasDecrypted,
|
|
hasError,
|
|
rawMessage,
|
|
errorMessage,
|
|
copyToClipboardPressed,
|
|
} = this.state;
|
|
|
|
return (
|
|
<div className="request-decrypt-message__body">
|
|
{this.renderAccountInfo()}
|
|
<div className="request-decrypt-message__visual">
|
|
<section>
|
|
{targetSubjectMetadata?.iconUrl ? (
|
|
<img
|
|
className="request-decrypt-message__visual-identicon"
|
|
src={targetSubjectMetadata.iconUrl}
|
|
alt=""
|
|
/>
|
|
) : (
|
|
<i className="request-decrypt-message__visual-identicon--default">
|
|
{name.charAt(0).toUpperCase()}
|
|
</i>
|
|
)}
|
|
<div className="request-decrypt-message__notice">{notice}</div>
|
|
</section>
|
|
</div>
|
|
<div className="request-decrypt-message__message">
|
|
<div className="request-decrypt-message__message-text">
|
|
{!hasDecrypted && !hasError ? txData.msgParams.data : rawMessage}
|
|
{hasError ? errorMessage : ''}
|
|
</div>
|
|
<div
|
|
className={classnames('request-decrypt-message__message-cover', {
|
|
'request-decrypt-message__message-lock--pressed':
|
|
hasDecrypted || hasError,
|
|
})}
|
|
/>
|
|
<div
|
|
className={classnames('request-decrypt-message__message-lock', {
|
|
'request-decrypt-message__message-lock--pressed':
|
|
hasDecrypted || hasError,
|
|
})}
|
|
onClick={(event) => {
|
|
decryptMessageInline(txData, event).then((result) => {
|
|
if (result.error) {
|
|
this.setState({
|
|
hasError: true,
|
|
errorMessage: this.context.t('decryptInlineError', [
|
|
result.error,
|
|
]),
|
|
});
|
|
} else {
|
|
this.setState({
|
|
hasDecrypted: true,
|
|
rawMessage: result.rawData,
|
|
});
|
|
}
|
|
});
|
|
}}
|
|
>
|
|
<div className="request-decrypt-message__message-lock__container">
|
|
<i className="fa fa-lock fa-lg request-decrypt-message__message-lock__container__icon" />
|
|
<div className="request-decrypt-message__message-lock__container__text">
|
|
{t('decryptMetamask')}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{hasDecrypted ? (
|
|
<div
|
|
className={classnames({
|
|
'request-decrypt-message__message-copy': true,
|
|
'request-decrypt-message__message-copy--pressed':
|
|
copyToClipboardPressed,
|
|
})}
|
|
onClick={() => this.copyMessage()}
|
|
onMouseDown={() => this.setState({ copyToClipboardPressed: true })}
|
|
onMouseUp={() => this.setState({ copyToClipboardPressed: false })}
|
|
>
|
|
<Tooltip
|
|
position="bottom"
|
|
title={hasCopied ? t('copiedExclamation') : t('copyToClipboard')}
|
|
wrapperClassName="request-decrypt-message__message-copy-tooltip"
|
|
style={{ display: 'flex', alignItems: 'center' }}
|
|
>
|
|
<div className="request-decrypt-message__message-copy-text">
|
|
{t('decryptCopy')}
|
|
</div>
|
|
<Icon
|
|
name={hasCopied ? ICON_NAMES.COPY_SUCCESS : ICON_NAMES.COPY}
|
|
color={IconColor.primaryDefault}
|
|
/>
|
|
</Tooltip>
|
|
</div>
|
|
) : (
|
|
<div />
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
renderFooter = () => {
|
|
const {
|
|
cancelDecryptMessage,
|
|
clearConfirmTransaction,
|
|
decryptMessage,
|
|
history,
|
|
mostRecentOverviewPage,
|
|
txData,
|
|
} = this.props;
|
|
const { trackEvent, t } = this.context;
|
|
|
|
return (
|
|
<PageContainerFooter
|
|
cancelText={t('cancel')}
|
|
submitText={t('decrypt')}
|
|
onCancel={async (event) => {
|
|
await cancelDecryptMessage(txData, event);
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Messages,
|
|
event: 'Cancel',
|
|
properties: {
|
|
action: 'Decrypt Message Request',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
clearConfirmTransaction();
|
|
history.push(mostRecentOverviewPage);
|
|
}}
|
|
onSubmit={async (event) => {
|
|
await decryptMessage(txData, event);
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Messages,
|
|
event: 'Confirm',
|
|
properties: {
|
|
action: 'Decrypt Message Request',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
clearConfirmTransaction();
|
|
history.push(mostRecentOverviewPage);
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
render = () => {
|
|
if (!this.props.txData) {
|
|
log.warn('ConfirmDecryptMessage Page: Missing txData prop.');
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="request-decrypt-message__container">
|
|
{this.renderHeader()}
|
|
{this.renderBody()}
|
|
{this.renderFooter()}
|
|
</div>
|
|
);
|
|
};
|
|
}
|