import { compose } from 'redux'; import { connect } from 'react-redux'; import { withRouter } from 'react-router-dom'; import { setUseNftDetection, setOpenSeaEnabled, setTransactionSecurityCheckEnabled, ///: BEGIN:ONLY_INCLUDE_IN(blockaid) setSecurityAlertsEnabled, ///: END:ONLY_INCLUDE_IN } from '../../../store/actions'; import { getUseNftDetection, getOpenSeaEnabled, getIsTransactionSecurityCheckEnabled, ///: BEGIN:ONLY_INCLUDE_IN(blockaid) getIsSecurityAlertsEnabled, ///: END:ONLY_INCLUDE_IN } from '../../../selectors'; import ExperimentalTab from './experimental-tab.component'; const mapStateToProps = (state) => { return { useNftDetection: getUseNftDetection(state), openSeaEnabled: getOpenSeaEnabled(state), transactionSecurityCheckEnabled: getIsTransactionSecurityCheckEnabled(state), ///: BEGIN:ONLY_INCLUDE_IN(blockaid) securityAlertsEnabled: getIsSecurityAlertsEnabled(state), ///: END:ONLY_INCLUDE_IN }; }; const mapDispatchToProps = (dispatch) => { return { setUseNftDetection: (val) => dispatch(setUseNftDetection(val)), setOpenSeaEnabled: (val) => dispatch(setOpenSeaEnabled(val)), setTransactionSecurityCheckEnabled: (val) => dispatch(setTransactionSecurityCheckEnabled(val)), ///: BEGIN:ONLY_INCLUDE_IN(blockaid) setSecurityAlertsEnabled: (val) => setSecurityAlertsEnabled(val), ///: END:ONLY_INCLUDE_IN }; }; export default compose( withRouter, connect(mapStateToProps, mapDispatchToProps), )(ExperimentalTab);