2016-03-20 23:20:00 +00:00
|
|
|
import React, {Component, PropTypes} from 'react'
|
2016-04-09 18:47:51 +00:00
|
|
|
import DebouncingInput from './base/DebouncingInput';
|
2016-03-22 05:01:58 +00:00
|
|
|
import Dropdown from './base/Dropdown';
|
2016-04-23 06:08:52 +00:00
|
|
|
import {METHODS} from '../lib/constants';
|
2016-03-20 23:20:00 +00:00
|
|
|
|
|
|
|
class UrlInput extends Component {
|
|
|
|
render () {
|
2016-04-09 21:08:55 +00:00
|
|
|
const {sendRequest, onUrlChange, onMethodChange, request} = this.props;
|
2016-03-20 23:20:00 +00:00
|
|
|
return (
|
2016-04-17 22:46:17 +00:00
|
|
|
<div className="tall grid grid--center wide bg-super-light">
|
|
|
|
<Dropdown className="tall">
|
2016-04-18 04:39:15 +00:00
|
|
|
<button className="pad tall txt-md">
|
|
|
|
{request.method} <i className="fa fa-caret-down"></i>
|
2016-03-21 05:47:49 +00:00
|
|
|
</button>
|
2016-04-04 07:15:30 +00:00
|
|
|
<ul>
|
2016-03-21 05:47:49 +00:00
|
|
|
{METHODS.map((method) => (
|
|
|
|
<li key={method}>
|
2016-03-22 03:22:45 +00:00
|
|
|
<button onClick={onMethodChange.bind(null, method)}>
|
2016-03-21 05:47:49 +00:00
|
|
|
{method}
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</Dropdown>
|
2016-04-17 22:46:17 +00:00
|
|
|
<form className="tall grid__cell form-control form-control--wide"
|
|
|
|
onSubmit={e => {e.preventDefault(); sendRequest(request)}}>
|
2016-04-09 21:08:55 +00:00
|
|
|
<DebouncingInput
|
|
|
|
type="text"
|
2016-04-17 05:22:10 +00:00
|
|
|
className="txt-md"
|
2016-04-09 21:08:55 +00:00
|
|
|
placeholder="http://echo.insomnia.rest/status/200"
|
|
|
|
value={request.url}
|
|
|
|
debounceMillis={1000}
|
2016-04-17 22:46:17 +00:00
|
|
|
uniquenessKey={request._id}
|
2016-04-09 21:08:55 +00:00
|
|
|
onChange={onUrlChange}/>
|
|
|
|
</form>
|
2016-04-17 22:46:17 +00:00
|
|
|
<button className="btn btn--compact txt-lg" onClick={sendRequest.bind(null, request)}>
|
2016-04-18 04:39:15 +00:00
|
|
|
Send
|
|
|
|
</button>
|
2016-03-20 23:20:00 +00:00
|
|
|
</div>
|
2016-04-17 22:46:17 +00:00
|
|
|
);
|
2016-03-20 23:20:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UrlInput.propTypes = {
|
2016-04-09 21:08:55 +00:00
|
|
|
sendRequest: PropTypes.func.isRequired,
|
2016-03-20 23:20:00 +00:00
|
|
|
onUrlChange: PropTypes.func.isRequired,
|
2016-03-20 23:27:46 +00:00
|
|
|
onMethodChange: PropTypes.func.isRequired,
|
2016-03-22 18:20:05 +00:00
|
|
|
request: PropTypes.shape({
|
|
|
|
url: PropTypes.string.isRequired,
|
|
|
|
method: PropTypes.string.isRequired
|
|
|
|
}).isRequired
|
2016-03-20 23:20:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default UrlInput;
|