2020-01-13 18:02:54 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2019-12-03 21:50:55 +01:00
|
|
|
import React, { Component } from 'react'
|
2020-01-09 04:34:58 +01:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import { withRouter } from 'react-router-dom'
|
2020-02-24 23:58:26 +01:00
|
|
|
import { compose } from 'redux'
|
2020-01-09 04:34:58 +01:00
|
|
|
import * as actions from '../../store/actions'
|
|
|
|
import txHelper from '../../../lib/tx-helper'
|
|
|
|
import log from 'loglevel'
|
|
|
|
import R from 'ramda'
|
|
|
|
import SignatureRequest from '../../components/app/signature-request'
|
|
|
|
import SignatureRequestOriginal from '../../components/app/signature-request-original'
|
|
|
|
import Loading from '../../components/ui/loading-screen'
|
|
|
|
import { DEFAULT_ROUTE } from '../../helpers/constants/routes'
|
2016-05-03 23:32:22 +02:00
|
|
|
|
2016-06-21 22:18:32 +02:00
|
|
|
function mapStateToProps (state) {
|
2020-02-06 17:38:14 +01:00
|
|
|
const { metamask, appState } = state
|
2017-12-05 04:27:42 +01:00
|
|
|
const {
|
|
|
|
unapprovedMsgCount,
|
|
|
|
unapprovedPersonalMsgCount,
|
2018-04-04 01:59:32 +02:00
|
|
|
unapprovedTypedMessagesCount,
|
2017-12-05 04:27:42 +01:00
|
|
|
} = metamask
|
2020-02-06 17:38:14 +01:00
|
|
|
const {
|
|
|
|
txId,
|
|
|
|
} = appState
|
2017-12-05 04:27:42 +01:00
|
|
|
|
2016-04-14 00:28:44 +02:00
|
|
|
return {
|
|
|
|
identities: state.metamask.identities,
|
2017-01-28 01:11:59 +01:00
|
|
|
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,
|
2020-02-06 17:38:14 +01:00
|
|
|
index: txId,
|
2016-05-03 23:32:22 +02:00
|
|
|
warning: state.appState.warning,
|
2016-09-08 21:56:04 +02:00
|
|
|
network: state.metamask.network,
|
2017-01-04 23:30:14 +01:00
|
|
|
provider: state.metamask.provider,
|
2017-05-16 20:34:53 +02:00
|
|
|
currentCurrency: state.metamask.currentCurrency,
|
2017-06-03 00:18:14 +02:00
|
|
|
blockGasLimit: state.metamask.currentBlockGasLimit,
|
2017-12-05 04:27:42 +01:00
|
|
|
unapprovedMsgCount,
|
|
|
|
unapprovedPersonalMsgCount,
|
2018-04-04 01:59:32 +02:00
|
|
|
unapprovedTypedMessagesCount,
|
2017-12-07 05:48:41 +01:00
|
|
|
send: state.metamask.send,
|
2018-03-20 18:58:48 +01:00
|
|
|
selectedAddressTxList: state.metamask.selectedAddressTxList,
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
class ConfirmTxScreen extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
unapprovedMsgCount: PropTypes.number,
|
|
|
|
unapprovedPersonalMsgCount: PropTypes.number,
|
|
|
|
unapprovedTypedMessagesCount: PropTypes.number,
|
|
|
|
network: PropTypes.string,
|
|
|
|
index: PropTypes.number,
|
|
|
|
unapprovedTxs: PropTypes.object,
|
|
|
|
unapprovedMsgs: PropTypes.object,
|
|
|
|
unapprovedPersonalMsgs: PropTypes.object,
|
|
|
|
unapprovedTypedMessages: PropTypes.object,
|
|
|
|
match: PropTypes.shape({
|
|
|
|
params: PropTypes.shape({
|
|
|
|
id: PropTypes.number,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
|
|
|
|
selectedAddressTxList: PropTypes.array,
|
|
|
|
currentCurrency: PropTypes.string,
|
|
|
|
blockGasLimit: PropTypes.string,
|
|
|
|
history: PropTypes.object,
|
|
|
|
identities: PropTypes.object,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
send: PropTypes.shape({
|
|
|
|
to: PropTypes.string,
|
|
|
|
}).isRequired,
|
2018-04-03 10:03:31 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
getUnapprovedMessagesTotal () {
|
|
|
|
const {
|
|
|
|
unapprovedMsgCount = 0,
|
|
|
|
unapprovedPersonalMsgCount = 0,
|
|
|
|
unapprovedTypedMessagesCount = 0,
|
|
|
|
} = this.props
|
|
|
|
|
|
|
|
return unapprovedTypedMessagesCount + unapprovedMsgCount + unapprovedPersonalMsgCount
|
2018-05-29 19:23:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
getTxData () {
|
|
|
|
const {
|
|
|
|
network,
|
|
|
|
index,
|
|
|
|
unapprovedTxs,
|
|
|
|
unapprovedMsgs,
|
|
|
|
unapprovedPersonalMsgs,
|
|
|
|
unapprovedTypedMessages,
|
|
|
|
match: { params: { id: transactionId } = {} },
|
|
|
|
} = this.props
|
|
|
|
|
|
|
|
const unconfTxList = txHelper(
|
|
|
|
unapprovedTxs,
|
|
|
|
unapprovedMsgs,
|
|
|
|
unapprovedPersonalMsgs,
|
|
|
|
unapprovedTypedMessages,
|
|
|
|
network
|
|
|
|
)
|
2017-11-29 05:24:35 +01:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
log.info(`rendering a combined ${unconfTxList.length} unconf msgs & txs`)
|
2018-05-29 19:23:06 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
return transactionId
|
|
|
|
? R.find(({ id }) => id + '' === transactionId)(unconfTxList)
|
|
|
|
: unconfTxList[index]
|
2018-05-29 19:23:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
signatureSelect (type, version) {
|
|
|
|
// Temporarily direct only v3 and v4 requests to new code.
|
|
|
|
if (type === 'eth_signTypedData' && (version === 'V3' || version === 'V4')) {
|
|
|
|
return SignatureRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
return SignatureRequestOriginal
|
2017-11-29 05:24:35 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
signMessage (msgData, event) {
|
|
|
|
log.info('conf-tx.js: signing message')
|
|
|
|
const params = msgData.msgParams
|
|
|
|
params.metamaskId = msgData.id
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.signMsg(params))
|
|
|
|
}
|
2018-05-29 19:23:06 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
stopPropagation (event) {
|
|
|
|
if (event.stopPropagation) {
|
|
|
|
event.stopPropagation()
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
signPersonalMessage (msgData, event) {
|
|
|
|
log.info('conf-tx.js: signing personal message')
|
|
|
|
const params = msgData.msgParams
|
|
|
|
params.metamaskId = msgData.id
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.signPersonalMsg(params))
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
signTypedMessage (msgData, event) {
|
|
|
|
log.info('conf-tx.js: signing typed message')
|
|
|
|
const params = msgData.msgParams
|
|
|
|
params.metamaskId = msgData.id
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.signTypedMsg(params))
|
|
|
|
}
|
2017-01-17 08:59:25 +01:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
cancelMessage (msgData, event) {
|
|
|
|
log.info('canceling message')
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.cancelMsg(msgData))
|
|
|
|
}
|
2018-07-14 22:43:55 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
cancelPersonalMessage (msgData, event) {
|
|
|
|
log.info('canceling personal message')
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.cancelPersonalMsg(msgData))
|
2019-11-25 14:33:30 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
cancelTypedMessage (msgData, event) {
|
|
|
|
log.info('canceling typed message')
|
|
|
|
this.stopPropagation(event)
|
|
|
|
return this.props.dispatch(actions.cancelTypedMsg(msgData))
|
|
|
|
}
|
2017-09-08 00:03:25 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
componentDidMount () {
|
|
|
|
const {
|
|
|
|
unapprovedTxs = {},
|
|
|
|
network,
|
|
|
|
send,
|
|
|
|
} = this.props
|
|
|
|
const unconfTxList = txHelper(unapprovedTxs, {}, {}, {}, network)
|
|
|
|
|
|
|
|
if (unconfTxList.length === 0 && !send.to && this.getUnapprovedMessagesTotal() === 0) {
|
|
|
|
this.props.history.push(DEFAULT_ROUTE)
|
|
|
|
}
|
|
|
|
}
|
2016-05-03 23:32:22 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
const {
|
|
|
|
unapprovedTxs = {},
|
|
|
|
network,
|
|
|
|
selectedAddressTxList,
|
|
|
|
send,
|
|
|
|
history,
|
|
|
|
match: { params: { id: transactionId } = {} },
|
|
|
|
} = this.props
|
|
|
|
|
|
|
|
let prevTx
|
|
|
|
|
|
|
|
if (transactionId) {
|
|
|
|
prevTx = R.find(({ id }) => id + '' === transactionId)(selectedAddressTxList)
|
|
|
|
} else {
|
|
|
|
const { index: prevIndex, unapprovedTxs: prevUnapprovedTxs } = prevProps
|
|
|
|
const prevUnconfTxList = txHelper(prevUnapprovedTxs, {}, {}, {}, network)
|
|
|
|
const prevTxData = prevUnconfTxList[prevIndex] || {}
|
|
|
|
prevTx = selectedAddressTxList.find(({ id }) => id === prevTxData.id) || {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const unconfTxList = txHelper(unapprovedTxs, {}, {}, {}, network)
|
|
|
|
|
|
|
|
if (prevTx && prevTx.status === 'dropped') {
|
|
|
|
this.props.dispatch(actions.showModal({
|
|
|
|
name: 'TRANSACTION_CONFIRMED',
|
|
|
|
onSubmit: () => history.push(DEFAULT_ROUTE),
|
|
|
|
}))
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unconfTxList.length === 0 && !send.to && this.getUnapprovedMessagesTotal() === 0) {
|
|
|
|
this.props.history.push(DEFAULT_ROUTE)
|
|
|
|
}
|
2017-03-22 23:14:33 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
render () {
|
|
|
|
const {
|
|
|
|
currentCurrency,
|
|
|
|
blockGasLimit,
|
|
|
|
} = this.props
|
2017-02-23 23:23:45 +01:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
const txData = this.getTxData() || {}
|
|
|
|
const { msgParams, type, msgParams: { version } } = txData
|
|
|
|
log.debug('msgParams detected, rendering pending msg')
|
2017-09-29 18:24:08 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
if (!msgParams) {
|
|
|
|
return (
|
|
|
|
<Loading />
|
|
|
|
)
|
|
|
|
}
|
2016-05-03 23:32:22 +02:00
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
const SigComponent = this.signatureSelect(type, version)
|
|
|
|
return (
|
|
|
|
<SigComponent
|
|
|
|
txData={txData}
|
|
|
|
key={txData.id}
|
|
|
|
identities={this.props.identities}
|
|
|
|
currentCurrency={currentCurrency}
|
|
|
|
blockGasLimit={blockGasLimit}
|
|
|
|
signMessage={this.signMessage.bind(this, txData)}
|
|
|
|
signPersonalMessage={this.signPersonalMessage.bind(this, txData)}
|
|
|
|
signTypedMessage={this.signTypedMessage.bind(this, txData)}
|
|
|
|
cancelMessage={this.cancelMessage.bind(this, txData)}
|
|
|
|
cancelPersonalMessage={this.cancelPersonalMessage.bind(this, txData)}
|
|
|
|
cancelTypedMessage={this.cancelTypedMessage.bind(this, txData)}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2017-02-24 01:00:43 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:02:54 +01:00
|
|
|
export default compose(
|
|
|
|
withRouter,
|
|
|
|
connect(mapStateToProps)
|
|
|
|
)(ConfirmTxScreen)
|