89 lines
2.6 KiB
TypeScript
89 lines
2.6 KiB
TypeScript
|
import React from 'react';
|
||
|
import { connect } from 'react-redux';
|
||
|
import translate from 'translations';
|
||
|
import { fetchTransactionData, TFetchTransactionData } from 'actions/transactions';
|
||
|
import { getTransactionDatas } from 'selectors/transactions';
|
||
|
import { getNetworkConfig } from 'selectors/config';
|
||
|
import { Spinner } from 'components/ui';
|
||
|
import TransactionDataTable from './TransactionDataTable';
|
||
|
import { AppState } from 'reducers';
|
||
|
import { NetworkConfig } from 'types/network';
|
||
|
import { TransactionState } from 'reducers/transactions';
|
||
|
import './TransactionStatus.scss';
|
||
|
|
||
|
interface OwnProps {
|
||
|
txHash: string;
|
||
|
}
|
||
|
|
||
|
interface StateProps {
|
||
|
tx: TransactionState | null;
|
||
|
network: NetworkConfig;
|
||
|
}
|
||
|
|
||
|
interface ActionProps {
|
||
|
fetchTransactionData: TFetchTransactionData;
|
||
|
}
|
||
|
|
||
|
type Props = OwnProps & StateProps & ActionProps;
|
||
|
|
||
|
class TransactionStatus extends React.Component<Props> {
|
||
|
public componentDidMount() {
|
||
|
this.props.fetchTransactionData(this.props.txHash);
|
||
|
}
|
||
|
|
||
|
public componentWillReceiveProps(nextProps: Props) {
|
||
|
if (this.props.txHash !== nextProps.txHash) {
|
||
|
this.props.fetchTransactionData(nextProps.txHash);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public render() {
|
||
|
const { tx, network } = this.props;
|
||
|
let content;
|
||
|
|
||
|
if (tx && tx.data) {
|
||
|
content = (
|
||
|
<React.Fragment>
|
||
|
<h2 className="TxStatus-title">Transaction Found</h2>
|
||
|
<div className="TxStatus-data">
|
||
|
<TransactionDataTable network={network} data={tx.data} receipt={tx.receipt} />
|
||
|
</div>
|
||
|
</React.Fragment>
|
||
|
);
|
||
|
} else if (tx && tx.error) {
|
||
|
content = (
|
||
|
<div className="TxStatus-error">
|
||
|
<h2 className="TxStatus-error-title">{translate('tx_notFound')}</h2>
|
||
|
<p className="TxStatus-error-desc">{translate('tx_notFound_1')}</p>
|
||
|
<ul className="TxStatus-error-list">
|
||
|
<li>Make sure you copied the Transaction Hash correctly</li>
|
||
|
<li>{translate('tx_notFound_2')}</li>
|
||
|
<li>{translate('tx_notFound_3')}</li>
|
||
|
<li>{translate('tx_notFound_4')}</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
);
|
||
|
} else if (tx && tx.isLoading) {
|
||
|
// tx.isLoading... probably.
|
||
|
content = (
|
||
|
<div className="TxStatus-loading">
|
||
|
<Spinner size="x3" />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return <div className="TxStatus">{content}</div>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function mapStateToProps(state: AppState, ownProps: OwnProps): StateProps {
|
||
|
const { txHash } = ownProps;
|
||
|
|
||
|
return {
|
||
|
tx: getTransactionDatas(state)[txHash],
|
||
|
network: getNetworkConfig(state)
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default connect(mapStateToProps, { fetchTransactionData })(TransactionStatus);
|