All files / javascripts/explorev2/components FieldSet.jsx

41.38% Statements 12/29
0% Branches 0/12
0% Functions 0/2
41.38% Lines 12/29
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 851x 1x 1x 1x 1x   1x   1x           1x   1x                                 1x                                                                                                 1x 1x  
import React, { PropTypes } from 'react';
import TextField from './TextField';
import CheckboxField from './CheckboxField';
import TextAreaField from './TextAreaField';
import SelectField from './SelectField';
 
import ControlHeader from './ControlHeader';
 
const fieldMap = {
  TextField,
  CheckboxField,
  TextAreaField,
  SelectField,
};
const fieldTypes = Object.keys(fieldMap);
 
const propTypes = {
  actions: PropTypes.object.isRequired,
  name: PropTypes.string.isRequired,
  type: PropTypes.oneOf(fieldTypes).isRequired,
  label: PropTypes.string.isRequired,
  choices: PropTypes.arrayOf(PropTypes.array),
  description: PropTypes.string,
  places: PropTypes.number,
  validators: PropTypes.array,
  validationErrors: PropTypes.array,
  value: PropTypes.oneOfType([
    PropTypes.string,
    PropTypes.number,
    PropTypes.bool,
    PropTypes.array]),
};
 
const defaultProps = {
  validators: [],
  validationErrors: [],
};
 
export default class FieldSet extends React.PureComponent {
  constructor(props) {
    super(props);
    this.validate = this.validate.bind(this);
    this.onChange = this.onChange.bind(this);
  }
  onChange(value, errors) {
    let validationErrors = this.validate(value);
    if (errors && errors.length > 0) {
      validationErrors = validationErrors.concat(errors);
    }
    this.props.actions.setFieldValue(this.props.name, value, validationErrors);
  }
  validate(value) {
    const validators = this.props.validators;
    const validationErrors = [];
    if (validators && validators.length > 0) {
      validators.forEach(f => {
        const v = f(value);
        if (v) {
          validationErrors.push(v);
        }
      });
    }
    return validationErrors;
  }
  render() {
    const FieldType = fieldMap[this.props.type];
    return (
      <div>
        <ControlHeader
          label={this.props.label}
          description={this.props.description}
          validationErrors={this.props.validationErrors}
        />
        <FieldType
          onChange={this.onChange}
          {...this.props}
        />
      </div>
    );
  }
}
 
FieldSet.propTypes = propTypes;
FieldSet.defaultProps = defaultProps;