mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
a404d964c6
* Implemented settings in DB * Added follow redirects to settings
70 lines
1.4 KiB
JavaScript
70 lines
1.4 KiB
JavaScript
import React, {Component, PropTypes} from 'react';
|
|
|
|
class Input extends Component {
|
|
_valueChanged (e) {
|
|
if (!this.props.onChange) {
|
|
return;
|
|
}
|
|
|
|
if (this.props.type === 'number') {
|
|
if (e.target.value === '') {
|
|
// This is what it returns when not a valid number
|
|
return;
|
|
}
|
|
this.props.onChange(parseFloat(e.target.value));
|
|
} else if (this.props.type === 'checkbox') {
|
|
this.props.onChange(e.target.checked);
|
|
} else {
|
|
this.props.onChange(e.target.value);
|
|
}
|
|
}
|
|
|
|
_updateValueFromProps () {
|
|
if (this.props.type === 'number') {
|
|
this.refs.input.value = this.props.value || 0;
|
|
} else if (this.props.type === 'checkbox') {
|
|
this.refs.input.checked = this.props.value || false;
|
|
} else {
|
|
this.refs.input.value = this.props.value || '';
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
this._updateValueFromProps()
|
|
}
|
|
|
|
componentDidUpdate () {
|
|
this._updateValueFromProps()
|
|
}
|
|
|
|
focus () {
|
|
this.refs.input.focus();
|
|
}
|
|
|
|
getValue () {
|
|
return this.refs.input.value;
|
|
}
|
|
|
|
render () {
|
|
const {value, ...other} = this.props;
|
|
return (
|
|
<input
|
|
{...other}
|
|
ref="input"
|
|
onChange={this._valueChanged.bind(this)}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|
|
Input.propTypes = {
|
|
onChange: PropTypes.func.isRequired,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.number,
|
|
PropTypes.string,
|
|
PropTypes.bool
|
|
])
|
|
};
|
|
|
|
export default Input;
|