aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/eth-balance.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-07-08 04:41:32 +0800
committerkumavis <aaron@kumavis.me>2016-07-08 04:41:32 +0800
commit0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1 (patch)
tree2d857802097abf5ebe332d85b9a5f08ec7cbdf83 /ui/app/components/eth-balance.js
parent3cd502a1639187230ef7dedd798dee6639d68143 (diff)
parent5a99d2a77c9029ecbf78d6859db30bcfec0f2eca (diff)
downloadtangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar.gz
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar.bz2
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar.lz
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar.xz
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.tar.zst
tangerine-wallet-browser-0bb8b8cacc67cdf3cf3c658e4fddb5ab69bfb3e1.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin into ConfirmationStyle
Diffstat (limited to 'ui/app/components/eth-balance.js')
-rw-r--r--ui/app/components/eth-balance.js57
1 files changed, 36 insertions, 21 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js
index 79fc1d256..975ba3acd 100644
--- a/ui/app/components/eth-balance.js
+++ b/ui/app/components/eth-balance.js
@@ -2,7 +2,8 @@ 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')
module.exports = EthBalanceComponent
inherits(EthBalanceComponent, Component)
@@ -32,34 +33,48 @@ EthBalanceComponent.prototype.render = function () {
}
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 balanceObj = generateBalanceObject(value)
+ var balance = balanceObj.balance
+ var label = balanceObj.label
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(Tooltip, {
+ position: 'bottom',
+ title: value.split(' ')[0],
}, [
- h(tagName, {
+ h(topTag, {
style: {
- fontSize: props.fontSize || '12px',
+ alignItems: 'flex-end',
+ lineHeight: props.fontSize || '13px',
+ fontFamily: 'Montserrat Regular',
+ textRendering: 'geometricPrecision',
},
- }, balance + ' '),
- h(tagName, {
- style: {
- color: props.labelColor || '#AEAEAE',
- fontSize: props.fontSize || '12px',
- },
- }, label),
+ }, [
+ h(tagName, {
+ style: {
+ fontSize: props.fontSize || '12px',
+ },
+ }, balance + ' '),
+ h(tagName, {
+ style: {
+ color: props.labelColor || '#AEAEAE',
+ fontSize: props.fontSize || '12px',
+ },
+ }, [
+ h('div', balance),
+ h('div', {
+ style: {
+ color: '#AEAEAE',
+ fontSize: '12px',
+ },
+ }, label),
+ ]),
+ ])
])
+
)
}