aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/eth-balance.js
blob: 279feba35edfffb64e2985aced3c99bd24c90df8 (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
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 state = this.props
  var style = state.style
  var value = formatBalance(state.value)

  return (

    h('.ether-balance', {
      style: style,
    }, [
      h('.ether-balance-amount', {
        style: {
          display: 'inline',
        },
      }, this.renderBalance(value)),
    ])

  )
}

EthBalanceComponent.prototype.renderBalance = function (value) {

  if (value === 'None') return value

  var balance = value[0]
  var label = value[1]

  return (
    h('.flex-column',[
      h('div', balance),
      h('div', label)
    ])
  )

}