2019-03-06 16:28:59 +00:00
|
|
|
// @flow
|
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
2020-06-04 14:09:13 +00:00
|
|
|
import { appNavigate, reloadNow } from '../../../app/actions';
|
2019-04-09 11:05:20 +00:00
|
|
|
import { ConfirmDialog } from '../../../base/dialog';
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
|
|
import { connect } from '../../../base/redux';
|
2021-11-10 11:34:16 +00:00
|
|
|
import { setFatalError, setPageReloadOverlayCanceled } from '../../actions';
|
2019-03-06 16:28:59 +00:00
|
|
|
import AbstractPageReloadOverlay, {
|
2022-09-27 07:10:28 +00:00
|
|
|
type Props,
|
|
|
|
abstractMapStateToProps
|
2019-04-09 11:05:20 +00:00
|
|
|
} from '../AbstractPageReloadOverlay';
|
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
import OverlayFrame from './OverlayFrame';
|
2019-03-06 16:28:59 +00:00
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements a React Component for page reload overlay. Shown before the
|
|
|
|
* conference is reloaded. Shows a warning message and counts down towards the
|
|
|
|
* reload.
|
|
|
|
*/
|
2019-03-06 16:28:59 +00:00
|
|
|
class PageReloadOverlay extends AbstractPageReloadOverlay<Props> {
|
|
|
|
_interval: IntervalID;
|
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new PageReloadOverlay instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._onCancel = this._onCancel.bind(this);
|
|
|
|
this._onReloadNow = this._onReloadNow.bind(this);
|
|
|
|
}
|
|
|
|
|
2021-11-04 21:10:43 +00:00
|
|
|
_onCancel: () => void;
|
2019-03-06 16:28:59 +00:00
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
/**
|
|
|
|
* Handle clicking of the "Cancel" button. It will navigate back to the
|
|
|
|
* welcome page.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onCancel() {
|
|
|
|
clearInterval(this._interval);
|
2021-11-10 11:34:16 +00:00
|
|
|
this.props.dispatch(setPageReloadOverlayCanceled(this.props.error));
|
2018-06-26 12:18:29 +00:00
|
|
|
this.props.dispatch(setFatalError(undefined));
|
2017-11-24 15:23:40 +00:00
|
|
|
this.props.dispatch(appNavigate(undefined));
|
|
|
|
}
|
|
|
|
|
2021-11-04 21:10:43 +00:00
|
|
|
_onReloadNow: () => void;
|
2019-03-06 16:28:59 +00:00
|
|
|
|
2017-11-24 15:23:40 +00:00
|
|
|
/**
|
|
|
|
* Handle clicking on the "Reload Now" button. It will navigate to the same
|
|
|
|
* conference URL as before immediately, without waiting for the timer to
|
|
|
|
* kick in.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onReloadNow() {
|
|
|
|
clearInterval(this._interval);
|
2018-07-02 21:22:51 +00:00
|
|
|
this.props.dispatch(reloadNow());
|
2017-11-24 15:23:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2022-02-03 15:45:02 +00:00
|
|
|
const { t } = this.props;
|
2017-11-24 15:23:40 +00:00
|
|
|
const { message, timeLeft, title } = this.state;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<OverlayFrame>
|
2019-03-06 16:28:59 +00:00
|
|
|
<ConfirmDialog
|
2022-02-03 15:45:02 +00:00
|
|
|
cancelLabel = 'dialog.Cancel'
|
|
|
|
confirmLabel = 'dialog.rejoinNow'
|
|
|
|
descriptionKey = { `${t(message, { seconds: timeLeft })}` }
|
2019-03-06 16:28:59 +00:00
|
|
|
onCancel = { this._onCancel }
|
2022-02-03 15:45:02 +00:00
|
|
|
onSubmit = { this._onReloadNow }
|
|
|
|
title = { title } />
|
2017-11-24 15:23:40 +00:00
|
|
|
</OverlayFrame>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-03 15:45:02 +00:00
|
|
|
export default translate(connect(abstractMapStateToProps)(PageReloadOverlay));
|