mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
119 lines
3.3 KiB
JavaScript
119 lines
3.3 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import TransactionListItem from '../transaction-list-item'
|
|
import ShapeShiftTransactionListItem from '../shift-list-item'
|
|
import { TRANSACTION_TYPE_SHAPESHIFT } from '../../constants/transactions'
|
|
|
|
export default class TransactionList extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
static defaultProps = {
|
|
pendingTransactions: [],
|
|
completedTransactions: [],
|
|
transactionToRetry: {},
|
|
}
|
|
|
|
static propTypes = {
|
|
pendingTransactions: PropTypes.array,
|
|
completedTransactions: PropTypes.array,
|
|
transactionToRetry: PropTypes.object,
|
|
selectedToken: PropTypes.object,
|
|
updateNetworkNonce: PropTypes.func,
|
|
assetImages: PropTypes.object,
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.props.updateNetworkNonce()
|
|
}
|
|
|
|
componentDidUpdate (prevProps) {
|
|
const { pendingTransactions: prevPendingTransactions = [] } = prevProps
|
|
const { pendingTransactions = [], updateNetworkNonce } = this.props
|
|
|
|
if (pendingTransactions.length > prevPendingTransactions.length) {
|
|
updateNetworkNonce()
|
|
}
|
|
}
|
|
|
|
shouldShowRetry = transaction => {
|
|
const { transactionToRetry } = this.props
|
|
const { id, submittedTime } = transaction
|
|
return id === transactionToRetry.id && Date.now() - submittedTime > 30000
|
|
}
|
|
|
|
renderTransactions () {
|
|
const { t } = this.context
|
|
const { pendingTransactions = [], completedTransactions = [] } = this.props
|
|
return (
|
|
<div className="transaction-list__transactions">
|
|
{
|
|
pendingTransactions.length > 0 && (
|
|
<div className="transaction-list__pending-transactions">
|
|
<div className="transaction-list__header">
|
|
{ `${t('queue')} (${pendingTransactions.length})` }
|
|
</div>
|
|
{
|
|
pendingTransactions.map((transaction, index) => (
|
|
this.renderTransaction(transaction, index)
|
|
))
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
<div className="transaction-list__completed-transactions">
|
|
<div className="transaction-list__header">
|
|
{ t('history') }
|
|
</div>
|
|
{
|
|
completedTransactions.length > 0
|
|
? completedTransactions.map((transaction, index) => (
|
|
this.renderTransaction(transaction, index)
|
|
))
|
|
: this.renderEmpty()
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderTransaction (transaction, index) {
|
|
const { selectedToken, assetImages } = this.props
|
|
|
|
return transaction.key === TRANSACTION_TYPE_SHAPESHIFT
|
|
? (
|
|
<ShapeShiftTransactionListItem
|
|
{ ...transaction }
|
|
key={`shapeshift${index}`}
|
|
/>
|
|
) : (
|
|
<TransactionListItem
|
|
transaction={transaction}
|
|
key={transaction.id}
|
|
showRetry={this.shouldShowRetry(transaction)}
|
|
token={selectedToken}
|
|
assetImages={assetImages}
|
|
/>
|
|
)
|
|
}
|
|
|
|
renderEmpty () {
|
|
return (
|
|
<div className="transaction-list__empty">
|
|
<div className="transaction-list__empty-text">
|
|
{ this.context.t('noTransactions') }
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div className="transaction-list">
|
|
{ this.renderTransactions() }
|
|
</div>
|
|
)
|
|
}
|
|
}
|