aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/eth-balance.js
blob: 79fc1d25603535e0e28c286b0e1f6ecea9b3ed1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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)
function EthBalanceComponent () {
  Component.call(this)
}

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',
        },
      }, balance + ' '),
      h(tagName, {
        style: {
          color: props.labelColor || '#AEAEAE',
          fontSize: props.fontSize || '12px',
        },
      }, label),
    ])
  )
}