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.
53 lines
1.5 KiB
53 lines
1.5 KiB
import SettingsTab from './settings-tab.component'
|
|
import { compose } from 'recompose'
|
|
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import {
|
|
setCurrentCurrency,
|
|
displayWarning,
|
|
setUseBlockie,
|
|
updateCurrentLocale,
|
|
setUseNativeCurrencyAsPrimaryCurrencyPreference,
|
|
setParticipateInMetaMetrics,
|
|
} from '../../../store/actions'
|
|
import { preferencesSelector } from '../../../selectors/selectors'
|
|
|
|
const mapStateToProps = state => {
|
|
const { appState: { warning }, metamask } = state
|
|
const {
|
|
currentCurrency,
|
|
conversionDate,
|
|
nativeCurrency,
|
|
useBlockie,
|
|
currentLocale,
|
|
} = metamask
|
|
const { useNativeCurrencyAsPrimaryCurrency } = preferencesSelector(state)
|
|
|
|
return {
|
|
warning,
|
|
currentLocale,
|
|
currentCurrency,
|
|
conversionDate,
|
|
nativeCurrency,
|
|
useBlockie,
|
|
useNativeCurrencyAsPrimaryCurrency,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
setCurrentCurrency: currency => dispatch(setCurrentCurrency(currency)),
|
|
displayWarning: warning => dispatch(displayWarning(warning)),
|
|
setUseBlockie: value => dispatch(setUseBlockie(value)),
|
|
updateCurrentLocale: key => dispatch(updateCurrentLocale(key)),
|
|
setUseNativeCurrencyAsPrimaryCurrencyPreference: value => {
|
|
return dispatch(setUseNativeCurrencyAsPrimaryCurrencyPreference(value))
|
|
},
|
|
setParticipateInMetaMetrics: (val) => dispatch(setParticipateInMetaMetrics(val)),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(SettingsTab)
|
|
|