1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/confirm-add-token/confirm-add-token.component.js

139 lines
4.7 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { ASSET_ROUTE, ADD_TOKEN_ROUTE } from '../../helpers/constants/routes';
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
export default class ConfirmAddToken extends Component {
static contextTypes = {
t: PropTypes.func,
trackEvent: PropTypes.func,
};
2018-05-20 08:04:19 +02:00
static propTypes = {
history: PropTypes.object,
clearPendingTokens: PropTypes.func,
addTokens: PropTypes.func,
mostRecentOverviewPage: PropTypes.string.isRequired,
2018-05-20 08:04:19 +02:00
pendingTokens: PropTypes.object,
};
2018-05-20 08:04:19 +02:00
2020-11-03 00:41:28 +01:00
componentDidMount() {
const { mostRecentOverviewPage, pendingTokens = {}, history } = this.props;
2018-05-20 08:04:19 +02:00
if (Object.keys(pendingTokens).length === 0) {
history.push(mostRecentOverviewPage);
2018-05-20 08:04:19 +02:00
}
}
2020-11-03 00:41:28 +01:00
getTokenName(name, symbol) {
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,
} = 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">
2020-11-03 00:41:28 +01:00
{this.context.t('addTokens')}
2018-05-20 08:04:19 +02:00
</div>
<div className="page-container__subtitle">
2020-11-03 00:41:28 +01:00
{this.context.t('likeToAddTokens')}
2018-05-20 08:04:19 +02:00
</div>
</div>
<div className="page-container__content">
<div className="confirm-add-token">
<div className="confirm-add-token__header">
<div className="confirm-add-token__token">
2020-11-03 00:41:28 +01:00
{this.context.t('token')}
2018-05-20 08:04:19 +02:00
</div>
<div className="confirm-add-token__balance">
2020-11-03 00:41:28 +01:00
{this.context.t('balance')}
2018-05-20 08:04:19 +02:00
</div>
</div>
<div className="confirm-add-token__token-list">
2020-11-03 00:41:28 +01:00
{Object.entries(pendingTokens).map(([address, token]) => {
const { name, symbol } = token;
2018-05-20 08:04:19 +02:00
2020-11-03 00:41:28 +01:00
return (
<div
className="confirm-add-token__token-list-item"
key={address}
>
<div className="confirm-add-token__token confirm-add-token__data">
<Identicon
className="confirm-add-token__token-icon"
diameter={48}
address={address}
/>
<div className="confirm-add-token__name">
{this.getTokenName(name, symbol)}
2018-05-20 08:04:19 +02:00
</div>
2020-11-03 00:41:28 +01:00
</div>
<div className="confirm-add-token__balance">
<TokenBalance token={token} />
</div>
</div>
);
2020-11-03 00:41:28 +01:00
})}
2018-05-20 08:04:19 +02:00
</div>
</div>
</div>
<div className="page-container__footer">
<footer>
<Button
type="default"
large
className="page-container__footer-button"
onClick={() => history.push(ADD_TOKEN_ROUTE)}
>
2020-11-03 00:41:28 +01:00
{this.context.t('back')}
</Button>
<Button
type="secondary"
large
className="page-container__footer-button"
onClick={() => {
2020-11-03 00:41:28 +01:00
addTokens(pendingTokens).then(() => {
const pendingTokenValues = Object.values(pendingTokens);
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',
},
});
});
clearPendingTokens();
const firstTokenAddress = pendingTokenValues?.[0].address?.toLowerCase();
2020-11-03 00:41:28 +01:00
if (firstTokenAddress) {
history.push(`${ASSET_ROUTE}/${firstTokenAddress}`);
2020-11-03 00:41:28 +01:00
} else {
history.push(mostRecentOverviewPage);
2020-11-03 00:41:28 +01:00
}
});
}}
>
2020-11-03 00:41:28 +01:00
{this.context.t('addTokens')}
</Button>
</footer>
2018-05-20 08:04:19 +02:00
</div>
</div>
);
2018-05-20 08:04:19 +02:00
}
}