import React, { PropTypes } from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
export default class SelectControl extends React.Component {
handleChange = (e) => {
this.props.onChange(e.target.value);
};
render() {
const { field, value } = this.props;
const fieldOptions = field.get('options');
if (!fieldOptions) {
return
Error rendering select control for {field.get('name')}: No options
;
}
const options = fieldOptions.map((option) => {
if (typeof option === 'string') {
return { label: option, value: option };
}
return option;
});
return ();
}
}
SelectControl.propTypes = {
onChange: PropTypes.func.isRequired,
value: PropTypes.node,
field: ImmutablePropTypes.contains({
options: ImmutablePropTypes.listOf(PropTypes.oneOf([
PropTypes.string,
ImmutablePropTypes.contains({
label: PropTypes.string.isRequired,
value: PropTypes.string.isRequired,
}),
])).isRequired,
}),
};