You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
import withMethodData from '../../higher-order-components/with-method-data'
|
|
import TransactionListItem from './transaction-list-item.component'
|
|
import { setSelectedToken, retryTransaction, showModal } from '../../actions'
|
|
import { hexToDecimal } from '../../helpers/conversions.util'
|
|
import { getTokenData } from '../../helpers/transactions.util'
|
|
import { formatDate } from '../../util'
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const { transaction: { txParams: { value, nonce, data } = {}, time } = {} } = ownProps
|
|
|
|
const tokenData = data && getTokenData(data)
|
|
const nonceAndDate = nonce ? `#${hexToDecimal(nonce)} - ${formatDate(time)}` : formatDate(time)
|
|
|
|
return {
|
|
value,
|
|
nonceAndDate,
|
|
tokenData,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
setSelectedToken: tokenAddress => dispatch(setSelectedToken(tokenAddress)),
|
|
retryTransaction: transactionId => dispatch(retryTransaction(transactionId)),
|
|
showCancelModal: (transactionId, originalGasPrice) => {
|
|
return dispatch(showModal({ name: 'CANCEL_TRANSACTION', transactionId, originalGasPrice }))
|
|
},
|
|
showTransactionDetailsModal: ({ transaction, onRetry, showRetry, onCancel, showCancel }) => {
|
|
return dispatch(showModal({
|
|
name: 'TRANSACTION_DETAILS',
|
|
transaction,
|
|
onRetry,
|
|
showRetry,
|
|
onCancel,
|
|
showCancel,
|
|
}))
|
|
},
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
withMethodData,
|
|
)(TransactionListItem)
|
|
|