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

76 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-09-18 15:58:03 +00:00
import PropTypes from 'prop-types';
2017-03-07 03:34:51 +00:00
import React, { Component } from 'react';
import { connect } from 'react-redux';
/**
2017-09-18 15:58:03 +00:00
* Implements a DialogContainer responsible for showing all dialogs. We will
* need a separate container so we can handle multiple dialogs by showing them
* simultaneously or queuing them.
2017-03-07 03:34:51 +00:00
*/
export class DialogContainer extends Component {
/**
* DialogContainer component's property types.
*
* @static
*/
static propTypes = {
/**
* The component to render.
*/
2017-09-18 15:58:03 +00:00
_component: PropTypes.func,
2017-03-07 03:34:51 +00:00
/**
* The props to pass to the component that will be rendered.
*/
_componentProps: PropTypes.object,
/**
* True if the UI is in a compact state where we don't show dialogs.
*/
_reducedUI: PropTypes.bool
};
2017-03-07 03:34:51 +00:00
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
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 DialogContainer}'s
2017-09-18 15:58:03 +00:00
* 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
* }}
*/
function _mapStateToProps(state) {
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
};
}
export default connect(_mapStateToProps)(DialogContainer);