|
|
|
@ -15,7 +15,7 @@ import { connect, useDispatch } from 'react-redux'; |
|
|
|
|
import { appNavigate } from '../../../app/actions.native'; |
|
|
|
|
import { IReduxState, IStore } from '../../../app/types'; |
|
|
|
|
import { CONFERENCE_BLURRED, CONFERENCE_FOCUSED } from '../../../base/conference/actionTypes'; |
|
|
|
|
import { FULLSCREEN_ENABLED, PIP_ENABLED } from '../../../base/flags/constants'; |
|
|
|
|
import { FULLSCREEN_ENABLED } from '../../../base/flags/constants'; |
|
|
|
|
import { getFeatureFlag } from '../../../base/flags/functions'; |
|
|
|
|
import Container from '../../../base/react/components/native/Container'; |
|
|
|
|
import LoadingIndicator from '../../../base/react/components/native/LoadingIndicator'; |
|
|
|
@ -38,7 +38,7 @@ import LargeVideo from '../../../large-video/components/LargeVideo.native'; |
|
|
|
|
import { getIsLobbyVisible } from '../../../lobby/functions'; |
|
|
|
|
import { navigate } from '../../../mobile/navigation/components/conference/ConferenceNavigationContainerRef'; |
|
|
|
|
import { screen } from '../../../mobile/navigation/routes'; |
|
|
|
|
import { setPictureInPictureEnabled } from '../../../mobile/picture-in-picture/functions'; |
|
|
|
|
import { isPipEnabled, setPictureInPictureEnabled } from '../../../mobile/picture-in-picture/functions'; |
|
|
|
|
import Captions from '../../../subtitles/components/native/Captions'; |
|
|
|
|
import { setToolboxVisible } from '../../../toolbox/actions.native'; |
|
|
|
|
import Toolbox from '../../../toolbox/components/native/Toolbox'; |
|
|
|
@ -579,7 +579,7 @@ function _mapStateToProps(state: IReduxState, _ownProps: any) { |
|
|
|
|
_fullscreenEnabled: getFeatureFlag(state, FULLSCREEN_ENABLED, true), |
|
|
|
|
_isParticipantsPaneOpen: isOpen, |
|
|
|
|
_largeVideoParticipantId: state['features/large-video'].participantId, |
|
|
|
|
_pictureInPictureEnabled: getFeatureFlag(state, PIP_ENABLED), |
|
|
|
|
_pictureInPictureEnabled: isPipEnabled(state), |
|
|
|
|
_reducedUI: reducedUI, |
|
|
|
|
_showLobby: getIsLobbyVisible(state), |
|
|
|
|
_startCarMode: startCarMode, |
|
|
|
|