mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { PRIMARY, SECONDARY, ETH } from '../../constants/common'
|
|
import CurrencyDisplay from '../currency-display'
|
|
|
|
export default class UserPreferencedCurrencyDisplay extends PureComponent {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
prefix: PropTypes.string,
|
|
value: PropTypes.string,
|
|
numberOfDecimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
hideLabel: PropTypes.bool,
|
|
style: PropTypes.object,
|
|
showEthLogo: PropTypes.bool,
|
|
ethLogoHeight: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
// Used in container
|
|
type: PropTypes.oneOf([PRIMARY, SECONDARY]),
|
|
ethNumberOfDecimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
fiatNumberOfDecimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
ethPrefix: PropTypes.string,
|
|
fiatPrefix: PropTypes.string,
|
|
// From container
|
|
currency: PropTypes.string,
|
|
nativeCurrency: PropTypes.string,
|
|
}
|
|
|
|
renderEthLogo () {
|
|
const { currency, showEthLogo, ethLogoHeight = 12 } = this.props
|
|
|
|
return currency === ETH && showEthLogo && (
|
|
<img
|
|
src="/images/eth.svg"
|
|
height={ethLogoHeight}
|
|
/>
|
|
)
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<CurrencyDisplay
|
|
{...this.props}
|
|
prefixComponent={this.renderEthLogo()}
|
|
/>
|
|
)
|
|
}
|
|
}
|