// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import Setting from './setting.jsx'; import {FormattedMessage} from 'react-intl'; export default class BooleanSetting extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); } handleChange(e) { this.props.onChange(this.props.id, e.target.value === 'true'); } render() { let helpText; if (this.props.disabled && this.props.disabledText) { helpText = (
{this.props.disabledText} {this.props.helpText}
); } else { helpText = this.props.helpText; } return ( ); } } BooleanSetting.defaultProps = { trueText: ( ), falseText: ( ), disabled: false }; BooleanSetting.propTypes = { id: React.PropTypes.string.isRequired, label: React.PropTypes.node.isRequired, value: React.PropTypes.bool.isRequired, onChange: React.PropTypes.func.isRequired, trueText: React.PropTypes.node, falseText: React.PropTypes.node, disabled: React.PropTypes.bool.isRequired, disabledText: React.PropTypes.node, helpText: React.PropTypes.node.isRequired };