// Copyright 2015-2017 Parity Technologies (UK) Ltd. // 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 . import BigNumber from 'bignumber.js'; import { LinearProgress } from 'material-ui'; import React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { txLink } from '~/3rdparty/etherscan/links'; import Warning from '~/ui/Warning'; import ShortenedHash from '../ShortenedHash'; import styles from './txHash.css'; class TxHash extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { hash: PropTypes.string.isRequired, isTest: PropTypes.bool, maxConfirmations: PropTypes.number, summary: PropTypes.bool } static defaultProps = { maxConfirmations: 10 }; state = { blockNumber: new BigNumber(0), gas: {}, subscriptionId: null, transaction: null } componentWillMount () { this.fetchTransactionGas(); } componentWillReceiveProps (nextProps) { const prevHash = this.props.hash; const nextHash = nextProps.hash; if (prevHash !== nextHash) { this.fetchTransactionGas(nextProps); } } /** * Get the gas send for the current transaction * and save the value in the state */ fetchTransactionGas (props = this.props) { const { hash } = props; if (!hash) { return; } this.context.api.eth .getTransactionByHash(hash) .then((transaction = {}) => { const { gas = new BigNumber(0) } = transaction; this.setState({ gas: { hash, value: gas } }); }); } componentDidMount () { const { api } = this.context; return api.subscribe('eth_blockNumber', this.onBlockNumber).then((subscriptionId) => { this.setState({ subscriptionId }); }); } componentWillUnmount () { const { api } = this.context; const { subscriptionId } = this.state; return api.unsubscribe(subscriptionId); } render () { const { hash, isTest, summary } = this.props; const hashLink = ( ); return (
{ this.renderWarning() }

{ summary ? hashLink : }

{ this.renderConfirmations() }
); } renderWarning () { const { gas, transaction } = this.state; if (!(transaction && transaction.blockNumber && transaction.blockNumber.gt(0))) { return null; } const { gasUsed = new BigNumber(0) } = transaction; const isOog = transaction.transactionHash === gas.hash && gasUsed.gte(gas.value); if (!isOog) { return null; } return ( } /> ); } renderConfirmations () { const { maxConfirmations } = this.props; const { blockNumber, transaction } = this.state; if (!(transaction && transaction.blockNumber && transaction.blockNumber.gt(0))) { return (
); } const confirmations = blockNumber.minus(transaction.blockNumber).plus(1); const value = Math.min(confirmations.toNumber(), maxConfirmations); let count = confirmations.toFormat(0); if (confirmations.lte(maxConfirmations)) { count = `${count}/${maxConfirmations}`; } return (
); } onBlockNumber = (error, blockNumber) => { const { api } = this.context; const { hash } = this.props; if (error || !hash || /^(0x)?0*$/.test(hash)) { return; } return api.eth .getTransactionReceipt(hash) .then((transaction) => { this.setState({ blockNumber, transaction }); }) .catch((error) => { console.warn('onBlockNumber', error); this.setState({ blockNumber }); }); } } function mapStateToProps (state) { const { isTest } = state.nodeStatus; return { isTest }; } export default connect( mapStateToProps, null )(TxHash);