2021-02-04 19:15:23 +01:00
|
|
|
import { connect } from 'react-redux';
|
2022-01-20 16:42:13 +01:00
|
|
|
import { toggleCurrencySwitch } from '../../../ducks/app/app';
|
2021-02-04 19:15:23 +01:00
|
|
|
import { getPreferences } from '../../../selectors';
|
|
|
|
import UserPreferencedCurrencyInput from './user-preferenced-currency-input.component';
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapStateToProps = (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
|
2018-10-17 01:03:29 +02:00
|
|
|
|
|
|
|
return {
|
2018-10-26 10:26:43 +02:00
|
|
|
useNativeCurrencyAsPrimaryCurrency,
|
2022-01-20 16:42:13 +01:00
|
|
|
sendInputCurrencySwitched: state.appState.sendInputCurrencySwitched,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2022-01-20 16:42:13 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
return {
|
2022-03-02 18:57:46 +01:00
|
|
|
onPreferenceToggle: () => dispatch(toggleCurrencySwitch()),
|
2022-01-20 16:42:13 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps,
|
|
|
|
)(UserPreferencedCurrencyInput);
|