2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent, PropTypes} from 'react';
|
2016-11-27 21:42:38 +00:00
|
|
|
import {REQUEST_TIME_TO_SHOW_COUNTER} from '../../common/constants';
|
|
|
|
|
2017-02-28 21:32:23 +00:00
|
|
|
class ResponseTimer extends PureComponent {
|
2016-11-27 21:42:38 +00:00
|
|
|
render () {
|
|
|
|
const {loadStartTime, className, handleCancel} = this.props;
|
|
|
|
|
|
|
|
if (loadStartTime < 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a timer to update the UI again soon
|
|
|
|
setTimeout(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
const millis = Date.now() - loadStartTime - 200;
|
|
|
|
const elapsedTime = Math.round(millis / 100) / 10;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={className}>
|
|
|
|
{elapsedTime > REQUEST_TIME_TO_SHOW_COUNTER ? (
|
|
|
|
<h2>{elapsedTime} seconds...</h2>
|
|
|
|
) : (
|
|
|
|
<h2>Loading...</h2>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<i className="fa fa-refresh fa-spin"></i>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<div className="pad">
|
|
|
|
<button className="btn btn--clicky" onClick={handleCancel}>
|
|
|
|
Cancel Request
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-03 20:09:08 +00:00
|
|
|
);
|
2016-11-27 21:42:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ResponseTimer.propTypes = {
|
|
|
|
handleCancel: PropTypes.func.isRequired,
|
2017-03-03 20:09:08 +00:00
|
|
|
loadStartTime: PropTypes.number.isRequired
|
2016-11-27 21:42:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ResponseTimer;
|