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.
40 lines
1.1 KiB
40 lines
1.1 KiB
import { connect } from 'react-redux'
|
|
import {
|
|
getGasTotal,
|
|
getSelectedToken,
|
|
getSendFromBalance,
|
|
getTokenBalance,
|
|
} from '../../../send.selectors.js'
|
|
import { getMaxModeOn } from './amount-max-button.selectors.js'
|
|
import { calcMaxAmount } from './amount-max-button.utils.js'
|
|
import {
|
|
updateSendAmount,
|
|
setMaxModeTo,
|
|
} from '../../../../../actions'
|
|
import AmountMaxButton from './amount-max-button.component'
|
|
import {
|
|
updateSendErrors,
|
|
} from '../../../../../ducks/send.duck'
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AmountMaxButton)
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
return {
|
|
balance: getSendFromBalance(state),
|
|
gasTotal: getGasTotal(state),
|
|
maxModeOn: getMaxModeOn(state),
|
|
selectedToken: getSelectedToken(state),
|
|
tokenBalance: getTokenBalance(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
setAmountToMax: maxAmountDataObject => {
|
|
dispatch(updateSendErrors({ amount: null }))
|
|
dispatch(updateSendAmount(calcMaxAmount(maxAmountDataObject)))
|
|
},
|
|
setMaxModeTo: bool => dispatch(setMaxModeTo(bool)),
|
|
}
|
|
}
|
|
|