fleet/frontend/components/forms/fields/InputField/InputField.jsx

104 lines
2.7 KiB
React
Raw Normal View History

import React, { Component, PropTypes } from 'react';
import classnames from 'classnames';
2016-12-16 15:54:49 +00:00
import { pick } from 'lodash';
import FormField from 'components/forms/FormField';
const baseClass = 'input-field';
class InputField extends Component {
static propTypes = {
autofocus: PropTypes.bool,
error: PropTypes.string,
2016-12-16 15:54:49 +00:00
hint: PropTypes.oneOfType([PropTypes.array, PropTypes.string]),
inputClassName: PropTypes.string, // eslint-disable-line react/forbid-prop-types
inputWrapperClass: PropTypes.string,
inputOptions: PropTypes.object, // eslint-disable-line react/forbid-prop-types
label: PropTypes.string,
labelClassName: PropTypes.string,
name: PropTypes.string,
onChange: PropTypes.func,
placeholder: PropTypes.string,
type: PropTypes.string,
value: PropTypes.string.isRequired,
};
static defaultProps = {
autofocus: false,
inputWrapperClass: '',
inputOptions: {},
label: null,
labelClassName: '',
type: 'text',
value: '',
};
componentDidMount () {
const { autofocus } = this.props;
const { input } = this;
if (autofocus) {
input.focus();
}
return false;
}
onInputChange = (evt) => {
evt.preventDefault();
const { value } = evt.target;
const { onChange } = this.props;
return onChange(value);
}
render () {
const { error, inputClassName, inputOptions, inputWrapperClass, name, placeholder, type, value } = this.props;
2016-12-16 15:54:49 +00:00
const { onInputChange } = this;
const shouldShowPasswordClass = type === 'password';
2016-11-09 14:00:40 +00:00
const inputClasses = classnames(baseClass, inputClassName, {
[`${baseClass}--password`]: shouldShowPasswordClass,
[`${baseClass}--error`]: error,
[`${baseClass}__textarea`]: type === 'textarea',
});
2016-12-16 15:54:49 +00:00
const formFieldProps = pick(this.props, ['hint', 'label', 'error', 'name']);
if (type === 'textarea') {
return (
2016-12-16 15:54:49 +00:00
<FormField {...formFieldProps} type="textarea" className={inputWrapperClass}>
<textarea
name={name}
onChange={onInputChange}
className={inputClasses}
placeholder={placeholder}
ref={(r) => { this.input = r; }}
type={type}
{...inputOptions}
value={value}
/>
2016-12-16 15:54:49 +00:00
</FormField>
);
}
return (
2016-12-16 15:54:49 +00:00
<FormField {...formFieldProps} type="input" className={inputWrapperClass}>
<input
name={name}
onChange={onInputChange}
className={inputClasses}
placeholder={placeholder}
ref={(r) => { this.input = r; }}
type={type}
{...inputOptions}
value={value}
/>
2016-12-16 15:54:49 +00:00
</FormField>
);
}
}
export default InputField;