You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.5 KiB
63 lines
1.5 KiB
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const formatBalance = require('../util').formatBalance
|
|
|
|
module.exports = FiatValue
|
|
|
|
inherits(FiatValue, Component)
|
|
function FiatValue () {
|
|
Component.call(this)
|
|
}
|
|
|
|
FiatValue.prototype.render = function () {
|
|
const props = this.props
|
|
const { conversionRate, currentCurrency } = props
|
|
|
|
const value = formatBalance(props.value, 6)
|
|
|
|
if (value === 'None') return value
|
|
var fiatDisplayNumber, fiatTooltipNumber
|
|
var splitBalance = value.split(' ')
|
|
|
|
if (conversionRate !== 0) {
|
|
fiatTooltipNumber = Number(splitBalance[0]) * conversionRate
|
|
fiatDisplayNumber = fiatTooltipNumber.toFixed(2)
|
|
} else {
|
|
fiatDisplayNumber = 'N/A'
|
|
fiatTooltipNumber = 'Unknown'
|
|
}
|
|
|
|
return fiatDisplay(fiatDisplayNumber, currentCurrency)
|
|
}
|
|
|
|
function fiatDisplay (fiatDisplayNumber, fiatSuffix) {
|
|
if (fiatDisplayNumber !== 'N/A') {
|
|
return h('.flex-row', {
|
|
style: {
|
|
alignItems: 'flex-end',
|
|
lineHeight: '13px',
|
|
fontFamily: 'Montserrat Light',
|
|
textRendering: 'geometricPrecision',
|
|
},
|
|
}, [
|
|
h('div', {
|
|
style: {
|
|
width: '100%',
|
|
textAlign: 'right',
|
|
fontSize: '12px',
|
|
color: '#333333',
|
|
},
|
|
}, fiatDisplayNumber),
|
|
h('div', {
|
|
style: {
|
|
color: '#AEAEAE',
|
|
marginLeft: '5px',
|
|
fontSize: '12px',
|
|
},
|
|
}, fiatSuffix),
|
|
])
|
|
} else {
|
|
return h('div')
|
|
}
|
|
}
|
|
|