mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
149 lines
2.7 KiB
JavaScript
149 lines
2.7 KiB
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
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 (
|
|
<textarea
|
|
ref={this._setRef}
|
|
{...props}
|
|
onChange={this._handleChange}
|
|
onFocus={this._handleFocus}
|
|
onBlur={this._handleBlur}
|
|
/>
|
|
);
|
|
} else {
|
|
return (
|
|
<input
|
|
ref={this._setRef}
|
|
{...props}
|
|
onChange={this._handleChange}
|
|
onFocus={this._handleFocus}
|
|
onBlur={this._handleBlur}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
DebouncedInput.propTypes = {
|
|
// Required
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
// Optional
|
|
onFocus: PropTypes.func,
|
|
onBlur: PropTypes.func,
|
|
textarea: PropTypes.bool,
|
|
delay: PropTypes.number,
|
|
};
|
|
|
|
export default DebouncedInput;
|