1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/eth-balance.js

105 lines
2.7 KiB
JavaScript
Raw Normal View History

2016-05-18 22:41:08 +02: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 23:20:27 +02:00
const FiatValue = require('./fiat-value.js')
module.exports = EthBalanceComponent
2016-05-18 22:41:08 +02:00
inherits(EthBalanceComponent, Component)
2016-06-21 22:18:32 +02:00
function EthBalanceComponent () {
2016-05-18 22:41:08 +02:00
Component.call(this)
}
2016-06-21 22:18:32 +02:00
EthBalanceComponent.prototype.render = function () {
2016-09-03 23:20:27 +02:00
var props = this.props
2016-12-24 02:22:46 +01:00
let { value } = props
const { style, width } = props
var needsParse = this.props.needsParse !== undefined ? this.props.needsParse : true
2016-12-24 02:22:46 +01:00
value = value ? formatBalance(value, 6, needsParse) : '...'
2016-05-18 22:41:08 +02:00
return (
h('.ether-balance.ether-balance-amount', {
style,
2016-05-18 22:41:08 +02:00
}, [
h('div', {
2016-05-18 22:41:08 +02:00
style: {
display: 'inline',
width,
2016-05-18 22:41:08 +02:00
},
}, this.renderBalance(value)),
2016-05-18 22:41:08 +02:00
])
)
}
EthBalanceComponent.prototype.renderBalance = function (value) {
2016-09-03 23:20:27 +02:00
var props = this.props
const {
conversionRate,
shorten,
incoming,
currentCurrency,
hideTooltip,
styleOveride,
} = props
const { fontSize, color, fontFamily, lineHeight } = styleOveride
2016-06-30 20:15:32 +02:00
if (value === 'None') return value
2016-12-24 02:22:46 +01:00
if (value === '...') return value
var balanceObj = generateBalanceObject(value, 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
if (shorten) {
balance = balanceObj.shortBalance
} else {
balance = balanceObj.balance
}
var label = balanceObj.label
const tooltipProps = hideTooltip ? {} : {
position: 'bottom',
title: `${ethNumber} ${ethSuffix}`,
};
2016-06-30 20:15:32 +02:00
return (
h(hideTooltip ? 'div' : Tooltip,
tooltipProps,
h('div.flex-column', [
h('.flex-row', {
style: {
alignItems: 'flex-end',
lineHeight: lineHeight || '13px',
fontFamily: fontFamily || 'Montserrat Light',
textRendering: 'geometricPrecision',
},
}, [
h('div', {
style: {
width: '100%',
textAlign: 'right',
fontSize: fontSize || 'inherit',
color: color || 'inherit',
},
}, incoming ? `+${balance}` : balance),
h('div', {
style: {
color: color || '#AEAEAE',
fontSize: fontSize || '12px',
marginLeft: '5px',
},
}, label),
]),
2016-09-03 23:20:27 +02:00
showFiat ? h(FiatValue, { value: props.value, conversionRate, currentCurrency }) : null,
]))
2016-06-30 20:15:32 +02:00
)
}