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.
122 lines
3.1 KiB
122 lines
3.1 KiB
import { connect } from 'react-redux'
|
|
import ethUtil from 'ethereumjs-util'
|
|
import {
|
|
addToAddressBook,
|
|
clearSend,
|
|
signTokenTx,
|
|
signTx,
|
|
updateTransaction,
|
|
} from '../../../store/actions'
|
|
import {
|
|
getGasLimit,
|
|
getGasPrice,
|
|
getGasTotal,
|
|
getSendToken,
|
|
getSendAmount,
|
|
getSendEditingTransactionId,
|
|
getSendFromObject,
|
|
getSendTo,
|
|
getSendToAccounts,
|
|
getSendHexData,
|
|
getTokenBalance,
|
|
getUnapprovedTxs,
|
|
getSendErrors,
|
|
isSendFormInError,
|
|
getGasIsLoading,
|
|
getRenderableEstimateDataForSmallButtonsFromGWEI,
|
|
getDefaultActiveButtonIndex,
|
|
} from '../../../selectors'
|
|
import { getMostRecentOverviewPage } from '../../../ducks/history/history'
|
|
import SendFooter from './send-footer.component'
|
|
import {
|
|
addressIsNew,
|
|
constructTxParams,
|
|
constructUpdatedTx,
|
|
} from './send-footer.utils'
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendFooter)
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
const gasButtonInfo = getRenderableEstimateDataForSmallButtonsFromGWEI(state)
|
|
const gasPrice = getGasPrice(state)
|
|
const activeButtonIndex = getDefaultActiveButtonIndex(gasButtonInfo, gasPrice)
|
|
const gasEstimateType = activeButtonIndex >= 0
|
|
? gasButtonInfo[activeButtonIndex].gasEstimateType
|
|
: 'custom'
|
|
const editingTransactionId = getSendEditingTransactionId(state)
|
|
|
|
return {
|
|
amount: getSendAmount(state),
|
|
data: getSendHexData(state),
|
|
editingTransactionId,
|
|
from: getSendFromObject(state),
|
|
gasLimit: getGasLimit(state),
|
|
gasPrice: getGasPrice(state),
|
|
gasTotal: getGasTotal(state),
|
|
inError: isSendFormInError(state),
|
|
sendToken: getSendToken(state),
|
|
to: getSendTo(state),
|
|
toAccounts: getSendToAccounts(state),
|
|
tokenBalance: getTokenBalance(state),
|
|
unapprovedTxs: getUnapprovedTxs(state),
|
|
sendErrors: getSendErrors(state),
|
|
gasEstimateType,
|
|
gasIsLoading: getGasIsLoading(state),
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
clearSend: () => dispatch(clearSend()),
|
|
sign: ({ sendToken, to, amount, from, gas, gasPrice, data }) => {
|
|
const txParams = constructTxParams({
|
|
amount,
|
|
data,
|
|
from,
|
|
gas,
|
|
gasPrice,
|
|
sendToken,
|
|
to,
|
|
})
|
|
|
|
sendToken
|
|
? dispatch(signTokenTx(sendToken.address, to, amount, txParams))
|
|
: dispatch(signTx(txParams))
|
|
},
|
|
update: ({
|
|
amount,
|
|
data,
|
|
editingTransactionId,
|
|
from,
|
|
gas,
|
|
gasPrice,
|
|
sendToken,
|
|
to,
|
|
unapprovedTxs,
|
|
}) => {
|
|
const editingTx = constructUpdatedTx({
|
|
amount,
|
|
data,
|
|
editingTransactionId,
|
|
from,
|
|
gas,
|
|
gasPrice,
|
|
sendToken,
|
|
to,
|
|
unapprovedTxs,
|
|
})
|
|
|
|
return dispatch(updateTransaction(editingTx))
|
|
},
|
|
|
|
addToAddressBookIfNew: (newAddress, toAccounts, nickname = '') => {
|
|
const hexPrefixedAddress = ethUtil.addHexPrefix(newAddress)
|
|
if (addressIsNew(toAccounts, hexPrefixedAddress)) {
|
|
// TODO: nickname, i.e. addToAddressBook(recipient, nickname)
|
|
dispatch(addToAddressBook(hexPrefixedAddress, nickname))
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|