mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +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>
122 lines
3.7 KiB
JavaScript
122 lines
3.7 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { getAccountLink } from '@metamask/etherscan-link';
|
|
import Modal from '../../modal';
|
|
import { addressSummary, getURLHostName } from '../../../../helpers/utils/util';
|
|
import Identicon from '../../../ui/identicon';
|
|
import { MetaMetricsEventCategory } from '../../../../../shared/constants/metametrics';
|
|
import ZENDESK_URLS from '../../../../helpers/constants/zendesk-url';
|
|
|
|
export default class ConfirmRemoveAccount extends Component {
|
|
static propTypes = {
|
|
hideModal: PropTypes.func.isRequired,
|
|
removeAccount: PropTypes.func.isRequired,
|
|
identity: PropTypes.object.isRequired,
|
|
chainId: PropTypes.string.isRequired,
|
|
rpcPrefs: PropTypes.object.isRequired,
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
trackEvent: PropTypes.func,
|
|
};
|
|
|
|
handleRemove = () => {
|
|
this.props
|
|
.removeAccount(this.props.identity.address)
|
|
.then(() => this.props.hideModal());
|
|
};
|
|
|
|
handleCancel = () => {
|
|
this.props.hideModal();
|
|
};
|
|
|
|
renderSelectedAccount() {
|
|
const { t } = this.context;
|
|
const { identity, rpcPrefs, chainId } = this.props;
|
|
return (
|
|
<div className="confirm-remove-account__account">
|
|
<div className="confirm-remove-account__account__identicon">
|
|
<Identicon address={identity.address} diameter={32} />
|
|
</div>
|
|
<div className="confirm-remove-account__account__name">
|
|
<span className="confirm-remove-account__account__label">
|
|
{t('name')}
|
|
</span>
|
|
<span className="account_value">{identity.name}</span>
|
|
</div>
|
|
<div className="confirm-remove-account__account__address">
|
|
<span className="confirm-remove-account__account__label">
|
|
{t('publicAddress')}
|
|
</span>
|
|
<span className="account_value">
|
|
{addressSummary(identity.address, 4, 4)}
|
|
</span>
|
|
</div>
|
|
<div className="confirm-remove-account__account__link">
|
|
<a
|
|
onClick={() => {
|
|
const accountLink = getAccountLink(
|
|
identity.address,
|
|
chainId,
|
|
rpcPrefs,
|
|
);
|
|
this.context.trackEvent({
|
|
category: MetaMetricsEventCategory.Accounts,
|
|
event: 'Clicked Block Explorer Link',
|
|
properties: {
|
|
link_type: 'Account Tracker',
|
|
action: 'Remove Account',
|
|
block_explorer_domain: getURLHostName(accountLink),
|
|
},
|
|
});
|
|
global.platform.openTab({
|
|
url: accountLink,
|
|
});
|
|
}}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
title={t('etherscanView')}
|
|
>
|
|
<i
|
|
className="fa fa-share-square"
|
|
style={{ color: 'var(--color-icon-muted)' }}
|
|
title={t('etherscanView')}
|
|
/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { t } = this.context;
|
|
|
|
return (
|
|
<Modal
|
|
headerText={`${t('removeAccount')}?`}
|
|
onClose={this.handleCancel}
|
|
onSubmit={this.handleRemove}
|
|
onCancel={this.handleCancel}
|
|
submitText={t('remove')}
|
|
cancelText={t('nevermind')}
|
|
>
|
|
<div>
|
|
{this.renderSelectedAccount()}
|
|
<div className="confirm-remove-account__description">
|
|
{t('removeAccountDescription')}
|
|
<a
|
|
className="confirm-remove-account__link"
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
href={ZENDESK_URLS.IMPORTED_ACCOUNTS}
|
|
>
|
|
{t('learnMore')}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|