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';
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
2017-02-09 17:41:17 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { Link } from 'react-router';
|
2016-12-09 10:55:46 +01:00
|
|
|
|
2017-02-09 17:41:17 +01:00
|
|
|
import { txLink } from '~/3rdparty/etherscan/links';
|
2016-12-09 10:55:46 +01:00
|
|
|
|
|
|
|
import IdentityIcon from '../../IdentityIcon';
|
|
|
|
import IdentityName from '../../IdentityName';
|
|
|
|
import MethodDecoding from '../../MethodDecoding';
|
|
|
|
|
|
|
|
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-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,
|
|
|
|
historic: PropTypes.bool
|
2016-12-09 10:55:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
historic: true
|
|
|
|
};
|
|
|
|
|
|
|
|
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-02-09 17:41:17 +01:00
|
|
|
<Link
|
|
|
|
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-02-09 17:41:17 +01:00
|
|
|
</Link>
|
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;
|
|
|
|
const value = api.util.fromWei(_value);
|
|
|
|
|
|
|
|
if (value.eq(0)) {
|
|
|
|
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>
|
|
|
|
<div>{ blockNumber ? _blockNumber.toFormat() : 'Pending' }</div>
|
|
|
|
</td>
|
|
|
|
);
|
|
|
|
}
|
2017-02-09 17:41:17 +01:00
|
|
|
|
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) {
|
|
|
|
return `/contracts/${address}`;
|
|
|
|
}
|
2017-02-09 17:41:17 +01:00
|
|
|
|
|
|
|
if (isAccount) {
|
|
|
|
return `/accounts/${address}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return `/addresses/${address}`;
|
|
|
|
}
|
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);
|