2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-09 10:55:46 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import moment from 'moment';
|
2017-04-25 10:08:09 +02:00
|
|
|
import dateDifference from 'date-difference';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-02-09 17:41:17 +01:00
|
|
|
import { connect } from 'react-redux';
|
2016-12-09 10:55:46 +01:00
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import { txLink } from '@parity/etherscan/links';
|
2016-12-09 10:55:46 +01:00
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import DappLink from '../../DappLink';
|
|
|
|
import IdentityIcon from '../../IdentityIcon';
|
|
|
|
import IdentityName from '../../IdentityName';
|
|
|
|
import MethodDecoding from '../../MethodDecoding';
|
|
|
|
import MethodDecodingStore from '../../MethodDecoding/methodDecodingStore';
|
2016-12-09 10:55:46 +01:00
|
|
|
|
|
|
|
import styles from '../txList.css';
|
|
|
|
|
2017-02-09 17:41:17 +01:00
|
|
|
class TxRow extends Component {
|
2016-12-09 10:55:46 +01:00
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2017-02-09 17:41:17 +01:00
|
|
|
accountAddresses: PropTypes.array.isRequired,
|
2016-12-09 10:55:46 +01:00
|
|
|
address: PropTypes.string.isRequired,
|
2017-04-25 10:08:09 +02:00
|
|
|
blockNumber: PropTypes.object,
|
2017-03-11 15:25:36 +01:00
|
|
|
contractAddresses: PropTypes.array.isRequired,
|
2017-03-06 08:54:59 +01:00
|
|
|
netVersion: PropTypes.string.isRequired,
|
2017-02-09 17:41:17 +01:00
|
|
|
tx: PropTypes.object.isRequired,
|
2016-12-09 10:55:46 +01:00
|
|
|
|
|
|
|
block: PropTypes.object,
|
2017-02-09 17:41:17 +01:00
|
|
|
className: PropTypes.string,
|
2017-04-25 10:08:09 +02:00
|
|
|
cancelTransaction: PropTypes.func,
|
|
|
|
editTransaction: PropTypes.func,
|
2017-06-23 10:32:19 +02:00
|
|
|
historic: PropTypes.bool,
|
|
|
|
killTransaction: PropTypes.func
|
2016-12-09 10:55:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
historic: true
|
|
|
|
};
|
|
|
|
|
2017-04-19 16:02:24 +02:00
|
|
|
state = {
|
2017-04-25 10:08:09 +02:00
|
|
|
isCancelOpen: false,
|
|
|
|
isEditOpen: false,
|
|
|
|
canceled: false,
|
|
|
|
editing: false,
|
2017-04-19 16:02:24 +02:00
|
|
|
isContract: false,
|
|
|
|
isDeploy: false
|
|
|
|
};
|
|
|
|
|
|
|
|
methodDecodingStore = MethodDecodingStore.get(this.context.api);
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
const { address, tx } = this.props;
|
|
|
|
|
|
|
|
this
|
|
|
|
.methodDecodingStore
|
|
|
|
.lookup(address, tx)
|
|
|
|
.then((lookup) => {
|
|
|
|
const newState = {
|
|
|
|
isContract: lookup.contract,
|
|
|
|
isDeploy: lookup.deploy
|
|
|
|
};
|
|
|
|
|
|
|
|
this.setState(newState);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-09 10:55:46 +01:00
|
|
|
render () {
|
2017-03-06 08:54:59 +01:00
|
|
|
const { address, className, historic, netVersion, tx } = this.props;
|
2016-12-09 10:55:46 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<tr className={ className || '' }>
|
|
|
|
{ this.renderBlockNumber(tx.blockNumber) }
|
2017-03-11 15:25:36 +01:00
|
|
|
{ this.renderAddress(tx.from, false) }
|
2016-12-09 10:55:46 +01:00
|
|
|
<td className={ styles.transaction }>
|
|
|
|
{ this.renderEtherValue(tx.value) }
|
|
|
|
<div>⇒</div>
|
|
|
|
<div>
|
|
|
|
<a
|
|
|
|
className={ styles.link }
|
2017-03-06 08:54:59 +01:00
|
|
|
href={ txLink(tx.hash, false, netVersion) }
|
2017-01-18 13:05:01 +01:00
|
|
|
target='_blank'
|
|
|
|
>
|
2016-12-09 10:55:46 +01:00
|
|
|
{ `${tx.hash.substr(2, 6)}...${tx.hash.slice(-6)}` }
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</td>
|
2017-03-11 15:25:36 +01:00
|
|
|
{ this.renderAddress(tx.to || tx.creates, !!tx.creates) }
|
2016-12-09 10:55:46 +01:00
|
|
|
<td className={ styles.method }>
|
|
|
|
<MethodDecoding
|
|
|
|
historic={ historic }
|
|
|
|
address={ address }
|
2017-01-18 13:05:01 +01:00
|
|
|
transaction={ tx }
|
|
|
|
/>
|
2016-12-09 10:55:46 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-11 15:25:36 +01:00
|
|
|
renderAddress (address, isDeploy = false) {
|
|
|
|
const isKnownContract = this.getIsKnownContract(address);
|
2016-12-09 10:55:46 +01:00
|
|
|
let esLink = null;
|
2017-01-23 13:39:52 +01:00
|
|
|
|
2017-03-11 15:25:36 +01:00
|
|
|
if (address && (!isDeploy || isKnownContract)) {
|
2016-12-09 10:55:46 +01:00
|
|
|
esLink = (
|
2017-04-25 15:41:46 +02:00
|
|
|
<DappLink
|
2017-02-09 17:41:17 +01:00
|
|
|
activeClassName={ styles.currentLink }
|
2017-01-18 13:05:01 +01:00
|
|
|
className={ styles.link }
|
2017-02-09 17:41:17 +01:00
|
|
|
to={ this.addressLink(address) }
|
2017-01-18 13:05:01 +01:00
|
|
|
>
|
|
|
|
<IdentityName
|
|
|
|
address={ address }
|
|
|
|
shorten
|
|
|
|
/>
|
2017-04-25 15:41:46 +02:00
|
|
|
</DappLink>
|
2016-12-09 10:55:46 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<td className={ styles.address }>
|
|
|
|
<div className={ styles.center }>
|
|
|
|
<IdentityIcon
|
|
|
|
center
|
|
|
|
className={ styles.icon }
|
2017-03-11 15:25:36 +01:00
|
|
|
address={ (!isDeploy || isKnownContract) ? address : '' }
|
2017-01-18 13:05:01 +01:00
|
|
|
/>
|
2016-12-09 10:55:46 +01:00
|
|
|
</div>
|
|
|
|
<div className={ styles.center }>
|
|
|
|
{ esLink || 'DEPLOY' }
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderEtherValue (_value) {
|
|
|
|
const { api } = this.context;
|
2017-04-19 16:02:24 +02:00
|
|
|
const { isContract, isDeploy } = this.state;
|
|
|
|
|
|
|
|
// Always show the value if ETH transfer, ie. not
|
|
|
|
// a contract or a deployment
|
|
|
|
const fullValue = !(isContract || isDeploy);
|
2016-12-09 10:55:46 +01:00
|
|
|
const value = api.util.fromWei(_value);
|
|
|
|
|
2017-04-19 16:02:24 +02:00
|
|
|
if (value.eq(0) && !fullValue) {
|
2016-12-09 10:55:46 +01:00
|
|
|
return <div className={ styles.value }>{ ' ' }</div>;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.value }>
|
|
|
|
{ value.toFormat(5) }<small>ETH</small>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderBlockNumber (_blockNumber) {
|
|
|
|
const { block } = this.props;
|
|
|
|
const blockNumber = _blockNumber.toNumber();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<td className={ styles.timestamp }>
|
|
|
|
<div>{ blockNumber && block ? moment(block.timestamp).fromNow() : null }</div>
|
2017-04-25 10:08:09 +02:00
|
|
|
<div>{ blockNumber ? _blockNumber.toFormat() : this.renderCancelToggle() }</div>
|
2016-12-09 10:55:46 +01:00
|
|
|
</td>
|
|
|
|
);
|
|
|
|
}
|
2017-02-09 17:41:17 +01:00
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
renderCancelToggle () {
|
|
|
|
const { canceled, editing, isCancelOpen, isEditOpen } = this.state;
|
|
|
|
|
|
|
|
if (canceled) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.pending }>
|
|
|
|
<FormattedMessage
|
|
|
|
lassName={ styles.uppercase }
|
|
|
|
id='ui.txList.txRow.canceled'
|
|
|
|
defaultMessage='Canceled'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (editing) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.pending }>
|
|
|
|
<div className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.editing'
|
|
|
|
defaultMessage='Editing'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isCancelOpen && !isEditOpen) {
|
|
|
|
const pendingStatus = this.getCondition();
|
2017-06-03 14:41:31 +02:00
|
|
|
const isPending = pendingStatus === 'pending';
|
2017-04-25 10:08:09 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.pending }>
|
2017-06-03 14:41:31 +02:00
|
|
|
{
|
|
|
|
isPending
|
|
|
|
? (
|
|
|
|
<div className={ styles.pending }>
|
|
|
|
<div />
|
|
|
|
<div className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.submitting'
|
|
|
|
defaultMessage='Pending'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{ pendingStatus }
|
|
|
|
</span>
|
|
|
|
<div className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.scheduled'
|
|
|
|
defaultMessage='Scheduled'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2017-04-25 10:08:09 +02:00
|
|
|
<a onClick={ this.setEdit } className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.edit'
|
|
|
|
defaultMessage='Edit'
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
<span>{' | '}</span>
|
|
|
|
<a onClick={ this.setCancel } className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.cancel'
|
|
|
|
defaultMessage='Cancel'
|
|
|
|
/>
|
|
|
|
</a>
|
2017-06-03 14:41:31 +02:00
|
|
|
{ isPending
|
|
|
|
? (
|
|
|
|
<div>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.cancelWarning'
|
|
|
|
defaultMessage='Warning: Editing or Canceling the transaction may not succeed!'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : null
|
|
|
|
}
|
2017-04-25 10:08:09 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let which;
|
|
|
|
|
|
|
|
if (isCancelOpen) {
|
|
|
|
which = (
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.verify.cancelEditCancel'
|
|
|
|
defaultMessage='Cancel'
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
which = (
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.verify.cancelEditEdit'
|
|
|
|
defaultMessage='Edit'
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.pending }>
|
|
|
|
<div />
|
|
|
|
<div className={ styles.uppercase }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.verify'
|
|
|
|
defaultMessage='Are you sure?'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<a onClick={ (isCancelOpen) ? this.cancelTx : this.editTx }>
|
|
|
|
{ which }
|
|
|
|
</a>
|
|
|
|
<span>{' | '}</span>
|
|
|
|
<a onClick={ this.revertEditCancel }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.verify.nevermind'
|
|
|
|
defaultMessage='Nevermind'
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-11 15:25:36 +01:00
|
|
|
getIsKnownContract (address) {
|
|
|
|
const { contractAddresses } = this.props;
|
|
|
|
|
|
|
|
return contractAddresses
|
|
|
|
.map((a) => a.toLowerCase())
|
|
|
|
.includes(address.toLowerCase());
|
|
|
|
}
|
|
|
|
|
2017-02-09 17:41:17 +01:00
|
|
|
addressLink (address) {
|
|
|
|
const { accountAddresses } = this.props;
|
|
|
|
const isAccount = accountAddresses.includes(address);
|
2017-03-11 15:25:36 +01:00
|
|
|
const isContract = this.getIsKnownContract(address);
|
|
|
|
|
|
|
|
if (isContract) {
|
2017-04-25 15:41:46 +02:00
|
|
|
return `/contract/${address}`;
|
2017-03-11 15:25:36 +01:00
|
|
|
}
|
2017-02-09 17:41:17 +01:00
|
|
|
|
|
|
|
if (isAccount) {
|
2017-04-25 15:41:46 +02:00
|
|
|
return `/account/${address}`;
|
2017-02-09 17:41:17 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 15:41:46 +02:00
|
|
|
return `/address/${address}`;
|
2017-02-09 17:41:17 +01:00
|
|
|
}
|
2017-04-25 10:08:09 +02:00
|
|
|
|
|
|
|
getCondition = () => {
|
|
|
|
const { blockNumber, tx } = this.props;
|
2017-06-03 14:41:31 +02:00
|
|
|
let { time, block = 0 } = tx.condition || {};
|
2017-04-25 10:08:09 +02:00
|
|
|
|
|
|
|
if (time) {
|
|
|
|
if ((time.getTime() - Date.now()) >= 0) {
|
|
|
|
return (
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.pendingStatus.time'
|
|
|
|
defaultMessage='{time} left'
|
|
|
|
values={ {
|
|
|
|
time: dateDifference(new Date(), time, { compact: true })
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2017-06-03 14:41:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (blockNumber) {
|
2017-04-25 10:08:09 +02:00
|
|
|
block = blockNumber.minus(block);
|
|
|
|
if (block.toNumber() < 0) {
|
|
|
|
return (
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.txList.txRow.pendingStatus.blocksLeft'
|
|
|
|
defaultMessage='{blockNumber} blocks left'
|
|
|
|
values={ {
|
|
|
|
blockNumber: block.abs().toFormat(0)
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-06-03 14:41:31 +02:00
|
|
|
|
|
|
|
return 'pending';
|
2017-04-25 10:08:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 10:32:19 +02:00
|
|
|
killTx = () => {
|
|
|
|
const { killTransaction, tx } = this.props;
|
|
|
|
|
|
|
|
killTransaction(this, tx);
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:08:09 +02:00
|
|
|
cancelTx = () => {
|
|
|
|
const { cancelTransaction, tx } = this.props;
|
2017-06-23 10:32:19 +02:00
|
|
|
const pendingStatus = this.getCondition();
|
|
|
|
const isPending = pendingStatus === 'pending';
|
|
|
|
|
|
|
|
if (isPending) {
|
|
|
|
this.killTx();
|
|
|
|
return;
|
|
|
|
}
|
2017-04-25 10:08:09 +02:00
|
|
|
|
|
|
|
cancelTransaction(this, tx);
|
|
|
|
}
|
|
|
|
|
|
|
|
editTx = () => {
|
|
|
|
const { editTransaction, tx } = this.props;
|
|
|
|
|
|
|
|
editTransaction(this, tx);
|
|
|
|
}
|
|
|
|
|
|
|
|
setCancel = () => {
|
|
|
|
this.setState({ isCancelOpen: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
setEdit = () => {
|
|
|
|
this.setState({ isEditOpen: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
revertEditCancel = () => {
|
|
|
|
this.setState({ isCancelOpen: false, isEditOpen: false });
|
|
|
|
}
|
2016-12-09 10:55:46 +01:00
|
|
|
}
|
2017-02-09 17:41:17 +01:00
|
|
|
|
|
|
|
function mapStateToProps (initState) {
|
2017-03-11 15:25:36 +01:00
|
|
|
const { accounts, contracts } = initState.personal;
|
2017-02-09 17:41:17 +01:00
|
|
|
const accountAddresses = Object.keys(accounts);
|
2017-03-11 15:25:36 +01:00
|
|
|
const contractAddresses = Object.keys(contracts);
|
2017-02-09 17:41:17 +01:00
|
|
|
|
2017-03-06 08:54:59 +01:00
|
|
|
return (state) => {
|
|
|
|
const { netVersion } = state.nodeStatus;
|
|
|
|
|
|
|
|
return {
|
|
|
|
accountAddresses,
|
2017-03-11 15:25:36 +01:00
|
|
|
contractAddresses,
|
2017-03-06 08:54:59 +01:00
|
|
|
netVersion
|
|
|
|
};
|
2017-02-09 17:41:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
null
|
|
|
|
)(TxRow);
|