insomnia/app/ui/components/RenderedQueryString.js

64 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-11-26 08:29:16 +00:00
import React, {PropTypes, PureComponent} from 'react';
import autobind from 'autobind-decorator';
2016-11-10 05:56:23 +00:00
import * as querystring from '../../common/querystring';
2016-11-10 02:40:53 +00:00
import * as util from '../../common/misc';
2016-07-20 23:09:05 +00:00
@autobind
2016-11-26 08:29:16 +00:00
class RenderedQueryString extends PureComponent {
constructor (props) {
super(props);
this.state = {
string: ''
};
}
2016-07-20 23:09:05 +00:00
2016-07-21 19:15:35 +00:00
_update (props, delay = false) {
clearTimeout(this._triggerTimeout);
this._triggerTimeout = setTimeout(async () => {
const {request} = props;
const {url, parameters} = await props.handleRender({
url: request.url,
parameters: request.parameters
});
const qs = querystring.buildFromParams(parameters);
const fullUrl = querystring.joinUrl(url, qs);
this.setState({string: util.prepareUrlForSending(fullUrl)});
}, delay ? 200 : 0);
2016-07-20 23:16:28 +00:00
}
componentDidMount () {
this._update(this.props);
}
2016-08-17 18:05:52 +00:00
componentWillUnmount () {
clearTimeout(this._triggerTimeout);
2016-08-17 18:05:52 +00:00
}
2016-07-20 23:16:28 +00:00
componentWillReceiveProps (nextProps) {
2016-07-21 19:15:35 +00:00
let delay = true;
// Update right away if we're switching requests
if (nextProps.request._id !== this.props.request._id) {
delay = false;
}
this._update(nextProps, delay);
2016-07-20 23:16:28 +00:00
}
render () {
if (this.state.string) {
2016-08-29 17:58:59 +00:00
return <span className="selectable force-wrap">{this.state.string}</span>
2016-07-20 23:16:28 +00:00
} else {
return <span className="super-duper-faint italic">...</span>
2016-07-20 23:16:28 +00:00
}
}
}
2016-07-20 23:09:05 +00:00
2016-07-20 23:16:28 +00:00
RenderedQueryString.propTypes = {
2016-07-22 20:11:20 +00:00
request: PropTypes.object.isRequired,
handleRender: PropTypes.func.isRequired,
2016-07-20 23:09:05 +00:00
};
2016-07-20 23:16:28 +00:00
export default RenderedQueryString;