1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/confirm-decrypt-message/confirm-decrypt-message.container.js
Danica Shen b231b091b9
fix(17542): fix fiat currency display in few txn actions (#18011)
* fix(17542): fix fiat currency display in few txn actions

* fix(17542): refactor e2e tests to change to fia via fixture builder
2023-03-08 16:05:55 +00:00

82 lines
2.3 KiB
JavaScript

import { connect } from 'react-redux';
import { compose } from 'redux';
import { withRouter } from 'react-router-dom';
import { cloneDeep } from 'lodash';
import {
goHome,
decryptMsg,
cancelDecryptMsg,
decryptMsgInline,
} from '../../store/actions';
import {
conversionRateSelector,
getCurrentCurrency,
getPreferences,
getTargetAccountWithSendEtherInfo,
unconfirmedTransactionsListSelector,
} from '../../selectors';
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck';
import { getMostRecentOverviewPage } from '../../ducks/history/history';
import { getNativeCurrency } from '../../ducks/metamask/metamask';
import ConfirmDecryptMessage from './confirm-decrypt-message.component';
function mapStateToProps(state) {
const {
metamask: { subjectMetadata = {} },
} = state;
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
const unconfirmedTransactions = unconfirmedTransactionsListSelector(state);
const txData = cloneDeep(unconfirmedTransactions[0]);
const fromAccount = getTargetAccountWithSendEtherInfo(
state,
txData?.msgParams?.from,
);
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()),
decryptMessage: (msgData, event) => {
const params = msgData.msgParams;
params.metamaskId = msgData.id;
event.stopPropagation(event);
return dispatch(decryptMsg(params));
},
cancelDecryptMessage: (msgData, event) => {
event.stopPropagation(event);
return dispatch(cancelDecryptMsg(msgData));
},
decryptMessageInline: (msgData, event) => {
const params = msgData.msgParams;
params.metamaskId = msgData.id;
event.stopPropagation(event);
return dispatch(decryptMsgInline(params));
},
};
}
export default compose(
withRouter,
connect(mapStateToProps, mapDispatchToProps),
)(ConfirmDecryptMessage);