bigbuffet-rw/app/gabsocial/features/preferences/components/settings_checkbox.js
2020-04-22 22:13:57 -05:00

39 lines
956 B
JavaScript

import React from 'react';
import { connect } from 'react-redux';
import ImmutablePureComponent from 'react-immutable-pure-component';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { changeSetting } from 'gabsocial/actions/settings';
import { Checkbox } from '../../forms';
const mapStateToProps = state => ({
settings: state.get('settings'),
});
export default @connect(mapStateToProps)
class SettingsCheckbox extends ImmutablePureComponent {
static propTypes = {
path: PropTypes.array.isRequired,
settings: ImmutablePropTypes.map.isRequired,
}
onChange = path => {
return e => {
this.props.dispatch(changeSetting(path, e.target.checked));
};
}
render() {
const { settings, path, ...props } = this.props;
return (
<Checkbox
checked={settings.getIn(path)}
onChange={this.onChange(path)}
{...props}
/>
);
}
}