mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
ddaa492751
The chosen token in the `send` flow was set from one of two places: `metamask.selectedTokenAddress` or `metamask.send.token`. The former is used most of the time, but the latter is used for the 'Edit' button shown in the upper-left of the confirmation UI. The send flow will now exclusively use `metamask.send.token` for the token state during the send flow. `metamask.selectedTokenAddress` is now only used for the selected token state on the Home screen. This simplifies the Redux state, as the send token is now in one place instead of two, and `metamask.selectedTokenAddress` has only one purpose.
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import {
|
|
getGasTotal,
|
|
getSendToken,
|
|
getSendFromBalance,
|
|
getTokenBalance,
|
|
getSendMaxModeState,
|
|
getBasicGasEstimateLoadingStatus,
|
|
} from '../../../../../selectors'
|
|
import { calcMaxAmount } from './amount-max-button.utils.js'
|
|
import {
|
|
updateSendAmount,
|
|
setMaxModeTo,
|
|
} from '../../../../../store/actions'
|
|
import AmountMaxButton from './amount-max-button.component'
|
|
import {
|
|
updateSendErrors,
|
|
} from '../../../../../ducks/send/send.duck'
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AmountMaxButton)
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
return {
|
|
balance: getSendFromBalance(state),
|
|
buttonDataLoading: getBasicGasEstimateLoadingStatus(state),
|
|
gasTotal: getGasTotal(state),
|
|
maxModeOn: getSendMaxModeState(state),
|
|
sendToken: getSendToken(state),
|
|
tokenBalance: getTokenBalance(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
setAmountToMax: (maxAmountDataObject) => {
|
|
dispatch(updateSendErrors({ amount: null }))
|
|
dispatch(updateSendAmount(calcMaxAmount(maxAmountDataObject)))
|
|
},
|
|
clearMaxAmount: () => {
|
|
dispatch(updateSendAmount('0'))
|
|
},
|
|
setMaxModeTo: (bool) => dispatch(setMaxModeTo(bool)),
|
|
}
|
|
}
|