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.
66 lines
1.9 KiB
66 lines
1.9 KiB
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,
|
|
} 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 unconfirmedTransactions = unconfirmedTransactionsListSelector(state);
|
|
|
|
const txData = unconfirmedTransactions[0];
|
|
|
|
const { msgParams: from } = txData;
|
|
|
|
const fromAccount = getTargetAccountWithSendEtherInfo(state, from);
|
|
|
|
return {
|
|
txData,
|
|
subjectMetadata,
|
|
fromAccount,
|
|
requester: null,
|
|
requesterAddress: null,
|
|
conversionRate: conversionRateSelector(state),
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
nativeCurrency: getNativeCurrency(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);
|
|
|