import React, {PureComponent, PropTypes} from 'react'; import autobind from 'autobind-decorator'; import {debounce} from '../../../common/misc'; @autobind class DebouncedInput extends PureComponent { constructor (props) { super(props); if (!props.delay) { this._handleValueChange = props.onChange; } else { this._handleValueChange = debounce(props.onChange, props.delay || 500); } this._hasFocus = false; } _handleChange (e) { this._handleValueChange(e.target.value); } _handleFocus (e) { this._hasFocus = true; this.props.onFocus && this.props.onFocus(e); } _handleBlur (e) { this._hasFocus = false; this.props.onBlur && this.props.onBlur(e); } _setRef (n) { this._input = n; } setAttribute (name, value) { this._input.setAttribute(name, value); } removeAttribute (name) { this._input.removeAttribute(name); } getAttribute (name) { this._input.getAttribute(name); } hasFocus () { return this._hasFocus; } getSelectionStart () { if (this._input) { return this._input.selectionStart; } else { return -1; } } getSelectionEnd () { if (this._input) { return this._input.selectionEnd; } else { return -1; } } focus () { if (this._input) { this._input.focus(); } } focusEnd () { if (this._input) { // Hack to focus the end (set value to current value); this._input.value = this.getValue(); this._input.focus(); } } blur () { if (this._input) { this._input.blur(); } } select () { if (this._input) { this._input.select(); } } getValue () { if (this._input) { return this._input.value; } else { return ''; } } render () { const { onChange, // eslint-disable-line no-unused-vars onFocus, // eslint-disable-line no-unused-vars onBlur, // eslint-disable-line no-unused-vars delay, // eslint-disable-line no-unused-vars textarea, ...props } = this.props; if (textarea) { return (