1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 02:58:09 +01:00
metamask-extension/ui/app/components/eth-balance.js

76 lines
1.8 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-05-18 22:41:08 +02:00
module.exports = EthBalanceComponent
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-07-07 21:27:18 +02:00
var props = this.props
var style = props.style
2016-07-07 07:48:02 +02:00
2016-07-07 21:27:18 +02:00
const value = formatBalance(props.value)
2016-05-18 22:41:08 +02:00
return (
h('.ether-balance', {
style: style,
}, [
h('.ether-balance-amount', {
style: {
display: 'inline',
},
2016-06-30 20:15:32 +02:00
}, this.renderBalance(value)),
2016-05-18 22:41:08 +02:00
])
)
}
2016-06-30 20:15:32 +02:00
EthBalanceComponent.prototype.renderBalance = function (value) {
2016-07-07 21:27:18 +02:00
const props = this.props
2016-06-30 20:15:32 +02:00
if (value === 'None') return value
var balanceObj = generateBalanceObject(value)
var balance = balanceObj.balance
var label = balanceObj.label
2016-07-07 21:27:18 +02:00
var tagName = props.inline ? 'span' : 'div'
var topTag = props.inline ? 'div' : '.flex-column'
2016-06-30 20:15:32 +02:00
return (
h(Tooltip, {
position: 'bottom',
title: value.split(' ')[0],
2016-06-30 21:43:28 +02:00
}, [
h(topTag, {
2016-06-30 21:43:28 +02:00
style: {
alignItems: 'flex-end',
lineHeight: props.fontSize || '13px',
fontFamily: 'Montserrat Regular',
textRendering: 'geometricPrecision',
2016-07-07 21:41:07 +02:00
},
}, [
h(tagName, {
style: {
color: props.labelColor || '#AEAEAE',
fontSize: props.fontSize || '12px',
},
2016-07-08 02:34:30 +02:00
}, [
h('div', balance),
h('div', {
style: {
color: '#AEAEAE',
fontSize: '12px',
},
}, label),
]),
2016-07-07 22:45:06 +02:00
]),
2016-06-30 20:15:32 +02:00
])
2016-07-08 02:34:30 +02:00
2016-06-30 20:15:32 +02:00
)
}