44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import Toggle from 'react-toggle';
|
|
|
|
export default class SettingToggle extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
prefix: PropTypes.string,
|
|
settings: ImmutablePropTypes.map.isRequired,
|
|
settingPath: PropTypes.array.isRequired,
|
|
label: PropTypes.node,
|
|
onChange: PropTypes.func.isRequired,
|
|
icons: PropTypes.oneOfType([
|
|
PropTypes.bool,
|
|
PropTypes.object,
|
|
]),
|
|
ariaLabel: PropTypes.string,
|
|
}
|
|
|
|
onChange = ({ target }) => {
|
|
this.props.onChange(this.props.settingPath, target.checked);
|
|
}
|
|
|
|
render() {
|
|
const { prefix, settings, settingPath, label, icons, ariaLabel } = this.props;
|
|
const id = ['setting-toggle', prefix, ...settingPath].filter(Boolean).join('-');
|
|
|
|
return (
|
|
<div className='setting-toggle' aria-label={ariaLabel}>
|
|
<Toggle
|
|
id={id}
|
|
checked={settings.getIn(settingPath)}
|
|
onChange={this.onChange}
|
|
icons={icons}
|
|
onKeyDown={this.onKeyDown}
|
|
/>
|
|
{label && (<label htmlFor={id} className='setting-toggle__label'>{label}</label>)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|