This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-06-28 22:00:54 -07:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { changeLocalSetting } from '../../../actions/local_settings';
|
|
|
|
import { closeModal } from '../../../actions/modal';
|
|
|
|
import SettingsModal from '../components/settings_modal';
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
settings: state.get('local_settings'),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
toggleSetting (setting, e) {
|
|
|
|
dispatch(changeLocalSetting(setting, e.target.checked));
|
|
|
|
},
|
2017-07-03 19:51:00 -07:00
|
|
|
changeSetting (setting, e) {
|
|
|
|
dispatch(changeLocalSetting(setting, e.target.value));
|
|
|
|
},
|
2017-06-28 22:00:54 -07:00
|
|
|
onClose () {
|
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SettingsModal);
|