mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
f0f5554846
The `metamask.send.from` field was assumed by various selectors to be an object, but instead it was recently set to a string. The selectors have been updated to assume it's a string, and to fetch the full account object explicitly. The selector `getSendFromObject` was repurposed for this, as that's basically what it already did. The optional address parameter was removed though, as that was only used to fetch the `from` address in cases where the `send` state was set without there being a `from` address set. That case is no longer possible, as the `from` address is always set upon the initialization of the `send` state. The `getSendFromObject` selector no longer fetches the 'name' of that address from the address book state either. This property was not used in either of the cases this selector was used.
133 lines
3.9 KiB
JavaScript
133 lines
3.9 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import SendEther from './send.component'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'redux'
|
|
|
|
import {
|
|
getAmountConversionRate,
|
|
getBlockGasLimit,
|
|
getConversionRate,
|
|
getCurrentNetwork,
|
|
getGasLimit,
|
|
getGasPrice,
|
|
getGasTotal,
|
|
getPrimaryCurrency,
|
|
getRecentBlocks,
|
|
getSelectedToken,
|
|
getSelectedTokenContract,
|
|
getSendAmount,
|
|
getSendEditingTransactionId,
|
|
getSendHexDataFeatureFlagState,
|
|
getSendFromObject,
|
|
getSendTo,
|
|
getSendToNickname,
|
|
getTokenBalance,
|
|
getQrCodeData,
|
|
} from './send.selectors'
|
|
import {
|
|
getSelectedAddress,
|
|
getAddressBook,
|
|
} from '../../selectors/selectors'
|
|
import { getTokens } from './send-content/add-recipient/add-recipient.selectors'
|
|
import {
|
|
updateSendTo,
|
|
updateSendTokenBalance,
|
|
updateGasData,
|
|
setGasTotal,
|
|
showQrScanner,
|
|
qrCodeDetected,
|
|
updateSendEnsResolution,
|
|
updateSendEnsResolutionError,
|
|
} from '../../store/actions'
|
|
import {
|
|
resetSendState,
|
|
updateSendErrors,
|
|
} from '../../ducks/send/send.duck'
|
|
import {
|
|
fetchBasicGasEstimates,
|
|
} from '../../ducks/gas/gas.duck'
|
|
import {
|
|
calcGasTotal,
|
|
} from './send.utils.js'
|
|
import {
|
|
isValidDomainName,
|
|
} from '../../helpers/utils/util'
|
|
|
|
function mapStateToProps (state) {
|
|
const editingTransactionId = getSendEditingTransactionId(state)
|
|
|
|
return {
|
|
addressBook: getAddressBook(state),
|
|
amount: getSendAmount(state),
|
|
amountConversionRate: getAmountConversionRate(state),
|
|
blockGasLimit: getBlockGasLimit(state),
|
|
conversionRate: getConversionRate(state),
|
|
editingTransactionId,
|
|
from: getSendFromObject(state),
|
|
gasLimit: getGasLimit(state),
|
|
gasPrice: getGasPrice(state),
|
|
gasTotal: getGasTotal(state),
|
|
network: getCurrentNetwork(state),
|
|
primaryCurrency: getPrimaryCurrency(state),
|
|
qrCodeData: getQrCodeData(state),
|
|
recentBlocks: getRecentBlocks(state),
|
|
selectedAddress: getSelectedAddress(state),
|
|
selectedToken: getSelectedToken(state),
|
|
showHexData: getSendHexDataFeatureFlagState(state),
|
|
to: getSendTo(state),
|
|
toNickname: getSendToNickname(state),
|
|
tokens: getTokens(state),
|
|
tokenBalance: getTokenBalance(state),
|
|
tokenContract: getSelectedTokenContract(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
updateAndSetGasLimit: ({
|
|
blockGasLimit,
|
|
editingTransactionId,
|
|
gasLimit,
|
|
gasPrice,
|
|
recentBlocks,
|
|
selectedAddress,
|
|
selectedToken,
|
|
to,
|
|
value,
|
|
data,
|
|
}) => {
|
|
!editingTransactionId
|
|
? dispatch(updateGasData({ gasPrice, recentBlocks, selectedAddress, selectedToken, blockGasLimit, to, value, data }))
|
|
: dispatch(setGasTotal(calcGasTotal(gasLimit, gasPrice)))
|
|
},
|
|
updateSendTokenBalance: ({ selectedToken, tokenContract, address }) => {
|
|
dispatch(updateSendTokenBalance({
|
|
selectedToken,
|
|
tokenContract,
|
|
address,
|
|
}))
|
|
},
|
|
updateSendErrors: (newError) => dispatch(updateSendErrors(newError)),
|
|
resetSendState: () => dispatch(resetSendState()),
|
|
scanQrCode: () => dispatch(showQrScanner()),
|
|
qrCodeDetected: (data) => dispatch(qrCodeDetected(data)),
|
|
updateSendTo: (to, nickname) => dispatch(updateSendTo(to, nickname)),
|
|
fetchBasicGasEstimates: () => dispatch(fetchBasicGasEstimates()),
|
|
updateSendEnsResolution: (ensResolution) => dispatch(updateSendEnsResolution(ensResolution)),
|
|
updateSendEnsResolutionError: (message) => dispatch(updateSendEnsResolutionError(message)),
|
|
updateToNicknameIfNecessary: (to, toNickname, addressBook) => {
|
|
if (isValidDomainName(toNickname)) {
|
|
const addressBookEntry = addressBook.find(({ address }) => to === address) || {}
|
|
if (!addressBookEntry.name !== toNickname) {
|
|
dispatch(updateSendTo(to, addressBookEntry.name || ''))
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(SendEther)
|