12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- // @flow
-
- import React, { Component } from 'react';
-
- import { connect } from '../../base/redux';
- import { getOverlayToRender } from '../functions';
-
- declare var interfaceConfig: Object;
-
- /**
- * 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;
- }
- }
-
- /**
- * 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) {
- return {
- /**
- * The React {@link Component} type of overlay to be rendered by the
- * associated {@code OverlayContainer}.
- */
- overlay: getOverlayToRender(state)
- };
- }
-
- export default connect(_mapStateToProps)(OverlayContainer);
|