fleet/frontend/components/forms/fields/InputFieldWithIcon/InputFieldWithIcon.jsx
Zachary Wasserman dc4b97d15f
Fix React deprecation warnings (#1976)
- Refactor imports of PropTypes to use the prop-types package
- Upgrade dependencies that were setting off deprecation warnings
2019-01-06 17:25:33 -08:00

87 lines
2.2 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import Icon from 'components/icons/Icon';
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, value } = this.props;
const labelClasses = classnames(
`${baseClass}__label`,
{ [`${baseClass}__label--hidden`]: !value }
);
if (error) {
return <div className={`${baseClass}__errors`}>{error}</div>;
}
return <div className={labelClasses}>{placeholder}</div>;
}
renderHint = () => {
const { hint } = this.props;
if (hint) {
return <span className={`${baseClass}__hint`}>{hint}</span>;
}
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 (
<div className={baseClass}>
{this.renderHeading()}
<input
name={name}
onChange={onInputChange}
className={inputClasses}
placeholder={placeholder}
ref={(r) => { this.input = r; }}
tabIndex={tabIndex}
type={type}
value={value}
/>
{iconName && <Icon name={iconName} className={iconClasses} />}
{renderHint()}
</div>
);
}
}
export default InputFieldWithIcon;