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.
42 lines
1.2 KiB
42 lines
1.2 KiB
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
import TokenViewBalance from './token-view-balance.component'
|
|
import { getSelectedToken, getSelectedAddress } from '../../selectors'
|
|
import { showModal } from '../../actions'
|
|
import { getValueFromWeiHex } from '../../helpers/confirm-transaction/util'
|
|
|
|
const mapStateToProps = state => {
|
|
const selectedAddress = getSelectedAddress(state)
|
|
const { metamask } = state
|
|
const { network, accounts, currentCurrency, conversionRate } = metamask
|
|
const account = accounts[selectedAddress]
|
|
const { balance: value } = account
|
|
|
|
const ethBalance = getValueFromWeiHex({
|
|
value, toCurrency: 'ETH', conversionRate, numberOfDecimals: 3,
|
|
})
|
|
|
|
const fiatBalance = getValueFromWeiHex({
|
|
value, toCurrency: currentCurrency, conversionRate, numberOfDecimals: 2,
|
|
})
|
|
|
|
return {
|
|
selectedToken: getSelectedToken(state),
|
|
network,
|
|
ethBalance,
|
|
fiatBalance,
|
|
currentCurrency,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
showDepositModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER' })),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(TokenViewBalance)
|
|
|