mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b231b091b9
* fix(17542): fix fiat currency display in few txn actions * fix(17542): refactor e2e tests to change to fia via fixture builder
75 lines
2.1 KiB
JavaScript
75 lines
2.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
import {
|
|
goHome,
|
|
encryptionPublicKeyMsg,
|
|
cancelEncryptionPublicKeyMsg,
|
|
} from '../../store/actions';
|
|
|
|
import {
|
|
conversionRateSelector,
|
|
unconfirmedTransactionsListSelector,
|
|
getTargetAccountWithSendEtherInfo,
|
|
getPreferences,
|
|
getCurrentCurrency,
|
|
} from '../../selectors';
|
|
|
|
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck';
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
import { getNativeCurrency } from '../../ducks/metamask/metamask';
|
|
import ConfirmEncryptionPublicKey from './confirm-encryption-public-key.component';
|
|
|
|
function mapStateToProps(state) {
|
|
const {
|
|
metamask: { subjectMetadata = {} },
|
|
} = state;
|
|
|
|
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
|
|
|
|
const unconfirmedTransactions = unconfirmedTransactionsListSelector(state);
|
|
|
|
const txData = unconfirmedTransactions[0];
|
|
|
|
const fromAccount = getTargetAccountWithSendEtherInfo(
|
|
state,
|
|
txData?.msgParams,
|
|
);
|
|
|
|
return {
|
|
txData,
|
|
subjectMetadata,
|
|
fromAccount,
|
|
requester: null,
|
|
requesterAddress: null,
|
|
conversionRate: useNativeCurrencyAsPrimaryCurrency
|
|
? null
|
|
: conversionRateSelector(state),
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
nativeCurrency: getNativeCurrency(state),
|
|
currentCurrency: getCurrentCurrency(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
goHome: () => dispatch(goHome()),
|
|
clearConfirmTransaction: () => dispatch(clearConfirmTransaction()),
|
|
encryptionPublicKey: (msgData, event) => {
|
|
const params = { data: msgData.msgParams, metamaskId: msgData.id };
|
|
event.stopPropagation();
|
|
return dispatch(encryptionPublicKeyMsg(params));
|
|
},
|
|
cancelEncryptionPublicKey: (msgData, event) => {
|
|
event.stopPropagation();
|
|
return dispatch(cancelEncryptionPublicKeyMsg(msgData));
|
|
},
|
|
};
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmEncryptionPublicKey);
|