aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-list.js
blob: 6589dea62b58d7ebb51e0e22a8cadcaec5397fda (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
66
67
68
69
70
71
72
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const TokenTracker = require('eth-token-tracker')
const TokenCell = require('./token-cell.js')

module.exports = TokenList

inherits(TokenList, Component)
function TokenList () {

  // Hard coded for development for now:
  const tokens = [
    { address: '0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5', symbol: 'REP', balance: 'aa'},
    { address: '0xc66ea802717bfb9833400264dd12c2bceaa34a6d', symbol: 'MKR', balance: '1000', decimals: 18},
    { address: '0xa74476443119A942dE498590Fe1f2454d7D4aC0d', symbol: 'GOL', balance: 'ff'},
    { address: '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', symbol: 'SNGLS', balance: '0' },
  ]

  this.state = { tokens }
  Component.call(this)
}

TokenList.prototype.render = function () {
  const tokens = this.state.tokens
  const network = this.props.network

  const tokenViews = tokens.map((tokenData) => {
    tokenData.network = network
    return h(TokenCell, tokenData)
  })

  return (
    h('ol', [h('style', `

    li.token-cell {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 10px;
    }

    li.token-cell > h3 {
      margin-left: 12px;
    }

    li.token-cell:hover {
      background: white;
      cursor: pointer;
    }

    `)].concat(tokenViews))
  )
}

TokenList.prototype.componentDidMount = function () {
  const { userAddress } = this.props

  this.tracker = new TokenTracker({
    userAddress,
    provider: web3.currentProvider,
    tokens: this.state.tokens,
  })

  this.setState({ tokens: this.tracker.serialize() })
  this.tracker.on('update', (tokenData) => this.setState({ tokens: tokenData }))
  this.tracker.updateBalances()
}

TokenList.prototype.componentWillUnmount = function () {
  this.tracker.stop()
}