aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-from-row/send-from-row.component.js
blob: 3e0e0de223f5226372600ea85fbb52d3102d7eae (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
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowWrapper from '../send-row-wrapper/'
import FromDropdown from './from-dropdown/'

export default class SendFromRow extends Component {

  static propTypes = {
    closeFromDropdown: PropTypes.func,
    conversionRate: PropTypes.number,
    from: PropTypes.object,
    fromAccounts: PropTypes.array,
    fromDropdownOpen: PropTypes.bool,
    openFromDropdown: PropTypes.func,
    tokenContract: PropTypes.object,
    updateSendFrom: PropTypes.func,
    setSendTokenBalance: PropTypes.func,
  };

  static contextTypes = {
    t: PropTypes.func,
  };

  async handleFromChange (newFrom) {
    const {
      updateSendFrom,
      tokenContract,
      setSendTokenBalance,
    } = this.props

    if (tokenContract) {
      const usersToken = await tokenContract.balanceOf(newFrom.address)
      setSendTokenBalance(usersToken)
    }
    updateSendFrom(newFrom)
  }

  render () {
    const {
      closeFromDropdown,
      conversionRate,
      from,
      fromAccounts,
      fromDropdownOpen,
      openFromDropdown,
    } = this.props

    return (
      <SendRowWrapper label={`${this.context.t('from')}:`}>
        <FromDropdown
          accounts={fromAccounts}
          closeDropdown={() => closeFromDropdown()}
          conversionRate={conversionRate}
          dropdownOpen={fromDropdownOpen}
          onSelect={newFrom => this.handleFromChange(newFrom)}
          openDropdown={() => openFromDropdown()}
          selectedAccount={from}
        />
      </SendRowWrapper>
    )
  }

}