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

87 lines
2.2 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
var style = props.style
var needsParse = this.props.needsParse !== undefined ? this.props.needsParse : true
2016-09-03 23:20:27 +02:00
const value = formatBalance(props.value, 6, needsParse)
var width = props.width
const showFiat = 'showFiat' in props ? props.showFiat : true
2016-05-18 22:41:08 +02:00
return (
h('.ether-balance.ether-balance-amount', {
2016-05-18 22:41:08 +02:00
style: style,
}, [
h('div', {
2016-05-18 22:41:08 +02:00
style: {
display: 'inline',
width: 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
2016-06-30 20:15:32 +02:00
if (value === 'None') return value
2016-09-03 23:20:27 +02:00
var balanceObj = generateBalanceObject(value, props.shorten ? 1 : 3)
var balance
var splitBalance = value.split(' ')
var ethNumber = splitBalance[0]
var ethSuffix = splitBalance[1]
2016-09-03 23:20:27 +02:00
if (props.shorten) {
balance = balanceObj.shortBalance
} else {
balance = balanceObj.balance
}
var label = balanceObj.label
2016-06-30 20:15:32 +02:00
return (
h(Tooltip, {
position: 'bottom',
title: `${ethNumber} ${ethSuffix}`,
2016-06-30 21:43:28 +02:00
}, [
h('.flex-column', {
2016-06-30 21:43:28 +02:00
style: {
alignItems: 'flex-end',
lineHeight: '13px',
fontFamily: 'Montserrat Light',
textRendering: 'geometricPrecision',
2016-07-07 21:41:07 +02:00
},
}, [
h('div', {
style: {
width: '100%',
textAlign: 'right',
},
}, this.props.incoming ? `+${balance}` : balance),
h('div', {
style: {
color: ' #AEAEAE',
fontSize: '12px',
},
}, label),
2016-07-07 22:45:06 +02:00
]),
2016-09-03 23:20:27 +02:00
fiatValue ? h(FiatValue, { value: props.value }) : null,
2016-06-30 20:15:32 +02:00
])
)
}