2018-04-26 18:38:38 +02:00
|
|
|
import { connect } from 'react-redux'
|
2018-04-11 16:21:54 +02:00
|
|
|
import {
|
|
|
|
getGasTotal,
|
2020-05-29 19:46:10 +02:00
|
|
|
getSendToken,
|
2018-04-11 16:21:54 +02:00
|
|
|
getSendFromBalance,
|
2018-04-27 02:38:14 +02:00
|
|
|
getTokenBalance,
|
2020-05-04 17:22:34 +02:00
|
|
|
getSendMaxModeState,
|
2020-05-04 21:06:28 +02:00
|
|
|
getBasicGasEstimateLoadingStatus,
|
|
|
|
} from '../../../../../selectors'
|
2018-04-11 16:21:54 +02:00
|
|
|
import { calcMaxAmount } from './amount-max-button.utils.js'
|
|
|
|
import {
|
|
|
|
updateSendAmount,
|
|
|
|
setMaxModeTo,
|
2019-04-17 21:15:13 +02:00
|
|
|
} from '../../../../../store/actions'
|
2018-04-11 16:21:54 +02:00
|
|
|
import AmountMaxButton from './amount-max-button.component'
|
2018-04-27 21:03:00 +02:00
|
|
|
import {
|
|
|
|
updateSendErrors,
|
2019-04-17 21:15:13 +02:00
|
|
|
} from '../../../../../ducks/send/send.duck'
|
2018-04-11 16:21:54 +02:00
|
|
|
|
2018-04-27 02:38:14 +02:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AmountMaxButton)
|
2018-04-11 16:21:54 +02:00
|
|
|
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
|
|
|
|
return {
|
2018-04-27 02:38:14 +02:00
|
|
|
balance: getSendFromBalance(state),
|
2019-05-20 18:38:08 +02:00
|
|
|
buttonDataLoading: getBasicGasEstimateLoadingStatus(state),
|
2018-04-11 16:21:54 +02:00
|
|
|
gasTotal: getGasTotal(state),
|
2020-05-04 17:22:34 +02:00
|
|
|
maxModeOn: getSendMaxModeState(state),
|
2020-05-29 19:46:10 +02:00
|
|
|
sendToken: getSendToken(state),
|
2018-04-11 16:21:54 +02:00
|
|
|
tokenBalance: getTokenBalance(state),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
|
|
return {
|
2020-02-15 21:34:12 +01:00
|
|
|
setAmountToMax: (maxAmountDataObject) => {
|
2018-04-30 18:03:49 +02:00
|
|
|
dispatch(updateSendErrors({ amount: null }))
|
|
|
|
dispatch(updateSendAmount(calcMaxAmount(maxAmountDataObject)))
|
2018-04-27 02:38:14 +02:00
|
|
|
},
|
2019-05-20 18:38:08 +02:00
|
|
|
clearMaxAmount: () => {
|
|
|
|
dispatch(updateSendAmount('0'))
|
|
|
|
},
|
2020-02-15 21:34:12 +01:00
|
|
|
setMaxModeTo: (bool) => dispatch(setMaxModeTo(bool)),
|
2018-04-11 16:21:54 +02:00
|
|
|
}
|
2018-04-27 02:38:14 +02:00
|
|
|
}
|