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.
28 lines
1.1 KiB
28 lines
1.1 KiB
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
import TransactionListItem from './transaction-list-item.component'
|
|
import { getEthFromWeiHex, getValueFromWeiHex } from '../../helpers/conversions.util'
|
|
import { formatCurrency } from '../../helpers/confirm-transaction/util'
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const { metamask } = state
|
|
const { currentCurrency, conversionRate } = metamask
|
|
const { transaction: { txParams: { value } = {} } = {} } = ownProps
|
|
const ethTransactionAmount = getEthFromWeiHex({ value, conversionRate })
|
|
const fiatTransactionAmount = getValueFromWeiHex({
|
|
value, conversionRate, toCurrency: currentCurrency, numberOfDecimals: 2,
|
|
})
|
|
const fiatFormattedAmount = formatCurrency(fiatTransactionAmount, currentCurrency)
|
|
const fiatDisplayValue = `${fiatFormattedAmount} ${currentCurrency.toUpperCase()}`
|
|
|
|
return {
|
|
ethTransactionAmount,
|
|
fiatDisplayValue,
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps),
|
|
)(TransactionListItem)
|
|
|