2017-07-12 10:02:51 +02:00
|
|
|
// Package imports //
|
2017-06-29 07:00:54 +02:00
|
|
|
import { connect } from 'react-redux';
|
2017-07-12 10:02:51 +02:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import { closeModal } from '../../../mastodon/actions/modal';
|
|
|
|
|
|
|
|
// Our imports //
|
|
|
|
import { changeLocalSetting } from '../../actions/local_settings';
|
|
|
|
import Settings from '../../components/settings';
|
2017-06-29 07:00:54 +02:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
settings: state.get('local_settings'),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
toggleSetting (setting, e) {
|
|
|
|
dispatch(changeLocalSetting(setting, e.target.checked));
|
|
|
|
},
|
2017-07-04 04:51:00 +02:00
|
|
|
changeSetting (setting, e) {
|
|
|
|
dispatch(changeLocalSetting(setting, e.target.value));
|
|
|
|
},
|
2017-06-29 07:00:54 +02:00
|
|
|
onClose () {
|
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2017-07-12 10:02:51 +02:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Settings);
|