All files / javascripts/explorev2/components SelectField.jsx

0% Statements 0/12
100% Branches 0/0
0% Functions 0/3
0% Lines 0/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49                                                                                                 
import React, { PropTypes } from 'react';
import { FormGroup, FormControl } from 'react-bootstrap';
import ControlLabelWithTooltip from './ControlLabelWithTooltip';
import { slugify } from '../../modules/utils';
 
const propTypes = {
  name: PropTypes.string.isRequired,
  choices: PropTypes.array,
  value: PropTypes.string,
  label: PropTypes.string,
  description: PropTypes.string,
  onChange: PropTypes.func,
};
 
const defaultProps = {
  value: '',
  label: null,
  description: null,
  onChange: () => {},
};
 
export default class SelectField extends React.Component {
  onChange(opt) {
    this.props.onChange(this.props.name, opt.target.value);
  }
 
  render() {
    return (
      <FormGroup controlId={`formControlsSelect-${slugify(this.props.label)}`}>
        <ControlLabelWithTooltip
          label={this.props.label}
          description={this.props.description}
        />
        <FormControl
          componentClass="select"
          placeholder="select"
          onChange={this.onChange.bind(this)}
          value={this.props.value}
        >
          {this.props.choices.map((c) => <option key={c[0]} value={c[0]}>{c[1]}</option>)}
        </FormControl>
      </FormGroup>
    );
  }
}
 
SelectField.propTypes = propTypes;
SelectField.defaultProps = defaultProps;