mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
b0890b6b32
This changeset enables the ESLint rule enforcing a single notation for boolean attributes in JSX—explictly setting the value to `true` is no longer allowed (as it was never needed).[1] From the docs for JSX:[2] > If you pass no value for a prop, it defaults to `true`. [1]:https://github.com/yannickcr/eslint-plugin-react/blob/80935658/docs/rules/jsx-boolean-value.md [2]:https://reactjs.org/docs/jsx-in-depth.html#props-default-to-true I have chosen to use this default as it the most consistent with HTML (a la `checked` and `disabled`).
109 lines
3.0 KiB
JavaScript
109 lines
3.0 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
import { checksumAddress } from '../../../helpers/utils/util'
|
|
import Identicon from '../../../components/ui/identicon'
|
|
import UserPreferencedCurrencyDisplay from '../../../components/app/user-preferenced-currency-display'
|
|
import { PRIMARY, SECONDARY } from '../../../helpers/constants/common'
|
|
import Tooltip from '../../../components/ui/tooltip-v2'
|
|
|
|
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,
|
|
balanceIsCached: PropTypes.bool,
|
|
showFiat: PropTypes.bool,
|
|
};
|
|
|
|
static defaultProps = {
|
|
showFiat: true,
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
render () {
|
|
const {
|
|
account,
|
|
className,
|
|
displayAddress = false,
|
|
displayBalance = true,
|
|
handleClick,
|
|
icon = null,
|
|
balanceIsCached,
|
|
showFiat,
|
|
} = this.props
|
|
|
|
const { name, address, balance } = account || {}
|
|
|
|
return (<div
|
|
className={`account-list-item ${className}`}
|
|
onClick={() => handleClick && handleClick({ name, address, balance })}
|
|
>
|
|
|
|
<div className="account-list-item__top-row">
|
|
<Identicon
|
|
address={address}
|
|
className="account-list-item__identicon"
|
|
diameter={18}
|
|
/>
|
|
|
|
<div className="account-list-item__account-name">{ name || address }</div>
|
|
|
|
{icon && <div className="account-list-item__icon">{ icon }</div>}
|
|
|
|
</div>
|
|
|
|
{displayAddress && name && <div className="account-list-item__account-address">
|
|
{ checksumAddress(address) }
|
|
</div>}
|
|
|
|
{
|
|
displayBalance && (
|
|
<Tooltip
|
|
position="left"
|
|
title={this.context.t('balanceOutdated')}
|
|
disabled={!balanceIsCached}
|
|
style={{
|
|
left: '-20px !important',
|
|
}}
|
|
>
|
|
<div className={classnames('account-list-item__account-balances', {
|
|
'account-list-item__cached-balances': balanceIsCached,
|
|
})}>
|
|
<div className="account-list-item__primary-cached-container">
|
|
<UserPreferencedCurrencyDisplay
|
|
type={PRIMARY}
|
|
value={balance}
|
|
hideTitle
|
|
/>
|
|
{
|
|
balanceIsCached ? <span className="account-list-item__cached-star">*</span> : null
|
|
}
|
|
</div>
|
|
{
|
|
showFiat && (
|
|
<UserPreferencedCurrencyDisplay
|
|
type={SECONDARY}
|
|
value={balance}
|
|
hideTitle
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
</Tooltip>
|
|
)
|
|
}
|
|
|
|
</div>)
|
|
}
|
|
}
|