aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/send/send-content/send-from-row/send-from-row.component.js
blob: 3e0e0de223f5226372600ea85fbb52d3102d7eae (plain) (tree)
1
2
3
4
5
6
7
8
9

                                        

                                                 




                                                    

                                     




                                     
                                        

    



                         



                                    
                          



                                                                       
                                     





                           

                        

                   
                       
                       
                  
 


                                                           
                                 

                                                   



                                                              

                       
     


   
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>
    )
  }

}