2e112e2406
* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
22 lines
544 B
JavaScript
22 lines
544 B
JavaScript
import { connect } from 'react-redux';
|
|
import ColumnSettings from '../components/column_settings';
|
|
import { changeSetting, saveSettings } from '../../../actions/settings';
|
|
|
|
const mapStateToProps = state => ({
|
|
settings: state.getIn(['settings', 'notifications']),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onChange (key, checked) {
|
|
dispatch(changeSetting(['notifications', ...key], checked));
|
|
},
|
|
|
|
onSave () {
|
|
dispatch(saveSettings());
|
|
},
|
|
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ColumnSettings);
|