mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
130 lines
3.4 KiB
JavaScript
130 lines
3.4 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
addToAddressBook,
|
|
signTokenTx,
|
|
signTx,
|
|
updateTransaction,
|
|
} from '../../../store/actions';
|
|
import {
|
|
getGasLimit,
|
|
getGasPrice,
|
|
getGasTotal,
|
|
getSendToken,
|
|
getSendAmount,
|
|
getSendEditingTransactionId,
|
|
getSendFromObject,
|
|
getSendTo,
|
|
getSendHexData,
|
|
getTokenBalance,
|
|
getSendErrors,
|
|
isSendFormInError,
|
|
getGasIsLoading,
|
|
getRenderableEstimateDataForSmallButtonsFromGWEI,
|
|
getDefaultActiveButtonIndex,
|
|
getNoGasPriceFetched,
|
|
} from '../../../selectors';
|
|
import { getMostRecentOverviewPage } from '../../../ducks/history/history';
|
|
import { addHexPrefix } from '../../../../app/scripts/lib/util';
|
|
import {
|
|
getSendToAccounts,
|
|
getUnapprovedTxs,
|
|
} from '../../../ducks/metamask/metamask';
|
|
import { clearSend } from '../../../ducks/send/send.duck';
|
|
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),
|
|
noGasPrice: getNoGasPriceFetched(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,
|
|
});
|
|
|
|
return 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 = addHexPrefix(newAddress);
|
|
if (addressIsNew(toAccounts, hexPrefixedAddress)) {
|
|
// TODO: nickname, i.e. addToAddressBook(recipient, nickname)
|
|
dispatch(addToAddressBook(hexPrefixedAddress, nickname));
|
|
}
|
|
},
|
|
};
|
|
}
|