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 (