mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
22 lines
839 B
JavaScript
22 lines
839 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, denomination, hideLabel } = ownProps
|
|
const { metamask: { currentCurrency, conversionRate } } = state
|
|
|
|
const toCurrency = currency || currentCurrency
|
|
const convertedValue = getValueFromWeiHex({
|
|
value, toCurrency, conversionRate, numberOfDecimals, toDenomination: denomination,
|
|
})
|
|
const formattedValue = formatCurrency(convertedValue, toCurrency)
|
|
const displayValue = hideLabel ? formattedValue : `${formattedValue} ${toCurrency.toUpperCase()}`
|
|
|
|
return {
|
|
displayValue,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(CurrencyDisplay)
|