2017-03-09 00:16:53 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { translate } from '../../base/i18n';
|
|
|
|
|
|
|
|
import AbstractPageReloadOverlay from './AbstractPageReloadOverlay';
|
2017-04-10 17:59:44 +00:00
|
|
|
import FilmstripOnlyOverlayFrame from './FilmstripOnlyOverlayFrame';
|
2017-03-09 00:16:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements a React Component for page reload overlay for filmstrip only
|
|
|
|
* mode. Shown before the conference is reloaded. Shows a warning message and
|
|
|
|
* counts down towards the reload.
|
|
|
|
*/
|
2017-04-10 17:59:44 +00:00
|
|
|
class PageReloadFilmstripOnlyOverlay extends AbstractPageReloadOverlay {
|
2017-03-09 00:16:53 +00:00
|
|
|
/**
|
2017-04-10 17:59:44 +00:00
|
|
|
* PageReloadFilmstripOnlyOverlay component's property types.
|
2017-03-09 00:16:53 +00:00
|
|
|
*
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
static propTypes = {
|
|
|
|
...AbstractPageReloadOverlay.propTypes,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function to translate human-readable text.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @type {Function}
|
|
|
|
*/
|
|
|
|
t: React.PropTypes.func
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement|null}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
const { t } = this.props;
|
|
|
|
const { message, timeLeft, title } = this.state;
|
|
|
|
|
|
|
|
return (
|
2017-04-10 17:59:44 +00:00
|
|
|
<FilmstripOnlyOverlayFrame>
|
2017-03-09 00:16:53 +00:00
|
|
|
<div className = 'inlay-filmstrip-only__container'>
|
|
|
|
<div className = 'inlay-filmstrip-only__title'>
|
|
|
|
{ t(title) }
|
|
|
|
</div>
|
|
|
|
<div className = 'inlay-filmstrip-only__text'>
|
|
|
|
{ t(message, { seconds: timeLeft }) }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{
|
|
|
|
this._renderButton()
|
|
|
|
}
|
|
|
|
{
|
|
|
|
this._renderProgressBar()
|
|
|
|
}
|
2017-04-10 17:59:44 +00:00
|
|
|
</FilmstripOnlyOverlayFrame>
|
2017-03-09 00:16:53 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-10 17:59:44 +00:00
|
|
|
export default translate(PageReloadFilmstripOnlyOverlay);
|