import React, { Component } from 'react' import PropTypes from 'prop-types' import { checksumAddress } from '../../../util' import Identicon from '../../identicon' import CurrencyDisplay from '../../send/currency-display' export default class AccountListItem extends Component { static propTypes = { account: PropTypes.object, className: PropTypes.string, conversionRate: PropTypes.number, currentCurrency: PropTypes.string, displayAddress: PropTypes.bool, displayBalance: PropTypes.bool, handleClick: PropTypes.func, icon: PropTypes.node, }; render () { const { account, className, conversionRate, currentCurrency, displayAddress = false, displayBalance = true, handleClick, icon = null, } = this.props const { name, address, balance } = account || {} return (
handleClick({ name, address, balance })} >
{ name || address }
{icon &&
{ icon }
}
{displayAddress && name &&
{ checksumAddress(address) }
} {displayBalance && }
) } } AccountListItem.contextTypes = { t: PropTypes.func, }