jiti-meet/react/features/base/dialog/components/AbstractDialogContainer.js

71 lines
1.6 KiB
JavaScript
Raw Normal View History

/* @flow */
2017-03-07 03:34:51 +00:00
import React, { Component } from 'react';
/**
* The type of the React {@code Component} props of {@link DialogContainer}.
2017-03-07 03:34:51 +00:00
*/
type Props = {
2017-03-07 03:34:51 +00:00
/**
* The component to render.
2017-03-07 03:34:51 +00:00
*/
_component: Function,
2017-03-07 03:34:51 +00:00
/**
* The props to pass to the component that will be rendered.
*/
_componentProps: Object,
/**
* True if the UI is in a compact state where we don't show dialogs.
*/
_reducedUI: boolean
};
2017-03-07 03:34:51 +00:00
/**
* Implements a DialogContainer responsible for showing all dialogs.
*/
export default class AbstractDialogContainer extends Component<Props> {
2017-03-07 03:34:51 +00:00
/**
* Returns the dialog to be displayed.
2017-03-07 03:34:51 +00:00
*
* @private
* @returns {ReactElement|null}
2017-03-07 03:34:51 +00:00
*/
_renderDialogContent() {
const {
_component: component,
_reducedUI: reducedUI
} = this.props;
2017-03-07 03:34:51 +00:00
2017-09-18 15:58:03 +00:00
return (
component && !reducedUI
2017-09-18 15:58:03 +00:00
? React.createElement(component, this.props._componentProps)
: null);
2017-03-07 03:34:51 +00:00
}
}
/**
* Maps (parts of) the redux state to the associated
* {@code AbstractDialogContainer}'s props.
2017-03-07 03:34:51 +00:00
*
2017-09-18 15:58:03 +00:00
* @param {Object} state - The redux state.
2017-03-07 03:34:51 +00:00
* @private
* @returns {{
* _component: React.Component,
* _componentProps: Object,
* _reducedUI: boolean
2017-03-07 03:34:51 +00:00
* }}
*/
export function abstractMapStateToProps(state: Object) {
2017-09-18 15:58:03 +00:00
const stateFeaturesBaseDialog = state['features/base/dialog'];
const { reducedUI } = state['features/base/responsive-ui'];
2017-09-18 15:58:03 +00:00
2017-03-07 03:34:51 +00:00
return {
2017-09-18 15:58:03 +00:00
_component: stateFeaturesBaseDialog.component,
_componentProps: stateFeaturesBaseDialog.componentProps,
_reducedUI: reducedUI
2017-03-07 03:34:51 +00:00
};
}