insomnia/app/ui/components/response-timer.js
Gregory Schier 2cdd4761c8 Remaining V5 Features (#122)
* Add digest auth and response timeline

* Some css fixes

* Fixed Button

* More auth methods, fixed URL regex, and fix gzip

* Get rid of negotiate auth

* Fix proxy

* Fixed GA tracking

* Some very small changes and fixes

* Fix content type names

* Even better auth switching and timeline syntax

* Some auth tweaks

* CSS tweaks

* Reworked toasts

* Fixed timer rounding quirk

* Request settings and render errors

* Fixed tests

* Vertical dragging and stuff

* Remove beta
2017-03-28 15:45:23 -07:00

63 lines
1.6 KiB
JavaScript

import React, {PureComponent, PropTypes} from 'react';
import classnames from 'classnames';
import {REQUEST_TIME_TO_SHOW_COUNTER} from '../../common/constants';
class ResponseTimer extends PureComponent {
constructor (props) {
super(props);
this._interval = null;
this.state = {
show: false,
elapsedTime: 0
};
}
componentWillUnmount () {
clearInterval(this._interval);
}
componentDidMount () {
this._interval = setInterval(() => {
const {loadStartTime} = this.props;
if (loadStartTime > 0) {
// Show and update if needed
const millis = Date.now() - loadStartTime - 200;
const elapsedTime = Math.round(millis / 100) / 10;
this.setState({show: true, elapsedTime});
} else if (this.state.show) {
// Hide if needed
this.setState({show: false});
}
}, 100);
}
render () {
const {handleCancel} = this.props;
const {show, elapsedTime} = this.state;
return (
<div className={classnames('overlay', {'overlay--hidden': !show})}>
{elapsedTime > REQUEST_TIME_TO_SHOW_COUNTER
? <h2>{elapsedTime.toFixed(1)} seconds...</h2>
: <h2>Loading...</h2>
}
<div className="pad">
<i className="fa fa-refresh fa-spin"/>
</div>
<div className="pad">
<button className="btn btn--clicky" onClick={handleCancel}>
Cancel Request
</button>
</div>
</div>
);
}
}
ResponseTimer.propTypes = {
handleCancel: PropTypes.func.isRequired,
loadStartTime: PropTypes.number.isRequired
};
export default ResponseTimer;