1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/conf-tx.js

244 lines
7.7 KiB
JavaScript
Raw Normal View History

const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
2018-03-16 01:29:45 +01:00
const connect = require('./metamask-connect')
const actions = require('./actions')
const txHelper = require('../lib/tx-helper')
2016-06-24 21:48:52 +02:00
const PendingTx = require('./components/pending-tx')
2017-10-25 18:01:58 +02:00
const SignatureRequest = require('./components/signature-request')
// const PendingMsg = require('./components/pending-msg')
// const PendingPersonalMsg = require('./components/pending-personal-msg')
// const PendingTypedMsg = require('./components/pending-typed-msg')
const Loading = require('./components/loading')
2017-09-28 07:32:07 +02:00
// const contentDivider = h('div', {
// style: {
// marginLeft: '16px',
// marginRight: '16px',
// height:'1px',
// background:'#E7E7E7',
// },
// })
module.exports = connect(mapStateToProps)(ConfirmTxScreen)
2016-06-21 22:18:32 +02:00
function mapStateToProps (state) {
return {
identities: state.metamask.identities,
accounts: state.metamask.accounts,
selectedAddress: state.metamask.selectedAddress,
unapprovedTxs: state.metamask.unapprovedTxs,
unapprovedMsgs: state.metamask.unapprovedMsgs,
2017-02-23 01:23:13 +01:00
unapprovedPersonalMsgs: state.metamask.unapprovedPersonalMsgs,
2017-09-29 18:24:08 +02:00
unapprovedTypedMessages: state.metamask.unapprovedTypedMessages,
index: state.appState.currentView.context,
warning: state.appState.warning,
2016-09-08 21:56:04 +02:00
network: state.metamask.network,
provider: state.metamask.provider,
conversionRate: state.metamask.conversionRate,
currentCurrency: state.metamask.currentCurrency,
blockGasLimit: state.metamask.currentBlockGasLimit,
computedBalances: state.metamask.computedBalances,
selectedAddressTxList: state.metamask.selectedAddressTxList,
}
}
inherits(ConfirmTxScreen, Component)
2016-06-21 22:18:32 +02:00
function ConfirmTxScreen () {
Component.call(this)
}
ConfirmTxScreen.prototype.componentDidUpdate = function (prevProps) {
const {
unapprovedTxs,
network,
selectedAddressTxList,
} = this.props
const { index: prevIndex, unapprovedTxs: prevUnapprovedTxs } = prevProps
const prevUnconfTxList = txHelper(prevUnapprovedTxs, {}, {}, {}, network)
const prevTxData = prevUnconfTxList[prevIndex] || {}
const prevTx = selectedAddressTxList.find(({ id }) => id === prevTxData.id) || {}
const unconfTxList = txHelper(unapprovedTxs, {}, {}, {}, network)
if (prevTx.status === 'dropped' && unconfTxList.length === 0) {
this.goHome({})
}
}
2016-06-21 22:18:32 +02:00
ConfirmTxScreen.prototype.render = function () {
2017-02-23 01:23:13 +01:00
const props = this.props
2017-09-28 07:32:07 +02:00
const {
network,
unapprovedTxs,
currentCurrency,
unapprovedMsgs,
unapprovedPersonalMsgs,
2017-10-19 07:58:46 +02:00
unapprovedTypedMessages,
2017-09-28 07:32:07 +02:00
conversionRate,
blockGasLimit,
// provider,
// computedBalances,
} = props
2017-09-29 18:24:08 +02:00
var unconfTxList = txHelper(unapprovedTxs, unapprovedMsgs, unapprovedPersonalMsgs, unapprovedTypedMessages, network)
2017-03-24 20:50:39 +01:00
var txData = unconfTxList[props.index] || {}
var txParams = txData.params || {}
2017-09-28 07:32:07 +02:00
// var isNotification = isPopupOrNotification() === 'notification'
/*
Client is using the flag above to render the following in conf screen
// subtitle and nav
h('.section-title.flex-row.flex-center', [
!isNotification ? h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: this.goHome.bind(this),
}) : null,
h('h2.page-subtitle', 'Confirm Transaction'),
isNotification ? h(NetworkIndicator, {
network: network,
provider: provider,
}) : null,
]),
*/
log.info(`rendering a combined ${unconfTxList.length} unconf msg & txs`)
if (unconfTxList.length === 0) return h(Loading)
return currentTxView({
// Properties
txData: txData,
key: txData.id,
selectedAddress: props.selectedAddress,
accounts: props.accounts,
identities: props.identities,
conversionRate,
currentCurrency,
blockGasLimit,
// Actions
buyEth: this.buyEth.bind(this, txParams.from || props.selectedAddress),
sendTransaction: this.sendTransaction.bind(this),
cancelTransaction: this.cancelTransaction.bind(this, txData),
signMessage: this.signMessage.bind(this, txData),
signPersonalMessage: this.signPersonalMessage.bind(this, txData),
2017-10-25 18:01:58 +02:00
signTypedMessage: this.signTypedMessage.bind(this, txData),
cancelMessage: this.cancelMessage.bind(this, txData),
cancelPersonalMessage: this.cancelPersonalMessage.bind(this, txData),
2017-10-25 18:01:58 +02:00
cancelTypedMessage: this.cancelTypedMessage.bind(this, txData),
})
}
function currentTxView (opts) {
log.info('rendering current tx view')
const { txData } = opts
2017-11-02 03:30:33 +01:00
const { txParams, msgParams } = txData
if (txParams) {
log.debug('txParams detected, rendering pending tx')
2016-06-24 21:48:52 +02:00
return h(PendingTx, opts)
} else if (msgParams) {
log.debug('msgParams detected, rendering pending msg')
2017-11-02 13:15:59 +01:00
2017-10-25 18:01:58 +02:00
return h(SignatureRequest, opts)
// if (type === 'eth_sign') {
// log.debug('rendering eth_sign message')
// return h(PendingMsg, opts)
// } else if (type === 'personal_sign') {
// log.debug('rendering personal_sign message')
// return h(PendingPersonalMsg, opts)
// } else if (type === 'eth_signTypedData') {
// log.debug('rendering eth_signTypedData message')
// return h(PendingTypedMsg, opts)
// }
}
return h(Loading)
}
2016-09-15 23:31:45 +02:00
ConfirmTxScreen.prototype.buyEth = function (address, event) {
event.preventDefault()
2016-09-15 23:31:45 +02:00
this.props.dispatch(actions.buyEthView(address))
}
ConfirmTxScreen.prototype.sendTransaction = function (txData, event) {
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
this.props.dispatch(actions.updateAndApproveTx(txData))
}
2016-06-21 22:18:32 +02:00
ConfirmTxScreen.prototype.cancelTransaction = function (txData, event) {
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
event.preventDefault()
this.props.dispatch(actions.cancelTx(txData))
}
2017-09-08 00:03:25 +02:00
ConfirmTxScreen.prototype.cancelAllTransactions = function (unconfTxList, event) {
this.stopPropagation(event)
event.preventDefault()
this.props.dispatch(actions.cancelAllTx(unconfTxList))
}
2016-06-21 22:18:32 +02:00
ConfirmTxScreen.prototype.signMessage = function (msgData, event) {
log.info('conf-tx.js: signing message')
var params = msgData.msgParams
params.metamaskId = msgData.id
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
this.props.dispatch(actions.signMsg(params))
}
2017-03-22 23:14:33 +01:00
ConfirmTxScreen.prototype.stopPropagation = function (event) {
if (event.stopPropagation) {
event.stopPropagation()
}
}
ConfirmTxScreen.prototype.signPersonalMessage = function (msgData, event) {
log.info('conf-tx.js: signing personal message')
var params = msgData.msgParams
params.metamaskId = msgData.id
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
this.props.dispatch(actions.signPersonalMsg(params))
}
2017-09-29 18:24:08 +02:00
ConfirmTxScreen.prototype.signTypedMessage = function (msgData, event) {
log.info('conf-tx.js: signing typed message')
var params = msgData.msgParams
params.metamaskId = msgData.id
this.stopPropagation(event)
this.props.dispatch(actions.signTypedMsg(params))
}
2016-06-21 22:18:32 +02:00
ConfirmTxScreen.prototype.cancelMessage = function (msgData, event) {
log.info('canceling message')
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
this.props.dispatch(actions.cancelMsg(msgData))
}
2017-02-24 01:00:43 +01:00
ConfirmTxScreen.prototype.cancelPersonalMessage = function (msgData, event) {
log.info('canceling personal message')
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
2017-02-24 01:00:43 +01:00
this.props.dispatch(actions.cancelPersonalMsg(msgData))
}
2017-09-29 18:24:08 +02:00
ConfirmTxScreen.prototype.cancelTypedMessage = function (msgData, event) {
log.info('canceling typed message')
this.stopPropagation(event)
this.props.dispatch(actions.cancelTypedMsg(msgData))
}
2016-06-21 22:18:32 +02:00
ConfirmTxScreen.prototype.goHome = function (event) {
2017-03-22 23:14:33 +01:00
this.stopPropagation(event)
this.props.dispatch(actions.goHome())
}
2017-08-29 16:50:48 +02:00
// function warningIfExists (warning) {
// if (warning &&
// // Do not display user rejections on this screen:
// warning.indexOf('User denied transaction signature') === -1) {
// return h('.error', {
// style: {
// margin: 'auto',
// },
// }, warning)
// }
// }