2021-02-04 19:15:23 +01:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2021-09-10 22:21:04 +02:00
|
|
|
import {
|
|
|
|
ASSET_ROUTE,
|
|
|
|
IMPORT_TOKEN_ROUTE,
|
|
|
|
} from '../../helpers/constants/routes';
|
2021-02-04 19:15:23 +01:00
|
|
|
import Button from '../../components/ui/button';
|
|
|
|
import Identicon from '../../components/ui/identicon';
|
|
|
|
import TokenBalance from '../../components/ui/token-balance';
|
2018-05-20 08:04:19 +02:00
|
|
|
|
2021-09-10 22:21:04 +02:00
|
|
|
export default class ConfirmImportToken extends Component {
|
2018-05-20 08:04:19 +02:00
|
|
|
static contextTypes = {
|
|
|
|
t: PropTypes.func,
|
2020-11-17 18:39:21 +01:00
|
|
|
trackEvent: PropTypes.func,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-05-20 08:04:19 +02:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
history: PropTypes.object,
|
|
|
|
clearPendingTokens: PropTypes.func,
|
|
|
|
addTokens: PropTypes.func,
|
2020-06-01 19:54:32 +02:00
|
|
|
mostRecentOverviewPage: PropTypes.string.isRequired,
|
2018-05-20 08:04:19 +02:00
|
|
|
pendingTokens: PropTypes.object,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-05-20 08:04:19 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
componentDidMount() {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { mostRecentOverviewPage, pendingTokens = {}, history } = this.props;
|
2018-05-20 08:04:19 +02:00
|
|
|
|
|
|
|
if (Object.keys(pendingTokens).length === 0) {
|
2021-02-04 19:15:23 +01:00
|
|
|
history.push(mostRecentOverviewPage);
|
2018-05-20 08:04:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
getTokenName(name, symbol) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return typeof name === 'undefined' ? symbol : `${name} (${symbol})`;
|
2018-05-20 08:04:19 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
history,
|
|
|
|
addTokens,
|
|
|
|
clearPendingTokens,
|
|
|
|
mostRecentOverviewPage,
|
|
|
|
pendingTokens,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = this.props;
|
2018-05-20 08:04:19 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="page-container">
|
|
|
|
<div className="page-container__header">
|
|
|
|
<div className="page-container__title">
|
2021-09-10 22:21:04 +02:00
|
|
|
{this.context.t('importTokensCamelCase')}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
|
|
|
<div className="page-container__subtitle">
|
2021-09-10 22:21:04 +02:00
|
|
|
{this.context.t('likeToImportTokens')}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="page-container__content">
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token">
|
|
|
|
<div className="confirm-import-token__header">
|
|
|
|
<div className="confirm-import-token__token">
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.context.t('token')}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token__balance">
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.context.t('balance')}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token__token-list">
|
2020-11-03 00:41:28 +01:00
|
|
|
{Object.entries(pendingTokens).map(([address, token]) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { name, symbol } = token;
|
2018-05-20 08:04:19 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
return (
|
|
|
|
<div
|
2021-09-10 22:21:04 +02:00
|
|
|
className="confirm-import-token__token-list-item"
|
2020-11-03 00:41:28 +01:00
|
|
|
key={address}
|
|
|
|
>
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token__token confirm-import-token__data">
|
2020-11-03 00:41:28 +01:00
|
|
|
<Identicon
|
2021-09-10 22:21:04 +02:00
|
|
|
className="confirm-import-token__token-icon"
|
2020-11-03 00:41:28 +01:00
|
|
|
diameter={48}
|
|
|
|
address={address}
|
|
|
|
/>
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token__name">
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.getTokenName(name, symbol)}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
2020-11-03 00:41:28 +01:00
|
|
|
</div>
|
2021-09-10 22:21:04 +02:00
|
|
|
<div className="confirm-import-token__balance">
|
2020-11-03 00:41:28 +01:00
|
|
|
<TokenBalance token={token} />
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
})}
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="page-container__footer">
|
2020-02-27 23:00:20 +01:00
|
|
|
<footer>
|
2018-10-05 22:43:27 +02:00
|
|
|
<Button
|
2021-10-05 21:20:42 +02:00
|
|
|
type="secondary"
|
2018-10-05 22:43:27 +02:00
|
|
|
large
|
|
|
|
className="page-container__footer-button"
|
2021-09-10 22:21:04 +02:00
|
|
|
onClick={() => history.push(IMPORT_TOKEN_ROUTE)}
|
2018-10-05 22:43:27 +02:00
|
|
|
>
|
2020-11-03 00:41:28 +01:00
|
|
|
{this.context.t('back')}
|
2018-10-05 22:43:27 +02:00
|
|
|
</Button>
|
|
|
|
<Button
|
2021-10-05 21:20:42 +02:00
|
|
|
type="primary"
|
2018-10-05 22:43:27 +02:00
|
|
|
large
|
|
|
|
className="page-container__footer-button"
|
|
|
|
onClick={() => {
|
2020-11-03 00:41:28 +01:00
|
|
|
addTokens(pendingTokens).then(() => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const pendingTokenValues = Object.values(pendingTokens);
|
2020-11-17 18:39:21 +01:00
|
|
|
pendingTokenValues.forEach((pendingToken) => {
|
|
|
|
this.context.trackEvent({
|
|
|
|
event: 'Token Added',
|
|
|
|
category: 'Wallet',
|
|
|
|
sensitiveProperties: {
|
|
|
|
token_symbol: pendingToken.symbol,
|
|
|
|
token_contract_address: pendingToken.address,
|
|
|
|
token_decimal_precision: pendingToken.decimals,
|
|
|
|
unlisted: pendingToken.unlisted,
|
|
|
|
source: pendingToken.isCustom ? 'custom' : 'list',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
clearPendingTokens();
|
|
|
|
const firstTokenAddress = pendingTokenValues?.[0].address?.toLowerCase();
|
2020-11-03 00:41:28 +01:00
|
|
|
if (firstTokenAddress) {
|
2021-02-04 19:15:23 +01:00
|
|
|
history.push(`${ASSET_ROUTE}/${firstTokenAddress}`);
|
2020-11-03 00:41:28 +01:00
|
|
|
} else {
|
2021-02-04 19:15:23 +01:00
|
|
|
history.push(mostRecentOverviewPage);
|
2020-11-03 00:41:28 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-10-05 22:43:27 +02:00
|
|
|
}}
|
|
|
|
>
|
2021-09-10 22:21:04 +02:00
|
|
|
{this.context.t('importTokensCamelCase')}
|
2018-10-05 22:43:27 +02:00
|
|
|
</Button>
|
2020-02-27 23:00:20 +01:00
|
|
|
</footer>
|
2018-05-20 08:04:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-05-20 08:04:19 +02:00
|
|
|
}
|
|
|
|
}
|