import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import KolideIcon from 'components/icons/KolideIcon';
import InputField from '../InputField';
const baseClass = 'input-icon-field';
class InputFieldWithIcon extends InputField {
static propTypes = {
autofocus: PropTypes.bool,
error: PropTypes.string,
hint: PropTypes.oneOfType([PropTypes.array, PropTypes.string]),
iconName: PropTypes.string,
name: PropTypes.string,
onChange: PropTypes.func,
placeholder: PropTypes.string,
tabIndex: PropTypes.number,
type: PropTypes.string,
className: PropTypes.string,
};
renderHeading = () => {
const { error, placeholder } = this.props;
const labelClasses = classnames(`${baseClass}__label`);
if (error) {
return
{error}
;
}
return {placeholder}
;
}
renderHint = () => {
const { hint } = this.props;
if (hint) {
return {hint};
}
return false;
}
render () {
const { className, error, iconName, name, placeholder, tabIndex, type, value } = this.props;
const { onInputChange, renderHint } = this;
const inputClasses = classnames(
`${baseClass}__input`,
'input-with-icon',
className,
{ [`${baseClass}__input--error`]: error },
{ [`${baseClass}__input--password`]: type === 'password' && value },
);
const iconClasses = classnames(
`${baseClass}__icon`,
{ [`${baseClass}__icon--error`]: error },
{ [`${baseClass}__icon--active`]: value },
);
return (
{this.renderHeading()}
{ this.input = r; }}
tabIndex={tabIndex}
type={type}
value={value}
/>
{iconName && }
{renderHint()}
);
}
}
export default InputFieldWithIcon;