A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/components/eth-balance.js

66 lines
1.5 KiB

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const formatBalance = require('../util').formatBalance
module.exports = EthBalanceComponent
inherits(EthBalanceComponent, Component)
8 years ago
function EthBalanceComponent () {
Component.call(this)
}
8 years ago
EthBalanceComponent.prototype.render = function () {
var props = this.props
var style = props.style
const value = formatBalance(props.value)
return (
h('.ether-balance', {
style: style,
}, [
h('.ether-balance-amount', {
style: {
display: 'inline',
},
}, this.renderBalance(value)),
])
)
}
EthBalanceComponent.prototype.renderBalance = function (value) {
const props = this.props
if (value === 'None') return value
var balance = value.split(' ')[0]
var label = value.split(' ')[1]
var tagName = props.inline ? 'span' : 'div'
var topTag = props.inline ? 'div' : '.flex-column'
return (
h(topTag, {
style: {
alignItems: 'flex-end',
lineHeight: props.fontSize || '13px',
fontFamily: 'Montserrat Regular',
textRendering: 'geometricPrecision',
},
}, [
h(tagName, {
style: {
fontSize: props.fontSize || '12px',
8 years ago
},
}, balance + ' '),
h(tagName, {
style: {
color: props.labelColor || '#AEAEAE',
fontSize: props.fontSize || '12px',
},
}, label),
])
)
}