mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
import AdvancedTab from './advanced-tab.component'
|
|
import { compose } from 'redux'
|
|
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import {
|
|
displayWarning,
|
|
setFeatureFlag,
|
|
showModal,
|
|
setShowFiatConversionOnTestnetsPreference,
|
|
setAutoLockTimeLimit,
|
|
setThreeBoxSyncingPermission,
|
|
turnThreeBoxSyncingOnAndInitialize,
|
|
setUseNonceField,
|
|
setIpfsGateway,
|
|
} from '../../../store/actions'
|
|
import { preferencesSelector } from '../../../selectors/selectors'
|
|
|
|
export const mapStateToProps = (state) => {
|
|
const { appState: { warning }, metamask } = state
|
|
const {
|
|
featureFlags: {
|
|
sendHexData,
|
|
advancedInlineGas,
|
|
} = {},
|
|
threeBoxSyncingAllowed,
|
|
threeBoxDisabled,
|
|
useNonceField,
|
|
ipfsGateway,
|
|
} = metamask
|
|
const { showFiatInTestnets, autoLockTimeLimit } = preferencesSelector(state)
|
|
|
|
return {
|
|
warning,
|
|
sendHexData,
|
|
advancedInlineGas,
|
|
showFiatInTestnets,
|
|
autoLockTimeLimit,
|
|
threeBoxSyncingAllowed,
|
|
threeBoxDisabled,
|
|
useNonceField,
|
|
ipfsGateway,
|
|
}
|
|
}
|
|
|
|
export const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
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))
|
|
},
|
|
setAutoLockTimeLimit: (value) => {
|
|
return dispatch(setAutoLockTimeLimit(value))
|
|
},
|
|
setThreeBoxSyncingPermission: (newThreeBoxSyncingState) => {
|
|
if (newThreeBoxSyncingState) {
|
|
dispatch(turnThreeBoxSyncingOnAndInitialize())
|
|
} else {
|
|
dispatch(setThreeBoxSyncingPermission(newThreeBoxSyncingState))
|
|
}
|
|
},
|
|
setIpfsGateway: (value) => {
|
|
return dispatch(setIpfsGateway(value))
|
|
},
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(AdvancedTab)
|