mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
20 lines
748 B
JavaScript
20 lines
748 B
JavaScript
import { connect } from 'react-redux'
|
|
import CurrencyDisplay from './currency-display.component'
|
|
import { getValueFromWeiHex, formatCurrency } from '../../helpers/confirm-transaction/util'
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const { value, numberOfDecimals = 2, currency } = ownProps
|
|
const { metamask: { currentCurrency, conversionRate } } = state
|
|
|
|
const toCurrency = currency || currentCurrency
|
|
const convertedValue = getValueFromWeiHex({ value, toCurrency, conversionRate, numberOfDecimals })
|
|
const formattedValue = formatCurrency(convertedValue, toCurrency)
|
|
const displayValue = `${formattedValue} ${toCurrency.toUpperCase()}`
|
|
|
|
return {
|
|
displayValue,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(CurrencyDisplay)
|