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-07-12 01:02:51 -07:00
|
|
|
// Package imports //
|
2017-06-28 22:00:54 -07:00
|
|
|
import { connect } from 'react-redux';
|
2017-07-12 01:02:51 -07:00
|
|
|
|
|
|
|
// Mastodon imports //
|
2017-07-17 20:06:31 -07:00
|
|
|
import { closeModal } from 'mastodon/actions/modal';
|
2017-07-12 01:02:51 -07:00
|
|
|
|
|
|
|
// Our imports //
|
2017-07-17 20:06:31 -07:00
|
|
|
import { changeLocalSetting } from 'glitch/actions/local_settings';
|
2017-07-19 19:54:02 -07:00
|
|
|
import LocalSettings from '.';
|
2017-06-28 22:00:54 -07:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
settings: state.get('local_settings'),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
2017-07-19 19:54:02 -07:00
|
|
|
onChange (setting, value) {
|
|
|
|
dispatch(changeLocalSetting(setting, value));
|
2017-07-03 19:51:00 -07:00
|
|
|
},
|
2017-06-28 22:00:54 -07:00
|
|
|
onClose () {
|
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2017-07-19 19:54:02 -07:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(LocalSettings);
|