mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Adds updateTransaction to background and used it to update after editing in send-v2.
This commit is contained in:
parent
1f1fc2c49e
commit
bf4043c59b
@ -184,16 +184,15 @@ module.exports = class TransactionController extends EventEmitter {
|
||||
return await this.txGasUtil.analyzeGasUsage(txMeta)
|
||||
}
|
||||
|
||||
async updateTransaction (txMeta) {
|
||||
this.txStateManager.updateTx(txMeta, 'confTx: user updated transaction')
|
||||
}
|
||||
|
||||
async updateAndApproveTransaction (txMeta) {
|
||||
this.txStateManager.updateTx(txMeta, 'confTx: user approved transaction')
|
||||
await this.approveTransaction(txMeta.id)
|
||||
}
|
||||
|
||||
async updateAndCancelTransaction (txMeta) {
|
||||
this.txStateManager.updateTx(txMeta, 'confTx: user rejected transaction')
|
||||
await this.cancelTransaction(txMeta.id)
|
||||
}
|
||||
|
||||
async approveTransaction (txId) {
|
||||
let nonceLock
|
||||
try {
|
||||
|
@ -365,8 +365,8 @@ module.exports = class MetamaskController extends EventEmitter {
|
||||
|
||||
// txController
|
||||
cancelTransaction: nodeify(txController.cancelTransaction, txController),
|
||||
updateTransaction: nodeify(txController.updateTransaction, txController),
|
||||
updateAndApproveTransaction: nodeify(txController.updateAndApproveTransaction, txController),
|
||||
updateAndCancelTransaction: nodeify(txController.updateAndCancelTransaction, txController),
|
||||
|
||||
// messageManager
|
||||
signMessage: nodeify(this.signMessage, this),
|
||||
|
@ -125,8 +125,8 @@ var actions = {
|
||||
sendTx: sendTx,
|
||||
signTx: signTx,
|
||||
signTokenTx: signTokenTx,
|
||||
updateTransaction,
|
||||
updateAndApproveTx,
|
||||
updateAndCancelTx,
|
||||
cancelTx: cancelTx,
|
||||
completedTx: completedTx,
|
||||
txError: txError,
|
||||
@ -693,29 +693,28 @@ function signTokenTx (tokenAddress, toAddress, amount, txData) {
|
||||
}
|
||||
}
|
||||
|
||||
function updateAndApproveTx (txData) {
|
||||
log.info('actions: updateAndApproveTx: ' + JSON.stringify(txData))
|
||||
function updateTransaction (txData) {
|
||||
log.info('actions: updateTx: ' + JSON.stringify(txData))
|
||||
return (dispatch) => {
|
||||
log.debug(`actions calling background.updateAndApproveTx`)
|
||||
background.updateAndApproveTransaction(txData, (err) => {
|
||||
log.debug(`actions calling background.updateTx`)
|
||||
background.updateTransaction(txData, (err) => {
|
||||
dispatch(actions.hideLoadingIndication())
|
||||
dispatch(actions.updateTransactionParams(txData.id, txData.txParams))
|
||||
dispatch(actions.clearSend())
|
||||
if (err) {
|
||||
dispatch(actions.txError(err))
|
||||
dispatch(actions.goHome())
|
||||
return log.error(err.message)
|
||||
}
|
||||
dispatch(actions.completedTx(txData.id))
|
||||
dispatch(actions.showConfTxPage({ id: txData.id }))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function updateAndCancelTx (txData) {
|
||||
log.info('actions: updateAndCancelTx: ' + JSON.stringify(txData))
|
||||
function updateAndApproveTx (txData) {
|
||||
log.info('actions: updateAndApproveTx: ' + JSON.stringify(txData))
|
||||
return (dispatch) => {
|
||||
log.debug(`actions calling background.updateAndCancelTx`)
|
||||
background.updateAndCancelTransaction(txData, (err) => {
|
||||
log.debug(`actions calling background.updateAndApproveTx`)
|
||||
background.updateAndApproveTransaction(txData, (err) => {
|
||||
dispatch(actions.hideLoadingIndication())
|
||||
dispatch(actions.updateTransactionParams(txData.id, txData.txParams))
|
||||
dispatch(actions.clearSend())
|
||||
@ -773,6 +772,7 @@ function cancelTx (txData) {
|
||||
return (dispatch) => {
|
||||
log.debug(`background.cancelTransaction`)
|
||||
background.cancelTransaction(txData.id, () => {
|
||||
dispatch(actions.clearSend())
|
||||
dispatch(actions.completedTx(txData.id))
|
||||
})
|
||||
}
|
||||
|
@ -55,7 +55,6 @@ function mapDispatchToProps (dispatch) {
|
||||
dispatch(actions.showSendPage())
|
||||
},
|
||||
cancelTransaction: ({ id }) => dispatch(actions.cancelTx({ id })),
|
||||
updateAndCancelTx: txMeta => dispatch(actions.updateAndCancelTx(txMeta)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -422,14 +421,10 @@ ConfirmSendEther.prototype.onSubmit = function (event) {
|
||||
|
||||
ConfirmSendEther.prototype.cancel = function (event, txMeta) {
|
||||
event.preventDefault()
|
||||
const { send, updateAndCancelTx, cancelTransaction } = this.props
|
||||
const { cancelTransaction } = this.props
|
||||
|
||||
if (send.editingTransactionId) {
|
||||
updateAndCancelTx(txMeta)
|
||||
} else {
|
||||
cancelTransaction(txMeta)
|
||||
}
|
||||
}
|
||||
|
||||
ConfirmSendEther.prototype.checkValidity = function () {
|
||||
const form = this.getFormEl()
|
||||
@ -452,26 +447,6 @@ ConfirmSendEther.prototype.gatherTxMeta = function () {
|
||||
const state = this.state
|
||||
const txData = clone(state.txData) || clone(props.txData)
|
||||
|
||||
if (props.send.editingTransactionId) {
|
||||
const {
|
||||
send: {
|
||||
memo,
|
||||
amount: value,
|
||||
gasLimit: gas,
|
||||
gasPrice,
|
||||
},
|
||||
} = props
|
||||
const { txParams: { from, to } } = txData
|
||||
txData.txParams = {
|
||||
from: ethUtil.addHexPrefix(from),
|
||||
to: ethUtil.addHexPrefix(to),
|
||||
memo: memo && ethUtil.addHexPrefix(memo),
|
||||
value: ethUtil.addHexPrefix(value),
|
||||
gas: ethUtil.addHexPrefix(gas),
|
||||
gasPrice: ethUtil.addHexPrefix(gasPrice),
|
||||
}
|
||||
}
|
||||
|
||||
// log.debug(`UI has defaulted to tx meta ${JSON.stringify(txData)}`)
|
||||
return txData
|
||||
}
|
||||
|
@ -89,7 +89,6 @@ function mapDispatchToProps (dispatch, ownProps) {
|
||||
}))
|
||||
dispatch(actions.showSendTokenPage())
|
||||
},
|
||||
updateAndCancelTx: txMeta => dispatch(actions.updateAndCancelTx(txMeta)),
|
||||
}
|
||||
}
|
||||
|
||||
@ -416,14 +415,10 @@ ConfirmSendToken.prototype.onSubmit = function (event) {
|
||||
|
||||
ConfirmSendToken.prototype.cancel = function (event, txMeta) {
|
||||
event.preventDefault()
|
||||
const { send, updateAndCancelTx, cancelTransaction } = this.props
|
||||
const { send, cancelTransaction } = this.props
|
||||
|
||||
if (send.editingTransactionId) {
|
||||
updateAndCancelTx(txMeta)
|
||||
} else {
|
||||
cancelTransaction(txMeta)
|
||||
}
|
||||
}
|
||||
|
||||
ConfirmSendToken.prototype.checkValidity = function () {
|
||||
const form = this.getFormEl()
|
||||
@ -446,39 +441,6 @@ ConfirmSendToken.prototype.gatherTxMeta = function () {
|
||||
const state = this.state
|
||||
const txData = clone(state.txData) || clone(props.txData)
|
||||
|
||||
if (props.send.editingTransactionId) {
|
||||
const {
|
||||
send: {
|
||||
memo,
|
||||
amount,
|
||||
gasLimit: gas,
|
||||
gasPrice,
|
||||
to,
|
||||
},
|
||||
} = props
|
||||
|
||||
const { txParams: { from, to: tokenAddress } } = txData
|
||||
|
||||
const tokenParams = {
|
||||
from: ethUtil.addHexPrefix(from),
|
||||
value: '0',
|
||||
gas: ethUtil.addHexPrefix(gas),
|
||||
gasPrice: ethUtil.addHexPrefix(gasPrice),
|
||||
}
|
||||
|
||||
const data = '0xa9059cbb' + Array.prototype.map.call(
|
||||
ethAbi.rawEncode(['address', 'uint256'], [to, ethUtil.addHexPrefix(amount)]),
|
||||
x => ('00' + x.toString(16)).slice(-2)
|
||||
).join('')
|
||||
|
||||
txData.txParams = {
|
||||
...tokenParams,
|
||||
to: ethUtil.addHexPrefix(tokenAddress),
|
||||
memo: memo && ethUtil.addHexPrefix(memo),
|
||||
data,
|
||||
}
|
||||
}
|
||||
|
||||
// log.debug(`UI has defaulted to tx meta ${JSON.stringify(txData)}`)
|
||||
return txData
|
||||
}
|
||||
|
@ -50,6 +50,7 @@ function mapStateToProps (state) {
|
||||
data,
|
||||
amountConversionRate: selectedToken ? tokenToFiatRate : conversionRate,
|
||||
tokenContract: getSelectedTokenContract(state),
|
||||
unapprovedTxs: state.metamask.unapprovedTxs,
|
||||
}
|
||||
}
|
||||
|
||||
@ -64,6 +65,7 @@ function mapDispatchToProps (dispatch) {
|
||||
),
|
||||
signTx: txParams => dispatch(actions.signTx(txParams)),
|
||||
updateAndApproveTx: txParams => dispatch(actions.updateAndApproveTx(txParams)),
|
||||
updateTx: txData => dispatch(actions.updateTransaction(txData)),
|
||||
setSelectedAddress: address => dispatch(actions.setSelectedAddress(address)),
|
||||
addToAddressBook: address => dispatch(actions.addToAddressBook(address)),
|
||||
updateGasTotal: newTotal => dispatch(actions.updateGasTotal(newTotal)),
|
||||
|
@ -115,7 +115,7 @@ function currentTxView (opts) {
|
||||
log.info('rendering current tx view')
|
||||
const { txData } = opts
|
||||
const { txParams, msgParams } = txData
|
||||
|
||||
console.log(`22222 currentTxView txData`, txData);
|
||||
if (txParams) {
|
||||
log.debug('txParams detected, rendering pending tx')
|
||||
return h(PendingTx, opts)
|
||||
|
@ -2,6 +2,7 @@ const { inherits } = require('util')
|
||||
const PersistentForm = require('../lib/persistent-form')
|
||||
const h = require('react-hyperscript')
|
||||
|
||||
const ethAbi = require('ethereumjs-abi')
|
||||
const ethUtil = require('ethereumjs-util')
|
||||
|
||||
const Identicon = require('./components/identicon')
|
||||
@ -552,6 +553,47 @@ SendTransactionScreen.prototype.addToAddressBookIfNew = function (newAddress) {
|
||||
}
|
||||
}
|
||||
|
||||
SendTransactionScreen.prototype.getEditedTx = function () {
|
||||
const {
|
||||
from: {address: from},
|
||||
to,
|
||||
amount,
|
||||
gasLimit: gas,
|
||||
gasPrice,
|
||||
selectedToken,
|
||||
editingTransactionId,
|
||||
unapprovedTxs,
|
||||
} = this.props
|
||||
|
||||
const editingTx = unapprovedTxs[editingTransactionId]
|
||||
|
||||
editingTx.txParams = {
|
||||
from: ethUtil.addHexPrefix(from),
|
||||
gas: ethUtil.addHexPrefix(gas),
|
||||
gasPrice: ethUtil.addHexPrefix(gasPrice),
|
||||
}
|
||||
|
||||
if (selectedToken) {
|
||||
const data = '0xa9059cbb' + 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 {
|
||||
Object.assign(editingTx.txParams, {
|
||||
value: ethUtil.addHexPrefix(amount),
|
||||
to: ethUtil.addHexPrefix(to),
|
||||
})
|
||||
}
|
||||
|
||||
return editingTx
|
||||
}
|
||||
|
||||
SendTransactionScreen.prototype.onSubmit = function (event) {
|
||||
event.preventDefault()
|
||||
const {
|
||||
@ -562,10 +604,12 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
|
||||
gasPrice,
|
||||
signTokenTx,
|
||||
signTx,
|
||||
updateTx,
|
||||
selectedToken,
|
||||
editingTransactionId,
|
||||
errors: { amount: amountError, to: toError },
|
||||
backToConfirmScreen,
|
||||
unapprovedTxs,
|
||||
} = this.props
|
||||
|
||||
const noErrors = !amountError && toError === null
|
||||
@ -577,9 +621,10 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
|
||||
this.addToAddressBookIfNew(to)
|
||||
|
||||
if (editingTransactionId) {
|
||||
backToConfirmScreen(editingTransactionId)
|
||||
return
|
||||
}
|
||||
const editedTx = this.getEditedTx()
|
||||
|
||||
updateTx(editedTx)
|
||||
} else {
|
||||
|
||||
const txParams = {
|
||||
from,
|
||||
@ -597,3 +642,4 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
|
||||
? signTokenTx(selectedToken.address, to, amount, txParams)
|
||||
: signTx(txParams)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user