nifty-wallet/ui/app/components/eth-balance.js

90 lines
2.3 KiB
JavaScript
Raw Normal View History

2016-05-18 13:41:08 -07:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const formatBalance = require('../util').formatBalance
const generateBalanceObject = require('../util').generateBalanceObject
const Tooltip = require('./tooltip.js')
2016-09-03 14:20:27 -07:00
const FiatValue = require('./fiat-value.js')
module.exports = EthBalanceComponent
2016-05-18 13:41:08 -07:00
inherits(EthBalanceComponent, Component)
2016-06-21 13:18:32 -07:00
function EthBalanceComponent () {
2016-05-18 13:41:08 -07:00
Component.call(this)
}
2016-06-21 13:18:32 -07:00
EthBalanceComponent.prototype.render = function () {
2016-09-03 14:20:27 -07:00
var props = this.props
2016-12-23 17:22:46 -08:00
let { value } = props
2016-09-03 14:20:27 -07:00
var style = props.style
var needsParse = this.props.needsParse !== undefined ? this.props.needsParse : true
2016-12-23 17:22:46 -08:00
value = value ? formatBalance(value, 6, needsParse) : '...'
2016-09-03 14:20:27 -07:00
var width = props.width
2016-05-18 13:41:08 -07:00
return (
h('.ether-balance.ether-balance-amount', {
2016-05-18 13:41:08 -07:00
style: style,
}, [
h('div', {
2016-05-18 13:41:08 -07:00
style: {
display: 'inline',
width: width,
2016-05-18 13:41:08 -07:00
},
}, this.renderBalance(value)),
2016-05-18 13:41:08 -07:00
])
)
}
EthBalanceComponent.prototype.renderBalance = function (value) {
2016-09-03 14:20:27 -07:00
var props = this.props
2016-06-30 11:15:32 -07:00
if (value === 'None') return value
2016-12-23 17:22:46 -08:00
if (value === '...') return value
2016-09-03 14:20:27 -07:00
var balanceObj = generateBalanceObject(value, props.shorten ? 1 : 3)
var balance
var splitBalance = value.split(' ')
var ethNumber = splitBalance[0]
var ethSuffix = splitBalance[1]
const showFiat = 'showFiat' in props ? props.showFiat : true
2016-09-03 14:20:27 -07:00
if (props.shorten) {
balance = balanceObj.shortBalance
} else {
balance = balanceObj.balance
}
var label = balanceObj.label
2016-06-30 11:15:32 -07:00
return (
h(Tooltip, {
position: 'bottom',
title: `${ethNumber} ${ethSuffix}`,
2016-09-06 17:08:56 -07:00
}, h('div.flex-column', [
2016-09-06 17:30:38 -07:00
h('.flex-row', {
style: {
alignItems: 'flex-end',
lineHeight: '13px',
fontFamily: 'Montserrat Light',
textRendering: 'geometricPrecision',
},
}, [
h('div', {
style: {
width: '100%',
textAlign: 'right',
},
}, this.props.incoming ? `+${balance}` : balance),
h('div', {
style: {
2016-09-06 17:30:38 -07:00
color: ' #AEAEAE',
fontSize: '12px',
marginLeft: '5px',
},
2016-09-06 17:30:38 -07:00
}, label),
]),
2016-09-03 14:20:27 -07:00
2016-09-06 17:30:38 -07:00
showFiat ? h(FiatValue, { value: props.value }) : null,
]))
2016-06-30 11:15:32 -07:00
)
}