feat(native-participants-pane) Updated comments

This commit is contained in:
Calin Chitu 2021-06-11 16:15:44 +03:00 committed by Hristo Terezov
parent a12ad99ecf
commit b332fb474b
1 changed files with 4 additions and 1 deletions

View File

@ -72,6 +72,9 @@ type Props = AbstractProps & {
*/ */
_fullscreenEnabled: boolean, _fullscreenEnabled: boolean,
/**
* The indicator which determines if the participants pane is open.
*/
_isOpen: boolean, _isOpen: boolean,
/** /**
@ -391,7 +394,6 @@ class Conference extends AbstractConference<Props, *> {
* @returns {Props} * @returns {Props}
*/ */
function _mapStateToProps(state) { function _mapStateToProps(state) {
const { isOpen } = state['features/participants-pane'];
const { connecting, connection } = state['features/base/connection']; const { connecting, connection } = state['features/base/connection'];
const { const {
conference, conference,
@ -399,6 +401,7 @@ function _mapStateToProps(state) {
membersOnly, membersOnly,
leaving leaving
} = state['features/base/conference']; } = state['features/base/conference'];
const { isOpen } = state['features/participants-pane'];
const { aspectRatio, reducedUI } = state['features/base/responsive-ui']; const { aspectRatio, reducedUI } = state['features/base/responsive-ui'];
// XXX There is a window of time between the successful establishment of the // XXX There is a window of time between the successful establishment of the