2016-11-07 20:24:38 +00:00
|
|
|
import React, {Component, PropTypes} from 'react';
|
2017-02-01 20:21:14 +00:00
|
|
|
import {remote} from 'electron';
|
2016-11-27 21:42:38 +00:00
|
|
|
import {DEBOUNCE_MILLIS, isMac} from '../../common/constants';
|
2016-11-28 07:12:17 +00:00
|
|
|
import {Dropdown, DropdownButton, DropdownItem, DropdownDivider, DropdownHint} from './base/dropdown';
|
2016-11-10 05:47:20 +00:00
|
|
|
import {trackEvent} from '../../analytics';
|
2016-11-27 21:42:38 +00:00
|
|
|
import MethodDropdown from './dropdowns/MethodDropdown';
|
2016-11-28 07:12:17 +00:00
|
|
|
import PromptModal from './modals/PromptModal';
|
|
|
|
import {showModal} from './modals/index';
|
2017-02-01 20:21:14 +00:00
|
|
|
import PromptButton from './base/PromptButton';
|
2016-11-07 20:24:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RequestUrlBar extends Component {
|
2016-11-28 07:12:17 +00:00
|
|
|
state = {
|
|
|
|
currentInterval: null,
|
|
|
|
currentTimeout: null,
|
2017-02-01 20:21:14 +00:00
|
|
|
downloadPath: null
|
2016-11-28 07:12:17 +00:00
|
|
|
};
|
|
|
|
|
2017-02-01 20:21:14 +00:00
|
|
|
_urlChangeDebounceTimeout = null;
|
2017-02-02 18:30:13 +00:00
|
|
|
_lastPastedText = null;
|
2017-02-01 20:21:14 +00:00
|
|
|
|
2017-02-08 00:31:48 +00:00
|
|
|
_setDropdownRef = n => this._dropdown = n;
|
|
|
|
|
|
|
|
_handleMetaClickSend = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
this._dropdown.show();
|
|
|
|
};
|
|
|
|
|
2016-11-27 21:42:38 +00:00
|
|
|
_handleFormSubmit = e => {
|
2016-11-07 20:24:38 +00:00
|
|
|
e.preventDefault();
|
2016-12-21 23:37:48 +00:00
|
|
|
e.stopPropagation();
|
2017-02-01 20:21:14 +00:00
|
|
|
|
|
|
|
this._handleSend();
|
2016-11-27 21:42:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleMethodChange = method => {
|
|
|
|
this.props.onMethodChange(method);
|
|
|
|
trackEvent('Request', 'Method Change', method);
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleUrlChange = e => {
|
|
|
|
const url = e.target.value;
|
2016-11-07 20:24:38 +00:00
|
|
|
|
2017-02-01 20:21:14 +00:00
|
|
|
clearTimeout(this._urlChangeDebounceTimeout);
|
2017-02-02 18:30:13 +00:00
|
|
|
this._urlChangeDebounceTimeout = setTimeout(async () => {
|
|
|
|
|
|
|
|
// If no pasted text in the queue, just fire the regular change handler
|
|
|
|
if (!pastedText) {
|
|
|
|
this.props.onUrlChange(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset pasted text cache
|
|
|
|
const pastedText = this._lastPastedText;
|
|
|
|
this._lastPastedText = null;
|
|
|
|
|
|
|
|
// Attempt to import the pasted text
|
|
|
|
const importedRequest = await this.props.handleImport(pastedText);
|
|
|
|
|
|
|
|
// Update depending on whether something was imported
|
|
|
|
if (importedRequest) {
|
|
|
|
this.props.onUrlChange(importedRequest.url);
|
|
|
|
} else {
|
|
|
|
this.props.onUrlChange(url);
|
|
|
|
}
|
|
|
|
|
2016-11-07 20:24:38 +00:00
|
|
|
}, DEBOUNCE_MILLIS);
|
2016-11-27 21:42:38 +00:00
|
|
|
};
|
2016-11-07 20:24:38 +00:00
|
|
|
|
2017-01-28 06:09:01 +00:00
|
|
|
_handleUrlPaste = e => {
|
2017-02-02 18:30:13 +00:00
|
|
|
// NOTE: We're not actually doing the import here to avoid races with onChange
|
|
|
|
this._lastPastedText = e.clipboardData.getData('text/plain');
|
2017-01-28 06:09:01 +00:00
|
|
|
};
|
|
|
|
|
2016-11-28 07:12:17 +00:00
|
|
|
_handleGenerateCode = () => {
|
|
|
|
this.props.handleGenerateCode();
|
|
|
|
trackEvent('Request', 'Generate Code', 'Send Action');
|
|
|
|
};
|
|
|
|
|
2017-02-01 20:21:14 +00:00
|
|
|
_handleSetDownloadLocation = () => {
|
|
|
|
const options = {
|
|
|
|
title: 'Select Download Location',
|
|
|
|
buttonLabel: 'Select',
|
|
|
|
properties: ['openDirectory'],
|
|
|
|
};
|
|
|
|
|
|
|
|
remote.dialog.showOpenDialog(options, paths => {
|
|
|
|
if (!paths || paths.length === 0) {
|
|
|
|
trackEvent('Response', 'Download Select Cancel');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({downloadPath: paths[0]});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleClearDownloadLocation = () => {
|
|
|
|
this.setState({downloadPath: null});
|
|
|
|
};
|
|
|
|
|
2016-11-28 07:12:17 +00:00
|
|
|
_handleKeyDown = e => {
|
|
|
|
if (!this._input) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// meta+l
|
|
|
|
const metaPressed = isMac() ? e.metaKey : e.ctrlKey;
|
|
|
|
if (metaPressed && e.keyCode === 76) {
|
|
|
|
e.preventDefault();
|
|
|
|
this._input.focus();
|
|
|
|
this._input.select();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleSend = () => {
|
|
|
|
// Don't stop interval because duh, it needs to keep going!
|
2017-01-28 06:09:01 +00:00
|
|
|
// XXX this._handleStopInterval(); XXX
|
2016-11-28 07:12:17 +00:00
|
|
|
|
|
|
|
this._handleStopTimeout();
|
2017-02-01 20:21:14 +00:00
|
|
|
|
|
|
|
const {downloadPath} = this.state;
|
|
|
|
if (downloadPath) {
|
|
|
|
this.props.handleSendAndDownload(downloadPath);
|
|
|
|
} else {
|
|
|
|
this.props.handleSend();
|
|
|
|
}
|
2016-11-28 07:12:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleSendAfterDelay = async () => {
|
|
|
|
const seconds = await showModal(PromptModal, {
|
|
|
|
inputType: 'decimal',
|
|
|
|
headerName: 'Send After Delay',
|
|
|
|
label: 'Delay in seconds',
|
|
|
|
defaultValue: 3,
|
|
|
|
submitName: 'Start',
|
|
|
|
});
|
|
|
|
|
|
|
|
this._handleStopTimeout();
|
|
|
|
this._sendTimeout = setTimeout(this._handleSend, seconds * 1000);
|
|
|
|
this.setState({currentTimeout: seconds});
|
|
|
|
|
|
|
|
trackEvent('Request', 'Send on Delay', 'Send Action', seconds);
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleSendOnInterval = async () => {
|
|
|
|
const seconds = await showModal(PromptModal, {
|
|
|
|
inputType: 'decimal',
|
|
|
|
headerName: 'Send on Interval',
|
|
|
|
label: 'Interval in seconds',
|
|
|
|
defaultValue: 3,
|
|
|
|
submitName: 'Start',
|
|
|
|
});
|
|
|
|
|
|
|
|
this._handleStopInterval();
|
|
|
|
this._sendInterval = setInterval(this._handleSend, seconds * 1000);
|
|
|
|
this.setState({currentInterval: seconds});
|
|
|
|
|
|
|
|
trackEvent('Request', 'Send on Interval', 'Send Action', seconds);
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleStopInterval = () => {
|
|
|
|
clearTimeout(this._sendInterval);
|
|
|
|
if (this.state.currentInterval) {
|
|
|
|
this.setState({currentInterval: null});
|
2016-12-21 23:37:48 +00:00
|
|
|
trackEvent('Request', 'Stop Send Interval');
|
2016-11-28 07:12:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleStopTimeout = () => {
|
|
|
|
clearTimeout(this._sendTimeout);
|
|
|
|
if (this.state.currentTimeout) {
|
|
|
|
this.setState({currentTimeout: null});
|
|
|
|
}
|
|
|
|
trackEvent('Request', 'Stop Send Timeout');
|
|
|
|
};
|
|
|
|
|
2016-12-21 23:37:48 +00:00
|
|
|
_handleClickSend = e => {
|
|
|
|
const metaPressed = isMac() ? e.metaKey : e.ctrlKey;
|
|
|
|
|
|
|
|
// If we're pressing a meta key, let the dropdown open
|
|
|
|
if (metaPressed) {
|
|
|
|
e.preventDefault(); // Don't submit the form
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we're not pressing a meta key, cancel dropdown and send the request
|
|
|
|
e.stopPropagation(); // Don't trigger the dropdown
|
|
|
|
this._handleFormSubmit(e);
|
|
|
|
};
|
|
|
|
|
2016-11-07 20:24:38 +00:00
|
|
|
componentDidMount () {
|
2016-11-28 07:12:17 +00:00
|
|
|
document.body.addEventListener('keydown', this._handleKeyDown);
|
2016-11-07 20:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
2016-11-28 07:12:17 +00:00
|
|
|
document.body.removeEventListener('keydown', this._handleKeyDown);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderSendButton () {
|
2017-02-01 20:21:14 +00:00
|
|
|
const {currentInterval, currentTimeout, downloadPath} = this.state;
|
2016-11-28 07:12:17 +00:00
|
|
|
|
|
|
|
let cancelButton = null;
|
|
|
|
if (currentInterval) {
|
|
|
|
cancelButton = (
|
|
|
|
<button type="button"
|
|
|
|
key="cancel-interval"
|
|
|
|
className="urlbar__send-btn danger"
|
|
|
|
onClick={this._handleStopInterval}>
|
|
|
|
Stop
|
|
|
|
</button>
|
|
|
|
)
|
|
|
|
} else if (currentTimeout) {
|
|
|
|
cancelButton = (
|
|
|
|
<button type="button"
|
|
|
|
key="cancel-timeout"
|
|
|
|
className="urlbar__send-btn danger"
|
|
|
|
onClick={this._handleStopTimeout}>
|
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
let sendButton;
|
|
|
|
if (!cancelButton) {
|
2016-12-21 23:37:48 +00:00
|
|
|
sendButton = (
|
2017-02-08 00:31:48 +00:00
|
|
|
<Dropdown key="dropdown" className="tall" right={true} ref={this._setDropdownRef}>
|
2016-12-21 23:37:48 +00:00
|
|
|
<DropdownButton className="urlbar__send-btn"
|
2017-02-08 00:31:48 +00:00
|
|
|
onContextMenu={this._handleMetaClickSend}
|
2016-12-21 23:37:48 +00:00
|
|
|
onClick={this._handleClickSend}
|
|
|
|
type="submit">
|
2017-02-01 20:21:14 +00:00
|
|
|
{downloadPath ? "Download" : "Send"}
|
2016-11-28 07:12:17 +00:00
|
|
|
</DropdownButton>
|
2016-12-21 23:37:48 +00:00
|
|
|
<DropdownDivider>Basic</DropdownDivider>
|
2016-11-28 07:12:17 +00:00
|
|
|
<DropdownItem type="submit">
|
|
|
|
<i className="fa fa-arrow-circle-o-right"/> Send Now
|
|
|
|
<DropdownHint char="Enter"/>
|
|
|
|
</DropdownItem>
|
|
|
|
<DropdownItem onClick={this._handleGenerateCode}>
|
2016-11-29 20:55:31 +00:00
|
|
|
<i className="fa fa-code"/> Generate Client Code
|
2016-11-28 07:12:17 +00:00
|
|
|
</DropdownItem>
|
2016-12-21 23:37:48 +00:00
|
|
|
<DropdownDivider>Advanced</DropdownDivider>
|
2016-11-28 07:12:17 +00:00
|
|
|
<DropdownItem onClick={this._handleSendAfterDelay}>
|
|
|
|
<i className="fa fa-clock-o"/> Send After Delay
|
|
|
|
</DropdownItem>
|
|
|
|
<DropdownItem onClick={this._handleSendOnInterval}>
|
2016-11-30 23:11:36 +00:00
|
|
|
<i className="fa fa-repeat"/> Repeat on Interval
|
2016-11-28 07:12:17 +00:00
|
|
|
</DropdownItem>
|
2017-02-01 20:21:14 +00:00
|
|
|
{downloadPath ? (
|
|
|
|
<DropdownItem stayOpenAfterClick={true}
|
|
|
|
buttonClass={PromptButton}
|
|
|
|
addIcon={true}
|
|
|
|
onClick={this._handleClearDownloadLocation}>
|
|
|
|
<i className="fa fa-stop-circle"/> Stop Auto-Download
|
|
|
|
</DropdownItem>
|
|
|
|
) : (
|
|
|
|
<DropdownItem onClick={this._handleSetDownloadLocation}>
|
|
|
|
<i className="fa fa-download"/> Download After Send
|
|
|
|
</DropdownItem>
|
|
|
|
)}
|
2016-11-28 07:12:17 +00:00
|
|
|
</Dropdown>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
cancelButton,
|
|
|
|
sendButton,
|
|
|
|
]
|
2016-11-07 20:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2016-11-27 21:42:38 +00:00
|
|
|
const {url, method} = this.props;
|
2016-11-07 20:24:38 +00:00
|
|
|
return (
|
|
|
|
<div className="urlbar">
|
2016-11-27 21:42:38 +00:00
|
|
|
<MethodDropdown onChange={this._handleMethodChange} method={method}>
|
|
|
|
{method} <i className="fa fa-caret-down"/>
|
|
|
|
</MethodDropdown>
|
|
|
|
<form onSubmit={this._handleFormSubmit}>
|
2016-11-29 20:55:31 +00:00
|
|
|
<input
|
|
|
|
ref={n => this._input = n}
|
2017-01-28 06:09:01 +00:00
|
|
|
onPaste={this._handleUrlPaste}
|
2016-11-29 20:55:31 +00:00
|
|
|
type="text"
|
|
|
|
placeholder="https://api.myproduct.com/v1/users"
|
|
|
|
defaultValue={url}
|
|
|
|
onChange={this._handleUrlChange}/>
|
2016-11-28 07:12:17 +00:00
|
|
|
{this.renderSendButton()}
|
2016-11-07 20:24:38 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RequestUrlBar.propTypes = {
|
2016-11-16 17:18:39 +00:00
|
|
|
handleSend: PropTypes.func.isRequired,
|
2017-02-01 20:21:14 +00:00
|
|
|
handleSendAndDownload: PropTypes.func.isRequired,
|
2017-02-02 18:30:13 +00:00
|
|
|
handleImport: PropTypes.func.isRequired,
|
2016-11-07 20:24:38 +00:00
|
|
|
onUrlChange: PropTypes.func.isRequired,
|
|
|
|
onMethodChange: PropTypes.func.isRequired,
|
2016-11-28 07:12:17 +00:00
|
|
|
handleGenerateCode: PropTypes.func.isRequired,
|
2016-11-07 20:24:38 +00:00
|
|
|
url: PropTypes.string.isRequired,
|
|
|
|
method: PropTypes.string.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default RequestUrlBar;
|