148 lines
4.4 KiB
JavaScript
148 lines
4.4 KiB
JavaScript
// @flow
|
|
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
|
|
import PageReloadFilmstripOnlyOverlay from './PageReloadFilmstripOnlyOverlay';
|
|
import PageReloadOverlay from './PageReloadOverlay';
|
|
import SuspendedFilmstripOnlyOverlay from './SuspendedFilmstripOnlyOverlay';
|
|
import SuspendedOverlay from './SuspendedOverlay';
|
|
import UserMediaPermissionsFilmstripOnlyOverlay
|
|
from './UserMediaPermissionsFilmstripOnlyOverlay';
|
|
import UserMediaPermissionsOverlay from './UserMediaPermissionsOverlay';
|
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
/**
|
|
* The lazily-initialized list of overlay React {@link Component} types used The
|
|
* user interface is filmstrip-only.
|
|
*
|
|
* XXX The value is meant to be compile-time defined so it does not contradict
|
|
* our coding style to not have global values that are runtime defined and
|
|
* merely works around side effects of circular imports.
|
|
*
|
|
* @type Array
|
|
*/
|
|
let _filmstripOnlyOverlays;
|
|
|
|
/**
|
|
* The lazily-initialized list of overlay React {@link Component} types used The
|
|
* user interface is not filmstrip-only.
|
|
*
|
|
* XXX The value is meant to be compile-time defined so it does not contradict
|
|
* our coding style to not have global values that are runtime defined and
|
|
* merely works around side effects of circular imports.
|
|
*
|
|
* @type Array
|
|
*/
|
|
let _nonFilmstripOnlyOverlays;
|
|
|
|
/**
|
|
* The type of the React {@link Component} props of {@code OverlayContainer}.
|
|
*/
|
|
type Props = {
|
|
|
|
/**
|
|
* The React {@link Component} type of overlay to be rendered by the
|
|
* associated {@code OverlayContainer}.
|
|
*/
|
|
overlay: ?React$ComponentType<*>
|
|
}
|
|
|
|
/**
|
|
* Implements a React {@link Component} that will display the correct overlay
|
|
* when needed.
|
|
*/
|
|
class OverlayContainer extends Component<Props> {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @public
|
|
* @returns {ReactElement|null}
|
|
*/
|
|
render() {
|
|
const { overlay } = this.props;
|
|
|
|
return overlay ? React.createElement(overlay, {}) : null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the list of overlay React {@link Component} types to be rendered by
|
|
* {@code OverlayContainer}. The list is lazily initialized the first time it is
|
|
* required in order to works around side effects of circular imports.
|
|
*
|
|
* @param {boolean} filmstripOnly - The indicator which determines whether the
|
|
* user interface is filmstrip-only.
|
|
* @returns {Array} The list of overlay React {@code Component} types to be
|
|
* rendered by {@code OverlayContainer}.
|
|
*/
|
|
function _getOverlays(filmstripOnly) {
|
|
let overlays;
|
|
|
|
if (filmstripOnly) {
|
|
if (!(overlays = _filmstripOnlyOverlays)) {
|
|
overlays = _filmstripOnlyOverlays = [
|
|
PageReloadFilmstripOnlyOverlay,
|
|
SuspendedFilmstripOnlyOverlay,
|
|
UserMediaPermissionsFilmstripOnlyOverlay
|
|
];
|
|
}
|
|
} else if (!(overlays = _nonFilmstripOnlyOverlays)) {
|
|
overlays = _nonFilmstripOnlyOverlays = [
|
|
PageReloadOverlay
|
|
];
|
|
|
|
// Mobile only has a PageReloadOverlay.
|
|
if (navigator.product !== 'ReactNative') {
|
|
overlays.push(...[
|
|
SuspendedOverlay,
|
|
UserMediaPermissionsOverlay
|
|
]);
|
|
}
|
|
}
|
|
|
|
return overlays;
|
|
}
|
|
|
|
/**
|
|
* Maps (parts of) the redux state to the associated {@code OverlayContainer}'s
|
|
* props.
|
|
*
|
|
* @param {Object} state - The redux state.
|
|
* @private
|
|
* @returns {{
|
|
* overlay: ?Object
|
|
* }}
|
|
*/
|
|
function _mapStateToProps(state) {
|
|
// XXX In the future interfaceConfig is expected to not be a global variable
|
|
// but a redux state like config. Hence, the variable filmStripOnly
|
|
// naturally belongs here in preparation for the future.
|
|
const filmstripOnly
|
|
= typeof interfaceConfig === 'object' && interfaceConfig.filmStripOnly;
|
|
let overlay;
|
|
|
|
for (const o of _getOverlays(filmstripOnly)) {
|
|
// react-i18n / react-redux wrap components and thus we cannot access
|
|
// the wrapped component's static methods directly.
|
|
const component = o.WrappedComponent || o;
|
|
|
|
if (component.needsRender(state)) {
|
|
overlay = o;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return {
|
|
/**
|
|
* The React {@link Component} type of overlay to be rendered by the
|
|
* associated {@code OverlayContainer}.
|
|
*/
|
|
overlay
|
|
};
|
|
}
|
|
|
|
export default connect(_mapStateToProps)(OverlayContainer);
|