2021-02-04 19:15:23 +01:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Identicon from '../../ui/identicon';
|
|
|
|
import AccountMismatchWarning from '../../ui/account-mismatch-warning/account-mismatch-warning.component';
|
2021-05-17 23:19:39 +02:00
|
|
|
import { toChecksumHexAddress } from '../../../../shared/modules/hexstring-utils';
|
2020-08-06 15:04:55 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export default function AccountListItem({
|
2020-08-06 15:04:55 +02:00
|
|
|
account,
|
|
|
|
className,
|
|
|
|
displayAddress = false,
|
|
|
|
handleClick,
|
|
|
|
icon = null,
|
|
|
|
}) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { name, address, balance } = account || {};
|
2020-08-06 15:04:55 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={`account-list-item ${className}`}
|
2020-11-05 16:35:58 +01:00
|
|
|
onClick={() => handleClick?.({ name, address, balance })}
|
2020-08-06 15:04:55 +02:00
|
|
|
>
|
|
|
|
<div className="account-list-item__top-row">
|
|
|
|
<Identicon
|
|
|
|
address={address}
|
|
|
|
className="account-list-item__identicon"
|
|
|
|
diameter={18}
|
|
|
|
/>
|
2020-11-03 00:41:28 +01:00
|
|
|
<div className="account-list-item__account-name">{name || address}</div>
|
2021-10-21 18:11:31 +02:00
|
|
|
{icon ? <div className="account-list-item__icon">{icon}</div> : null}
|
2020-08-06 15:04:55 +02:00
|
|
|
<AccountMismatchWarning address={address} />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{displayAddress && name && (
|
|
|
|
<div className="account-list-item__account-address">
|
2021-05-17 23:19:39 +02:00
|
|
|
{toChecksumHexAddress(address)}
|
2020-08-06 15:04:55 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-08-06 15:04:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AccountListItem.propTypes = {
|
|
|
|
account: PropTypes.object,
|
|
|
|
className: PropTypes.string,
|
|
|
|
displayAddress: PropTypes.bool,
|
|
|
|
handleClick: PropTypes.func,
|
|
|
|
icon: PropTypes.node,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|