2021-08-09 02:36:42 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-17 10:36:14 +02:00
|
|
|
import * as SETTINGS from 'constants/settings';
|
2021-08-09 02:36:42 +02:00
|
|
|
import { doSetClientSetting } from 'redux/actions/settings';
|
2022-02-26 06:18:10 +01:00
|
|
|
import { selectClientSetting } from 'redux/selectors/settings';
|
2021-08-09 02:36:42 +02:00
|
|
|
|
|
|
|
import SettingUnauthenticated from './view';
|
|
|
|
|
|
|
|
const select = (state) => ({
|
2021-11-23 05:29:04 +01:00
|
|
|
searchInLanguage: selectClientSetting(state, SETTINGS.SEARCH_IN_LANGUAGE),
|
2021-08-09 02:36:42 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const perform = (dispatch) => ({
|
|
|
|
setSearchInLanguage: (value) => dispatch(doSetClientSetting(SETTINGS.SEARCH_IN_LANGUAGE, value)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(SettingUnauthenticated);
|