nifty-wallet/ui/app/send-v2.js

639 lines
15 KiB
JavaScript
Raw Normal View History

const { inherits } = require('util')
const PersistentForm = require('../lib/persistent-form')
const h = require('react-hyperscript')
2018-03-19 12:37:10 -07:00
const t = require('../i18n')
const ethAbi = require('ethereumjs-abi')
2017-10-26 09:43:12 -07:00
const ethUtil = require('ethereumjs-util')
const FromDropdown = require('./components/send/from-dropdown')
2017-10-06 03:30:45 -07:00
const ToAutoComplete = require('./components/send/to-autocomplete')
2017-10-09 09:25:23 -07:00
const CurrencyDisplay = require('./components/send/currency-display')
const MemoTextArea = require('./components/send/memo-textarea')
const GasFeeDisplay = require('./components/send/gas-fee-display-v2')
2017-10-26 09:43:12 -07:00
const {
TOKEN_TRANSFER_FUNCTION_SIGNATURE,
2017-10-26 09:43:12 -07:00
} = require('./components/send/send-constants')
const {
multiplyCurrencies,
conversionGreaterThan,
2017-10-26 09:43:12 -07:00
subtractCurrencies,
} = require('./conversion-util')
const {
calcTokenAmount,
} = require('./token-util')
const {
isBalanceSufficient,
isTokenBalanceSufficient,
} = require('./components/send/send-utils')
2017-10-17 13:13:20 -07:00
const { isValidAddress } = require('./util')
module.exports = SendTransactionScreen
inherits(SendTransactionScreen, PersistentForm)
function SendTransactionScreen () {
PersistentForm.call(this)
this.state = {
2017-10-23 09:24:47 -07:00
fromDropdownOpen: false,
toDropdownOpen: false,
2017-10-17 13:13:20 -07:00
errors: {
to: null,
amount: null,
},
gasLoadingError: false,
}
this.handleToChange = this.handleToChange.bind(this)
this.handleAmountChange = this.handleAmountChange.bind(this)
2017-10-17 13:13:20 -07:00
this.validateAmount = this.validateAmount.bind(this)
}
const getParamsForGasEstimate = function (selectedAddress, symbol, data) {
const estimatedGasParams = {
from: selectedAddress,
gas: '746a528800',
}
if (symbol) {
Object.assign(estimatedGasParams, { value: '0x0' })
}
if (data) {
Object.assign(estimatedGasParams, { data })
}
return estimatedGasParams
}
SendTransactionScreen.prototype.updateSendTokenBalance = function (usersToken) {
if (!usersToken) return
const {
selectedToken = {},
updateSendTokenBalance,
} = this.props
const { decimals } = selectedToken || {}
const tokenBalance = calcTokenAmount(usersToken.balance.toString(), decimals)
updateSendTokenBalance(tokenBalance)
}
SendTransactionScreen.prototype.componentWillMount = function () {
const {
updateTokenExchangeRate,
selectedToken = {},
} = this.props
const { symbol } = selectedToken || {}
if (symbol) {
updateTokenExchangeRate(symbol)
}
this.updateGas()
}
SendTransactionScreen.prototype.updateGas = function () {
const {
selectedToken = {},
getGasPrice,
estimateGas,
selectedAddress,
data,
updateGasTotal,
from,
tokenContract,
2017-11-08 08:44:48 -08:00
editingTransactionId,
gasPrice,
gasLimit,
} = this.props
const { symbol } = selectedToken || {}
const tokenBalancePromise = tokenContract
? tokenContract.balanceOf(from.address)
: Promise.resolve()
tokenBalancePromise
.then(usersToken => this.updateSendTokenBalance(usersToken))
2017-11-08 08:44:48 -08:00
if (!editingTransactionId) {
const estimateGasParams = getParamsForGasEstimate(selectedAddress, symbol, data)
2017-11-08 08:44:48 -08:00
Promise
.all([
getGasPrice(),
estimateGas(estimateGasParams),
])
.then(([gasPrice, gas]) => {
const newGasTotal = this.getGasTotal(gas, gasPrice)
2017-11-08 08:44:48 -08:00
updateGasTotal(newGasTotal)
this.setState({ gasLoadingError: false })
})
.catch(err => {
this.setState({ gasLoadingError: true })
})
2017-11-08 08:44:48 -08:00
} else {
const newGasTotal = this.getGasTotal(gasLimit, gasPrice)
2017-11-08 08:44:48 -08:00
updateGasTotal(newGasTotal)
}
}
SendTransactionScreen.prototype.getGasTotal = function (gasLimit, gasPrice) {
return multiplyCurrencies(gasLimit, gasPrice, {
toNumericBase: 'hex',
multiplicandBase: 16,
multiplierBase: 16,
})
}
SendTransactionScreen.prototype.componentDidUpdate = function (prevProps) {
const {
from: { balance },
gasTotal,
tokenBalance,
amount,
selectedToken,
network,
} = this.props
const {
from: { balance: prevBalance },
gasTotal: prevGasTotal,
tokenBalance: prevTokenBalance,
network: prevNetwork,
} = prevProps
const uninitialized = [prevBalance, prevGasTotal].every(n => n === null)
const balanceHasChanged = balance !== prevBalance
const gasTotalHasChange = gasTotal !== prevGasTotal
const tokenBalanceHasChanged = selectedToken && tokenBalance !== prevTokenBalance
const amountValidationChange = balanceHasChanged || gasTotalHasChange || tokenBalanceHasChanged
if (!uninitialized) {
if (amountValidationChange) {
this.validateAmount(amount)
}
if (network !== prevNetwork && network !== 'loading') {
this.updateGas()
}
}
}
SendTransactionScreen.prototype.renderHeader = function () {
2018-02-12 22:39:15 -08:00
const { selectedToken, clearSend, goHome } = this.props
return h('div.page-container__header', [
2018-03-19 12:37:10 -07:00
h('div.page-container__title', selectedToken ? t('sendTokens') : t('sendETH')),
2018-03-19 12:37:10 -07:00
h('div.page-container__subtitle', t('onlySendToEtherAddress')),
2018-02-12 22:39:15 -08:00
h('div.page-container__header-close', {
onClick: () => {
clearSend()
goHome()
},
}),
])
}
2017-11-02 05:15:59 -07:00
SendTransactionScreen.prototype.renderErrorMessage = function (errorType) {
2017-10-17 13:13:20 -07:00
const { errors } = this.props
2017-11-02 05:15:59 -07:00
const errorMessage = errors[errorType]
2017-10-17 13:13:20 -07:00
return errorMessage
2017-11-02 05:15:59 -07:00
? h('div.send-v2__error', [ errorMessage ])
2017-10-17 13:13:20 -07:00
: null
}
SendTransactionScreen.prototype.handleFromChange = async function (newFrom) {
const {
updateSendFrom,
tokenContract,
} = this.props
if (tokenContract) {
const usersToken = await tokenContract.balanceOf(newFrom.address)
this.updateSendTokenBalance(usersToken)
}
updateSendFrom(newFrom)
}
SendTransactionScreen.prototype.renderFromRow = function () {
const {
from,
fromAccounts,
conversionRate,
} = this.props
2017-10-23 09:24:47 -07:00
const { fromDropdownOpen } = this.state
return h('div.send-v2__form-row', [
h('div.send-v2__form-label', 'From:'),
2017-10-19 10:53:56 -07:00
h('div.send-v2__form-field', [
h(FromDropdown, {
2017-10-23 09:24:47 -07:00
dropdownOpen: fromDropdownOpen,
2017-10-19 10:53:56 -07:00
accounts: fromAccounts,
selectedAccount: from,
onSelect: newFrom => this.handleFromChange(newFrom),
2017-10-23 09:24:47 -07:00
openDropdown: () => this.setState({ fromDropdownOpen: true }),
closeDropdown: () => this.setState({ fromDropdownOpen: false }),
2017-10-19 10:53:56 -07:00
conversionRate,
}),
]),
])
}
2017-10-23 09:24:47 -07:00
SendTransactionScreen.prototype.handleToChange = function (to) {
2017-10-25 01:12:53 -07:00
const {
updateSendTo,
updateSendErrors,
from: {address: from},
} = this.props
2017-10-17 13:13:20 -07:00
let toError = null
if (!to) {
2018-03-19 12:37:10 -07:00
toError = t('required')
2017-10-17 13:13:20 -07:00
} else if (!isValidAddress(to)) {
2018-03-19 12:37:10 -07:00
toError = t('invalidAddressRecipient')
2017-10-25 01:12:53 -07:00
} else if (to === from) {
2018-03-19 12:37:10 -07:00
toError = t('fromToSame')
2017-10-17 13:13:20 -07:00
}
updateSendTo(to)
2017-10-17 13:13:20 -07:00
updateSendErrors({ to: toError })
}
SendTransactionScreen.prototype.renderToRow = function () {
2017-10-23 09:24:47 -07:00
const { toAccounts, errors, to } = this.props
const { toDropdownOpen } = this.state
return h('div.send-v2__form-row', [
2017-10-17 13:13:20 -07:00
h('div.send-v2__form-label', [
2018-03-19 12:37:10 -07:00
t('to'),
2017-10-17 13:13:20 -07:00
2018-03-19 12:37:10 -07:00
this.renderErrorMessage(t('to')),
2017-10-17 13:13:20 -07:00
]),
2017-10-19 10:53:56 -07:00
h('div.send-v2__form-field', [
h(ToAutoComplete, {
to,
2017-10-23 09:24:47 -07:00
accounts: Object.entries(toAccounts).map(([key, account]) => account),
dropdownOpen: toDropdownOpen,
openDropdown: () => this.setState({ toDropdownOpen: true }),
closeDropdown: () => this.setState({ toDropdownOpen: false }),
2017-10-19 10:53:56 -07:00
onChange: this.handleToChange,
inError: Boolean(errors.to),
}),
]),
])
}
SendTransactionScreen.prototype.handleAmountChange = function (value) {
const amount = value
const { updateSendAmount, setMaxModeTo } = this.props
setMaxModeTo(false)
this.validateAmount(amount)
updateSendAmount(amount)
}
2017-10-26 09:43:12 -07:00
SendTransactionScreen.prototype.setAmountToMax = function () {
const {
from: { balance },
updateSendAmount,
updateSendErrors,
2017-10-30 11:07:30 -07:00
tokenBalance,
selectedToken,
gasTotal,
2017-10-26 09:43:12 -07:00
} = this.props
2017-10-30 11:07:30 -07:00
const { decimals } = selectedToken || {}
const multiplier = Math.pow(10, Number(decimals || 0))
2017-10-26 09:43:12 -07:00
2017-10-30 11:07:30 -07:00
const maxAmount = selectedToken
? multiplyCurrencies(tokenBalance, multiplier, {toNumericBase: 'hex'})
: subtractCurrencies(
ethUtil.addHexPrefix(balance),
ethUtil.addHexPrefix(gasTotal),
2017-10-30 11:07:30 -07:00
{ toNumericBase: 'hex' }
)
2017-10-26 09:43:12 -07:00
updateSendErrors({ amount: null })
2017-10-26 09:43:12 -07:00
updateSendAmount(maxAmount)
}
2017-10-17 13:13:20 -07:00
SendTransactionScreen.prototype.validateAmount = function (value) {
const {
from: { balance },
updateSendErrors,
amountConversionRate,
conversionRate,
primaryCurrency,
selectedToken,
gasTotal,
tokenBalance,
2017-10-17 13:13:20 -07:00
} = this.props
const { decimals } = selectedToken || {}
2017-10-17 13:13:20 -07:00
const amount = value
let amountError = null
let sufficientBalance = true
if (gasTotal) {
sufficientBalance = isBalanceSufficient({
amount: selectedToken ? '0x0' : amount,
gasTotal,
balance,
primaryCurrency,
amountConversionRate,
conversionRate,
})
}
const verifyTokenBalance = selectedToken && tokenBalance !== null
let sufficientTokens
if (verifyTokenBalance) {
sufficientTokens = isTokenBalanceSufficient({
tokenBalance,
amount,
decimals,
})
}
2017-10-17 13:13:20 -07:00
const amountLessThanZero = conversionGreaterThan(
{ value: 0, fromNumericBase: 'dec' },
{ value: amount, fromNumericBase: 'hex' },
)
if (conversionRate && !sufficientBalance) {
2018-03-19 12:37:10 -07:00
amountError = t('insufficientFunds')
} else if (verifyTokenBalance && !sufficientTokens) {
2018-03-19 12:37:10 -07:00
amountError = t('insufficientTokens')
2017-10-17 13:13:20 -07:00
} else if (amountLessThanZero) {
2018-03-19 12:37:10 -07:00
amountError = t('negativeETH')
2017-10-17 13:13:20 -07:00
}
updateSendErrors({ amount: amountError })
}
SendTransactionScreen.prototype.renderAmountRow = function () {
const {
selectedToken,
primaryCurrency = 'ETH',
convertedCurrency,
amountConversionRate,
2017-10-17 13:13:20 -07:00
errors,
amount,
setMaxModeTo,
maxModeOn,
gasTotal,
} = this.props
2017-11-08 08:44:48 -08:00
return h('div.send-v2__form-row', [
2017-11-09 14:23:10 -08:00
h('div.send-v2__form-label', [
2017-10-17 13:13:20 -07:00
'Amount:',
this.renderErrorMessage('amount'),
!errors.amount && gasTotal && h('div.send-v2__amount-max', {
2017-10-26 09:43:12 -07:00
onClick: (event) => {
event.preventDefault()
setMaxModeTo(true)
2017-10-26 09:43:12 -07:00
this.setAmountToMax()
},
2018-03-19 12:37:10 -07:00
}, [ !maxModeOn ? t('max') : '' ]),
2017-10-17 13:13:20 -07:00
]),
2017-10-19 10:53:56 -07:00
h('div.send-v2__form-field', [
h(CurrencyDisplay, {
inError: Boolean(errors.amount),
primaryCurrency,
convertedCurrency,
2017-10-20 18:26:18 -07:00
selectedToken,
2017-10-30 15:04:21 -07:00
value: amount || '0x0',
2017-10-19 10:53:56 -07:00
conversionRate: amountConversionRate,
handleChange: this.handleAmountChange,
}),
]),
])
}
SendTransactionScreen.prototype.renderGasRow = function () {
const {
conversionRate,
convertedCurrency,
showCustomizeGasModal,
gasTotal,
} = this.props
const { gasLoadingError } = this.state
return h('div.send-v2__form-row', [
2018-03-19 12:37:10 -07:00
h('div.send-v2__form-label', h('gasFee')),
2017-10-19 10:53:56 -07:00
h('div.send-v2__form-field', [
h(GasFeeDisplay, {
gasTotal,
conversionRate,
convertedCurrency,
2017-10-19 10:53:56 -07:00
onClick: showCustomizeGasModal,
gasLoadingError,
2017-10-19 10:53:56 -07:00
}),
2017-10-20 18:26:18 -07:00
]),
])
}
2017-10-06 03:30:45 -07:00
SendTransactionScreen.prototype.renderMemoRow = function () {
const { updateSendMemo, memo } = this.props
2017-10-06 03:30:45 -07:00
return h('div.send-v2__form-row', [
2017-10-06 03:30:45 -07:00
h('div.send-v2__form-label', 'Transaction Memo:'),
2017-10-06 03:30:45 -07:00
2017-10-19 10:53:56 -07:00
h('div.send-v2__form-field', [
h(MemoTextArea, {
memo,
onChange: (event) => updateSendMemo(event.target.value),
2017-10-20 18:26:18 -07:00
}),
2017-10-19 10:53:56 -07:00
]),
])
}
2017-10-09 09:25:23 -07:00
SendTransactionScreen.prototype.renderForm = function () {
return h('div.send-v2__form', {}, [
2017-10-09 09:25:23 -07:00
this.renderFromRow(),
2017-10-09 09:25:23 -07:00
this.renderToRow(),
2017-10-09 09:25:23 -07:00
this.renderAmountRow(),
2017-10-09 09:25:23 -07:00
this.renderGasRow(),
2017-10-09 09:25:23 -07:00
2017-10-24 22:43:49 -07:00
// this.renderMemoRow(),
])
}
SendTransactionScreen.prototype.renderFooter = function () {
const {
goHome,
clearSend,
gasTotal,
tokenBalance,
selectedToken,
2017-10-24 22:43:49 -07:00
errors: { amount: amountError, to: toError },
} = this.props
2017-10-24 22:43:49 -07:00
const missingTokenBalance = selectedToken && !tokenBalance
2017-10-30 15:04:21 -07:00
const noErrors = !amountError && toError === null
return h('div.page-container__footer', [
h('button.btn-cancel.page-container__footer-button', {
onClick: () => {
clearSend()
goHome()
},
2018-03-19 12:37:10 -07:00
}, t('cancel')),
h('button.btn-clear.page-container__footer-button', {
disabled: !noErrors || !gasTotal || missingTokenBalance,
2017-10-24 22:43:49 -07:00
onClick: event => this.onSubmit(event),
2018-03-19 12:37:10 -07:00
}, t('next')),
])
}
SendTransactionScreen.prototype.render = function () {
return (
h('div.page-container', [
2017-10-09 09:25:23 -07:00
this.renderHeader(),
2017-10-09 09:25:23 -07:00
this.renderForm(),
this.renderFooter(),
])
)
}
2017-10-12 10:29:03 -07:00
SendTransactionScreen.prototype.addToAddressBookIfNew = function (newAddress) {
const { toAccounts, addToAddressBook } = this.props
if (!toAccounts.find(({ address }) => newAddress === address)) {
// TODO: nickname, i.e. addToAddressBook(recipient, nickname)
addToAddressBook(newAddress)
}
}
SendTransactionScreen.prototype.getEditedTx = function () {
const {
from: {address: from},
to,
amount,
gasLimit: gas,
gasPrice,
selectedToken,
editingTransactionId,
unapprovedTxs,
} = this.props
const editingTx = {
...unapprovedTxs[editingTransactionId],
txParams: {
from: ethUtil.addHexPrefix(from),
gas: ethUtil.addHexPrefix(gas),
gasPrice: ethUtil.addHexPrefix(gasPrice),
},
}
if (selectedToken) {
const data = TOKEN_TRANSFER_FUNCTION_SIGNATURE + Array.prototype.map.call(
ethAbi.rawEncode(['address', 'uint256'], [to, ethUtil.addHexPrefix(amount)]),
x => ('00' + x.toString(16)).slice(-2)
).join('')
Object.assign(editingTx.txParams, {
value: ethUtil.addHexPrefix('0'),
to: ethUtil.addHexPrefix(selectedToken.address),
data,
})
} else {
const data = unapprovedTxs[editingTransactionId].txParams.data
Object.assign(editingTx.txParams, {
value: ethUtil.addHexPrefix(amount),
to: ethUtil.addHexPrefix(to),
data,
})
}
return editingTx
}
2017-10-12 10:29:03 -07:00
SendTransactionScreen.prototype.onSubmit = function (event) {
event.preventDefault()
const {
from: {address: from},
2017-10-12 10:29:03 -07:00
to,
amount,
gasLimit: gas,
gasPrice,
signTokenTx,
signTx,
updateTx,
2017-10-12 10:29:03 -07:00
selectedToken,
2017-11-08 08:44:48 -08:00
editingTransactionId,
2017-10-24 22:43:49 -07:00
errors: { amount: amountError, to: toError },
2017-10-12 10:29:03 -07:00
} = this.props
2017-10-30 15:04:21 -07:00
const noErrors = !amountError && toError === null
2017-10-24 22:43:49 -07:00
if (!noErrors) {
return
}
this.addToAddressBookIfNew(to)
2017-11-08 08:44:48 -08:00
if (editingTransactionId) {
const editedTx = this.getEditedTx()
2017-11-08 08:44:48 -08:00
updateTx(editedTx)
} else {
2017-10-12 10:29:03 -07:00
const txParams = {
from,
value: '0',
gas,
gasPrice,
}
2017-10-12 10:29:03 -07:00
if (!selectedToken) {
txParams.value = amount
txParams.to = to
}
selectedToken
? signTokenTx(selectedToken.address, to, amount, txParams)
: signTx(txParams)
}
2017-10-12 10:29:03 -07:00
}