mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
490d3b8d40
* Integrate controllers/tokensController * address rebase issues * small cleanup * addressing feedback * more feedback
87 lines
2.3 KiB
JavaScript
87 lines
2.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import {
|
|
contractExchangeRateSelector,
|
|
transactionFeeSelector,
|
|
} from '../../selectors';
|
|
import { getTokens } from '../../ducks/metamask/metamask';
|
|
import { getTokenData } from '../../helpers/utils/transactions.util';
|
|
import {
|
|
calcTokenAmount,
|
|
getTokenAddressParam,
|
|
getTokenValueParam,
|
|
} from '../../helpers/utils/token-util';
|
|
import { hexWEIToDecETH } from '../../helpers/utils/conversions.util';
|
|
import { isEqualCaseInsensitive } from '../../helpers/utils/util';
|
|
import ConfirmTokenTransactionBase from './confirm-token-transaction-base.component';
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const {
|
|
match: { params = {} },
|
|
} = ownProps;
|
|
const { id: paramsTransactionId } = params;
|
|
const {
|
|
confirmTransaction,
|
|
metamask: {
|
|
currentCurrency,
|
|
conversionRate,
|
|
currentNetworkTxList,
|
|
nativeCurrency,
|
|
},
|
|
} = state;
|
|
|
|
const {
|
|
txData: {
|
|
id: transactionId,
|
|
txParams: { to: tokenAddress, data } = {},
|
|
} = {},
|
|
} = confirmTransaction;
|
|
|
|
const transaction =
|
|
currentNetworkTxList.find(
|
|
({ id }) => id === (Number(paramsTransactionId) || transactionId),
|
|
) || {};
|
|
|
|
const {
|
|
ethTransactionTotal,
|
|
fiatTransactionTotal,
|
|
hexMaximumTransactionFee,
|
|
} = transactionFeeSelector(state, transaction);
|
|
const tokens = getTokens(state);
|
|
const currentToken = tokens?.find(({ address }) =>
|
|
isEqualCaseInsensitive(tokenAddress, address),
|
|
);
|
|
const { decimals, symbol: tokenSymbol } = currentToken || {};
|
|
|
|
const ethTransactionTotalMaxAmount = Number(
|
|
hexWEIToDecETH(hexMaximumTransactionFee),
|
|
).toFixed(6);
|
|
|
|
const tokenData = getTokenData(data);
|
|
const tokenValue = getTokenValueParam(tokenData);
|
|
const toAddress = getTokenAddressParam(tokenData);
|
|
const tokenAmount =
|
|
tokenData && calcTokenAmount(tokenValue, decimals).toFixed();
|
|
const contractExchangeRate = contractExchangeRateSelector(state);
|
|
|
|
return {
|
|
toAddress,
|
|
tokenAddress,
|
|
tokenAmount,
|
|
tokenSymbol,
|
|
currentCurrency,
|
|
conversionRate,
|
|
contractExchangeRate,
|
|
fiatTransactionTotal,
|
|
ethTransactionTotal,
|
|
ethTransactionTotalMaxAmount,
|
|
nativeCurrency,
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps),
|
|
)(ConfirmTokenTransactionBase);
|