You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
601 B
25 lines
601 B
// Package imports //
|
|
import { connect } from 'react-redux';
|
|
|
|
// Mastodon imports //
|
|
import { closeModal } from 'mastodon/actions/modal';
|
|
|
|
// Our imports //
|
|
import { changeLocalSetting } from 'glitch/actions/local_settings';
|
|
import LocalSettings from '.';
|
|
|
|
const mapStateToProps = state => ({
|
|
settings: state.get('local_settings'),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onChange (setting, value) {
|
|
dispatch(changeLocalSetting(setting, value));
|
|
},
|
|
onClose () {
|
|
dispatch(closeModal());
|
|
},
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(LocalSettings);
|