A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/components/send_/send-content/send-from-row/send-from-row.component.js

65 lines
1.7 KiB

7 years ago
import React, { Component } from 'react'
import PropTypes from 'prop-types'
7 years ago
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
import FromDropdown from './from-dropdown/from-dropdown.component'
7 years ago
export default class SendFromRow extends Component {
static propTypes = {
closeFromDropdown: PropTypes.func,
conversionRate: PropTypes.number,
from: PropTypes.object,
7 years ago
fromAccounts: PropTypes.array,
fromDropdownOpen: PropTypes.bool,
openFromDropdown: PropTypes.func,
tokenContract: PropTypes.object,
updateSendFrom: PropTypes.func,
updateSendTokenBalance: PropTypes.func,
};
async handleFromChange (newFrom) {
const {
updateSendFrom,
tokenContract,
updateSendTokenBalance,
} = this.props
if (tokenContract) {
const usersToken = await tokenContract.balanceOf(newFrom.address)
updateSendTokenBalance(usersToken)
}
updateSendFrom(newFrom)
}
render () {
const {
from,
fromAccounts,
conversionRate,
fromDropdownOpen,
tokenContract,
openFromDropdown,
closeFromDropdown,
} = this.props
console.log(`$% SendFromRow fromAccounts`, fromAccounts);
7 years ago
return (
<SendRowWrapper label={`${this.context.t('from')}:`}>
<FromDropdown
dropdownOpen={fromDropdownOpen}
accounts={fromAccounts}
selectedAccount={from}
onSelect={newFrom => this.handleFromChange(newFrom)}
openDropdown={() => openFromDropdown()}
closeDropdown={() => closeFromDropdown()}
conversionRate={conversionRate}
/>
</SendRowWrapper>
);
}
}
SendFromRow.contextTypes = {
t: PropTypes.func,
}