26 lines
542 B
JavaScript
26 lines
542 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import {
|
|
getSettings,
|
|
changeSetting,
|
|
saveSettings,
|
|
} from '../../../actions/settings';
|
|
import ColumnSettings from '../components/column_settings';
|
|
|
|
const mapStateToProps = state => ({
|
|
settings: getSettings(state).get('home'),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onChange(key, checked) {
|
|
dispatch(changeSetting(['home', ...key], checked));
|
|
},
|
|
|
|
onSave() {
|
|
dispatch(saveSettings());
|
|
},
|
|
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);
|