import React, { Component } from 'react' import PropTypes from 'prop-types' import AccountListItem from '../../account-list-item/' export default class SendDropdownList extends Component { static propTypes = { accounts: PropTypes.array, closeDropdown: PropTypes.func, onSelect: PropTypes.func, activeAddress: PropTypes.string, }; static contextTypes = { t: PropTypes.func, }; getListItemIcon (accountAddress, activeAddress) { return accountAddress === activeAddress ? : null } render () { const { accounts, closeDropdown, onSelect, activeAddress, } = this.props return (
closeDropdown()} />
{accounts.map((account, index) => { onSelect(account) closeDropdown() }} icon={this.getListItemIcon(account.address, activeAddress)} key={`send-dropdown-account-#${index}`} />)}
) } }