mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
43 lines
992 B
JavaScript
43 lines
992 B
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import ConfirmTransactionBase from '../confirm-transaction-base';
|
|
import { SEND_ROUTE } from '../../helpers/constants/routes';
|
|
|
|
export default class ConfirmSendEther extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
editTransaction: PropTypes.func,
|
|
history: PropTypes.object,
|
|
txParams: PropTypes.object,
|
|
};
|
|
|
|
handleEdit({ txData }) {
|
|
const { editTransaction, history } = this.props;
|
|
editTransaction(txData).then(() => {
|
|
history.push(SEND_ROUTE);
|
|
});
|
|
}
|
|
|
|
shouldHideData() {
|
|
const { txParams = {} } = this.props;
|
|
return !txParams.data;
|
|
}
|
|
|
|
render() {
|
|
const hideData = this.shouldHideData();
|
|
|
|
return (
|
|
<ConfirmTransactionBase
|
|
actionKey="confirm"
|
|
hideData={hideData}
|
|
onEdit={(confirmTransactionData) =>
|
|
this.handleEdit(confirmTransactionData)
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
}
|