mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
b4ecc4c3f5
* Added translation for eth sign toggle * Disabled the ability to call eth_sign by default. Added ability within advanced settings to renable support for eth_sign * Add test case for eth_sign being enabled and disabled * Modified copy * Moved rpc method preference to its own object within store * Complete work on moving rpc method preference into its own object within store * Fix with prettier * Fix lint * Fix a unit test * Fix test * Renamed function and object keys to be more intuitive * Fix e2e test * Enabled eth_sign through preferences fixture * Fix lint * Fix e2e test Wait for the notification popup to close, leaving 2 window handles the extension and the test dapp * Fix e2e test * Fix unit test Enable eth_sign method * Lint fix --------- Co-authored-by: PeterYinusa <peter.yinusa@consensys.net> Co-authored-by: Dan J Miller <danjm.com@gmail.com>
94 lines
2.8 KiB
JavaScript
94 lines
2.8 KiB
JavaScript
import { compose } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import {
|
|
displayWarning,
|
|
setFeatureFlag,
|
|
showModal,
|
|
setShowFiatConversionOnTestnetsPreference,
|
|
setShowTestNetworks,
|
|
setAutoLockTimeLimit,
|
|
setUseNonceField,
|
|
setLedgerTransportPreference,
|
|
setDismissSeedBackUpReminder,
|
|
setDisabledRpcMethodPreference,
|
|
backupUserData,
|
|
restoreUserData,
|
|
} from '../../../store/actions';
|
|
import { getPreferences } from '../../../selectors';
|
|
import { doesUserHaveALedgerAccount } from '../../../ducks/metamask/metamask';
|
|
import AdvancedTab from './advanced-tab.component';
|
|
|
|
export const mapStateToProps = (state) => {
|
|
const {
|
|
appState: { warning },
|
|
metamask,
|
|
} = state;
|
|
const {
|
|
featureFlags: { sendHexData, advancedInlineGas } = {},
|
|
disabledRpcMethodPreferences,
|
|
useNonceField,
|
|
ledgerTransportType,
|
|
dismissSeedBackUpReminder,
|
|
} = metamask;
|
|
const {
|
|
showFiatInTestnets,
|
|
showTestNetworks,
|
|
autoLockTimeLimit = 0,
|
|
} = getPreferences(state);
|
|
|
|
const userHasALedgerAccount = doesUserHaveALedgerAccount(state);
|
|
|
|
return {
|
|
warning,
|
|
sendHexData,
|
|
advancedInlineGas,
|
|
showFiatInTestnets,
|
|
showTestNetworks,
|
|
autoLockTimeLimit,
|
|
useNonceField,
|
|
ledgerTransportType,
|
|
dismissSeedBackUpReminder,
|
|
userHasALedgerAccount,
|
|
disabledRpcMethodPreferences,
|
|
};
|
|
};
|
|
|
|
export const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
backupUserData: () => backupUserData(),
|
|
restoreUserData: (jsonString) => restoreUserData(jsonString),
|
|
setHexDataFeatureFlag: (shouldShow) =>
|
|
dispatch(setFeatureFlag('sendHexData', shouldShow)),
|
|
displayWarning: (warning) => dispatch(displayWarning(warning)),
|
|
showResetAccountConfirmationModal: () =>
|
|
dispatch(showModal({ name: 'CONFIRM_RESET_ACCOUNT' })),
|
|
setAdvancedInlineGasFeatureFlag: (shouldShow) =>
|
|
dispatch(setFeatureFlag('advancedInlineGas', shouldShow)),
|
|
setUseNonceField: (value) => dispatch(setUseNonceField(value)),
|
|
setShowFiatConversionOnTestnetsPreference: (value) => {
|
|
return dispatch(setShowFiatConversionOnTestnetsPreference(value));
|
|
},
|
|
setShowTestNetworks: (value) => {
|
|
return dispatch(setShowTestNetworks(value));
|
|
},
|
|
setAutoLockTimeLimit: (value) => {
|
|
return dispatch(setAutoLockTimeLimit(value));
|
|
},
|
|
setLedgerTransportPreference: (value) => {
|
|
return dispatch(setLedgerTransportPreference(value));
|
|
},
|
|
setDismissSeedBackUpReminder: (value) => {
|
|
return dispatch(setDismissSeedBackUpReminder(value));
|
|
},
|
|
setDisabledRpcMethodPreference: (methodName, isEnabled) => {
|
|
return dispatch(setDisabledRpcMethodPreference(methodName, isEnabled));
|
|
},
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(AdvancedTab);
|