mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Updating client dependancies. Switching to using yarn. * Updating React * Moving pure components to using function syntax (performance gains with newer react version) * Updating client dependancies. * Ignore .yarninstall * Enabling pre-lockfile because it's the entire point of using yarn. * Removing old webpack config * Moving to new prop-types * Fixing ESLint Errors * Updating jest snapshots. * Cleaning up package.json
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import Setting from './setting.jsx';
|
|
|
|
export default class RadioSetting extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleChange = this.handleChange.bind(this);
|
|
}
|
|
|
|
handleChange(e) {
|
|
this.props.onChange(this.props.id, e.target.value);
|
|
}
|
|
|
|
render() {
|
|
const options = [];
|
|
for (const {value, text} of this.props.values) {
|
|
options.push(
|
|
<div className='radio'>
|
|
<label>
|
|
<input
|
|
type='radio'
|
|
value={value}
|
|
name={this.props.id}
|
|
checked={value === this.props.value}
|
|
onChange={this.handleChange}
|
|
disabled={this.props.disabled}
|
|
/>
|
|
{text}
|
|
</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Setting
|
|
label={this.props.label}
|
|
inputId={this.props.id}
|
|
helpText={this.props.helpText}
|
|
>
|
|
{options}
|
|
</Setting>
|
|
);
|
|
}
|
|
}
|
|
|
|
RadioSetting.defaultProps = {
|
|
isDisabled: false
|
|
};
|
|
|
|
RadioSetting.propTypes = {
|
|
id: PropTypes.string.isRequired,
|
|
values: PropTypes.array.isRequired,
|
|
label: PropTypes.node.isRequired,
|
|
value: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
disabled: PropTypes.bool,
|
|
helpText: PropTypes.node
|
|
};
|