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

90 lines
2.3 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
2016-09-03 23:20:27 +02:00
var style = props.style
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-09-03 23:20:27 +02:00
var width = props.width
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-12-24 02:22:46 +01:00
if (value === '...') 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]
const showFiat = 'showFiat' in props ? props.showFiat : true
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-09-07 02:08:56 +02:00
}, h('div.flex-column', [
2016-09-07 02:30:38 +02: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-07 02:30:38 +02:00
color: ' #AEAEAE',
fontSize: '12px',
marginLeft: '5px',
},
2016-09-07 02:30:38 +02:00
}, label),
]),
2016-09-03 23:20:27 +02:00
2016-09-07 02:30:38 +02:00
showFiat ? h(FiatValue, { value: props.value }) : null,
]))
2016-06-30 20:15:32 +02:00
)
}