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.
21 lines
839 B
21 lines
839 B
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)
|
|
|