import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import { checkExistingAddresses } from '../../../helpers/utils/util'; import TokenListPlaceholder from './token-list-placeholder'; export default class TokenList extends Component { static contextTypes = { t: PropTypes.func, }; static propTypes = { tokens: PropTypes.array, results: PropTypes.array, selectedTokens: PropTypes.object, onToggleToken: PropTypes.func, useTokenDetection: PropTypes.bool, }; render() { const { results = [], selectedTokens = {}, onToggleToken, tokens = [], useTokenDetection, } = this.props; return results.length === 0 ? ( ) : (
{this.context.t('searchResults')}
{Array(6) .fill(undefined) .map((_, i) => { const { iconUrl, symbol, name, address } = results[i] || {}; // token from dynamic api list is fetched when useTokenDetection is true const iconPath = useTokenDetection ? iconUrl : `images/contract/${iconUrl}`; const tokenAlreadyAdded = checkExistingAddresses(address, tokens); const onClick = () => !tokenAlreadyAdded && onToggleToken(results[i]); return ( Boolean(iconUrl || symbol || name) && (
event.key === 'Enter' && onClick()} key={i} tabIndex="0" >
{`${name} (${symbol})`}
) ); })}
); } }