2017-11-17 19:06:47 +00:00
|
|
|
// @flow
|
|
|
|
|
2022-07-04 11:44:35 +00:00
|
|
|
import { useIsFocused } from '@react-navigation/native';
|
|
|
|
import React, { useEffect } from 'react';
|
2022-11-11 15:15:54 +00:00
|
|
|
import { BackHandler, NativeModules, SafeAreaView, View } from 'react-native';
|
2022-01-13 12:15:53 +00:00
|
|
|
import { withSafeAreaInsets } from 'react-native-safe-area-context';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2020-06-04 14:09:13 +00:00
|
|
|
import { appNavigate } from '../../../app/actions';
|
2022-09-27 07:10:28 +00:00
|
|
|
import { FULLSCREEN_ENABLED, PIP_ENABLED, getFeatureFlag } from '../../../base/flags';
|
2022-04-06 12:06:48 +00:00
|
|
|
import { getParticipantCount } from '../../../base/participants';
|
2019-01-30 13:05:35 +00:00
|
|
|
import { Container, LoadingIndicator, TintedView } from '../../../base/react';
|
2019-05-23 11:29:40 +00:00
|
|
|
import { connect } from '../../../base/redux';
|
2020-06-02 09:03:17 +00:00
|
|
|
import { ASPECT_RATIO_NARROW } from '../../../base/responsive-ui/constants';
|
2019-01-30 13:05:35 +00:00
|
|
|
import { TestConnectionInfo } from '../../../base/testing';
|
2019-05-28 13:32:29 +00:00
|
|
|
import { ConferenceNotification, isCalendarEnabled } from '../../../calendar-sync';
|
2019-04-11 10:04:50 +00:00
|
|
|
import { DisplayNameLabel } from '../../../display-name';
|
2022-10-18 16:21:48 +00:00
|
|
|
import { BrandingImageBackground } from '../../../dynamic-branding/components/native';
|
2018-09-13 15:20:22 +00:00
|
|
|
import {
|
2019-03-20 20:09:23 +00:00
|
|
|
FILMSTRIP_SIZE,
|
2018-09-13 15:20:22 +00:00
|
|
|
Filmstrip,
|
2022-09-27 07:10:28 +00:00
|
|
|
TileView,
|
|
|
|
isFilmstripVisible
|
2019-01-30 13:05:35 +00:00
|
|
|
} from '../../../filmstrip';
|
2021-10-20 19:29:21 +00:00
|
|
|
import { CalleeInfoContainer } from '../../../invite';
|
2019-01-30 13:05:35 +00:00
|
|
|
import { LargeVideo } from '../../../large-video';
|
2022-06-21 14:16:38 +00:00
|
|
|
import { startKnocking } from '../../../lobby/actions.any';
|
2021-08-20 08:53:11 +00:00
|
|
|
import { getIsLobbyVisible } from '../../../lobby/functions';
|
2022-01-25 12:55:57 +00:00
|
|
|
import { navigate }
|
|
|
|
from '../../../mobile/navigation/components/conference/ConferenceNavigationContainerRef';
|
2022-06-21 14:16:38 +00:00
|
|
|
import { shouldEnableAutoKnock } from '../../../mobile/navigation/functions';
|
2022-01-25 12:55:57 +00:00
|
|
|
import { screen } from '../../../mobile/navigation/routes';
|
2022-06-23 11:42:41 +00:00
|
|
|
import { setPictureInPictureEnabled } from '../../../mobile/picture-in-picture';
|
2022-09-13 12:47:31 +00:00
|
|
|
import { Captions } from '../../../subtitles/components';
|
2020-07-24 12:14:33 +00:00
|
|
|
import { setToolboxVisible } from '../../../toolbox/actions';
|
|
|
|
import { Toolbox } from '../../../toolbox/components/native';
|
|
|
|
import { isToolboxVisible } from '../../../toolbox/functions';
|
2019-03-20 20:09:23 +00:00
|
|
|
import {
|
|
|
|
AbstractConference,
|
|
|
|
abstractMapStateToProps
|
|
|
|
} from '../AbstractConference';
|
2020-05-20 10:57:03 +00:00
|
|
|
import type { AbstractProps } from '../AbstractConference';
|
2022-05-06 10:14:10 +00:00
|
|
|
import { isConnecting } from '../functions';
|
2020-05-20 10:57:03 +00:00
|
|
|
|
2022-01-13 12:15:53 +00:00
|
|
|
import AlwaysOnLabels from './AlwaysOnLabels';
|
|
|
|
import ExpandedLabelPopup from './ExpandedLabelPopup';
|
2020-03-20 17:30:46 +00:00
|
|
|
import LonelyMeetingExperience from './LonelyMeetingExperience';
|
2022-01-13 12:15:53 +00:00
|
|
|
import TitleBar from './TitleBar';
|
|
|
|
import { EXPANDED_LABEL_TIMEOUT } from './constants';
|
2021-03-18 10:54:49 +00:00
|
|
|
import styles from './styles';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2019-02-07 22:52:31 +00:00
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2017-11-17 19:06:47 +00:00
|
|
|
* The type of the React {@code Component} props of {@link Conference}.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
2019-02-07 22:52:31 +00:00
|
|
|
type Props = AbstractProps & {
|
2017-11-13 15:54:04 +00:00
|
|
|
|
2020-06-02 09:03:17 +00:00
|
|
|
/**
|
|
|
|
* Application's aspect ratio.
|
|
|
|
*/
|
|
|
|
_aspectRatio: Symbol,
|
|
|
|
|
2022-10-06 11:29:39 +00:00
|
|
|
/**
|
|
|
|
* Whether the audio only is enabled or not.
|
|
|
|
*/
|
|
|
|
_audioOnlyEnabled: boolean,
|
|
|
|
|
2022-05-23 15:02:14 +00:00
|
|
|
/**
|
|
|
|
* Branding styles for conference.
|
|
|
|
*/
|
|
|
|
_brandingStyles: Object,
|
|
|
|
|
2019-05-28 13:32:29 +00:00
|
|
|
/**
|
2022-10-06 11:29:39 +00:00
|
|
|
* Whether the calendar feature is enabled or not.
|
2019-05-28 13:32:29 +00:00
|
|
|
*/
|
|
|
|
_calendarEnabled: boolean,
|
|
|
|
|
2016-12-01 01:52:39 +00:00
|
|
|
/**
|
2017-11-13 15:54:04 +00:00
|
|
|
* The indicator which determines that we are still connecting to the
|
|
|
|
* conference which includes establishing the XMPP connection and then
|
2018-08-31 20:06:48 +00:00
|
|
|
* joining the room. If truthy, then an activity/loading indicator will be
|
|
|
|
* rendered.
|
2016-12-01 01:52:39 +00:00
|
|
|
*/
|
2017-11-13 15:54:04 +00:00
|
|
|
_connecting: boolean,
|
2017-09-14 10:18:47 +00:00
|
|
|
|
2018-08-29 19:04:05 +00:00
|
|
|
/**
|
|
|
|
* Set to {@code true} when the filmstrip is currently visible.
|
|
|
|
*/
|
|
|
|
_filmstripVisible: boolean,
|
|
|
|
|
2021-03-08 21:11:39 +00:00
|
|
|
/**
|
|
|
|
* The indicator which determines whether fullscreen (immersive) mode is enabled.
|
|
|
|
*/
|
|
|
|
_fullscreenEnabled: boolean,
|
|
|
|
|
2022-04-06 12:06:48 +00:00
|
|
|
/**
|
|
|
|
* The indicator which determines if the conference type is one to one.
|
|
|
|
*/
|
|
|
|
_isOneToOneConference: boolean,
|
|
|
|
|
2021-06-11 13:15:44 +00:00
|
|
|
/**
|
|
|
|
* The indicator which determines if the participants pane is open.
|
|
|
|
*/
|
2021-06-29 14:05:11 +00:00
|
|
|
_isParticipantsPaneOpen: boolean,
|
2021-06-11 13:12:00 +00:00
|
|
|
|
2019-04-11 10:04:50 +00:00
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* The ID of the participant currently on stage (if any).
|
2019-04-11 10:04:50 +00:00
|
|
|
*/
|
|
|
|
_largeVideoParticipantId: string,
|
|
|
|
|
2022-06-21 14:16:38 +00:00
|
|
|
/**
|
|
|
|
* Local participant's display name.
|
|
|
|
*/
|
|
|
|
_localParticipantDisplayName: string,
|
|
|
|
|
2018-05-17 13:23:11 +00:00
|
|
|
/**
|
2019-05-23 11:29:40 +00:00
|
|
|
* Whether Picture-in-Picture is enabled.
|
2018-05-17 13:23:11 +00:00
|
|
|
*/
|
2019-05-23 11:29:40 +00:00
|
|
|
_pictureInPictureEnabled: boolean,
|
2018-05-17 13:23:11 +00:00
|
|
|
|
2018-02-02 13:41:30 +00:00
|
|
|
/**
|
2018-02-13 19:14:06 +00:00
|
|
|
* The indicator which determines whether the UI is reduced (to accommodate
|
|
|
|
* smaller display areas).
|
2018-02-02 13:41:30 +00:00
|
|
|
*/
|
|
|
|
_reducedUI: boolean,
|
|
|
|
|
2017-11-13 15:54:04 +00:00
|
|
|
/**
|
|
|
|
* The indicator which determines whether the Toolbox is visible.
|
|
|
|
*/
|
2018-04-16 15:06:11 +00:00
|
|
|
_toolboxVisible: boolean,
|
|
|
|
|
2022-06-21 14:16:38 +00:00
|
|
|
/**
|
|
|
|
* Indicates if we should auto-knock.
|
|
|
|
*/
|
|
|
|
_shouldEnableAutoKnock: boolean,
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
/**
|
|
|
|
* Indicates whether the lobby screen should be visible.
|
|
|
|
*/
|
|
|
|
_showLobby: boolean,
|
|
|
|
|
2022-10-06 11:29:39 +00:00
|
|
|
/**
|
|
|
|
* Indicates whether the car mode is enabled.
|
|
|
|
*/
|
|
|
|
_startCarMode: boolean,
|
|
|
|
|
2019-05-23 11:29:40 +00:00
|
|
|
/**
|
|
|
|
* The redux {@code dispatch} function.
|
|
|
|
*/
|
2022-01-13 12:15:53 +00:00
|
|
|
dispatch: Function,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Object containing the safe area insets.
|
|
|
|
*/
|
2022-10-06 11:29:39 +00:00
|
|
|
insets: Object,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default prop for navigating between screen components(React Navigation).
|
|
|
|
*/
|
|
|
|
navigation: Object
|
2017-11-13 15:54:04 +00:00
|
|
|
};
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2022-01-13 12:15:53 +00:00
|
|
|
type State = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The label that is currently expanded.
|
|
|
|
*/
|
|
|
|
visibleExpandedLabel: ?string
|
|
|
|
}
|
|
|
|
|
2017-11-13 15:54:04 +00:00
|
|
|
/**
|
|
|
|
* The conference page of the mobile (i.e. React Native) application.
|
|
|
|
*/
|
2022-01-13 12:15:53 +00:00
|
|
|
class Conference extends AbstractConference<Props, State> {
|
|
|
|
/**
|
|
|
|
* Timeout ref.
|
|
|
|
*/
|
|
|
|
_expandedLabelTimeout: Object;
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new Conference instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2022-01-13 12:15:53 +00:00
|
|
|
this.state = {
|
|
|
|
visibleExpandedLabel: undefined
|
|
|
|
};
|
|
|
|
|
|
|
|
this._expandedLabelTimeout = React.createRef();
|
|
|
|
|
2017-09-25 17:26:15 +00:00
|
|
|
// Bind event handlers so they are only bound once per instance.
|
2016-10-05 14:36:59 +00:00
|
|
|
this._onClick = this._onClick.bind(this);
|
2019-05-23 11:29:40 +00:00
|
|
|
this._onHardwareBackPress = this._onHardwareBackPress.bind(this);
|
|
|
|
this._setToolboxVisible = this._setToolboxVisible.bind(this);
|
2022-01-13 12:15:53 +00:00
|
|
|
this._createOnPress = this._createOnPress.bind(this);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 21:06:47 +00:00
|
|
|
/**
|
2017-09-25 17:26:15 +00:00
|
|
|
* Implements {@link Component#componentDidMount()}. Invoked immediately
|
|
|
|
* after this component is mounted.
|
2017-01-03 21:06:47 +00:00
|
|
|
*
|
2017-01-03 21:09:52 +00:00
|
|
|
* @inheritdoc
|
2017-11-03 20:14:38 +00:00
|
|
|
* @returns {void}
|
2017-01-03 21:06:47 +00:00
|
|
|
*/
|
|
|
|
componentDidMount() {
|
2022-10-06 11:29:39 +00:00
|
|
|
const {
|
|
|
|
_audioOnlyEnabled,
|
|
|
|
_startCarMode,
|
|
|
|
navigation
|
|
|
|
} = this.props;
|
|
|
|
|
2022-03-29 11:37:32 +00:00
|
|
|
BackHandler.addEventListener('hardwareBackPress', this._onHardwareBackPress);
|
2022-10-06 11:29:39 +00:00
|
|
|
|
|
|
|
if (_audioOnlyEnabled && _startCarMode) {
|
|
|
|
navigation.navigate(screen.conference.carmode);
|
|
|
|
}
|
2018-05-17 13:23:11 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 19:29:21 +00:00
|
|
|
/**
|
|
|
|
* Implements {@code Component#componentDidUpdate}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
componentDidUpdate(prevProps) {
|
2022-06-21 14:16:38 +00:00
|
|
|
const {
|
|
|
|
_shouldEnableAutoKnock,
|
|
|
|
_showLobby,
|
|
|
|
dispatch
|
|
|
|
} = this.props;
|
2021-10-20 19:29:21 +00:00
|
|
|
|
|
|
|
if (!prevProps._showLobby && _showLobby) {
|
2022-04-26 10:15:31 +00:00
|
|
|
navigate(screen.lobby.root);
|
2022-06-21 14:16:38 +00:00
|
|
|
|
|
|
|
if (_shouldEnableAutoKnock) {
|
|
|
|
dispatch(startKnocking());
|
|
|
|
}
|
2021-10-20 19:29:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (prevProps._showLobby && !_showLobby) {
|
|
|
|
navigate(screen.conference.main);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2017-09-25 17:26:15 +00:00
|
|
|
* Implements {@link Component#componentWillUnmount()}. Invoked immediately
|
|
|
|
* before this component is unmounted and destroyed. Disconnects the
|
|
|
|
* conference described by the redux store/state.
|
2016-10-05 14:36:59 +00:00
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentWillUnmount() {
|
2017-09-25 17:26:15 +00:00
|
|
|
// Tear handling any hardware button presses for back navigation down.
|
2022-03-29 11:37:32 +00:00
|
|
|
BackHandler.removeEventListener('hardwareBackPress', this._onHardwareBackPress);
|
2022-01-13 12:15:53 +00:00
|
|
|
|
|
|
|
clearTimeout(this._expandedLabelTimeout.current);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2022-05-23 15:02:14 +00:00
|
|
|
const {
|
2022-11-11 15:15:54 +00:00
|
|
|
_brandingStyles
|
2022-05-23 15:02:14 +00:00
|
|
|
} = this.props;
|
2021-03-08 21:11:39 +00:00
|
|
|
|
2019-10-11 13:33:07 +00:00
|
|
|
return (
|
2022-05-23 15:02:14 +00:00
|
|
|
<Container
|
|
|
|
style = { [
|
|
|
|
styles.conference,
|
|
|
|
_brandingStyles
|
|
|
|
] }>
|
2022-06-18 19:59:10 +00:00
|
|
|
<BrandingImageBackground />
|
2019-10-11 13:33:07 +00:00
|
|
|
{ this._renderContent() }
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClick: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the value of the toolboxVisible state, thus allowing us to switch
|
|
|
|
* between Toolbox and Filmstrip and change their visibility.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onClick() {
|
|
|
|
this._setToolboxVisible(!this.props._toolboxVisible);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onHardwareBackPress: () => boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles a hardware button press for back navigation. Enters Picture-in-Picture mode
|
|
|
|
* (if supported) or leaves the associated {@code Conference} otherwise.
|
|
|
|
*
|
|
|
|
* @returns {boolean} Exiting the app is undesired, so {@code true} is always returned.
|
|
|
|
*/
|
|
|
|
_onHardwareBackPress() {
|
|
|
|
let p;
|
|
|
|
|
|
|
|
if (this.props._pictureInPictureEnabled) {
|
|
|
|
const { PictureInPicture } = NativeModules;
|
|
|
|
|
|
|
|
p = PictureInPicture.enterPictureInPicture();
|
|
|
|
} else {
|
|
|
|
p = Promise.reject(new Error('PiP not enabled'));
|
|
|
|
}
|
|
|
|
|
|
|
|
p.catch(() => {
|
|
|
|
this.props.dispatch(appNavigate(undefined));
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the conference notification badge if the feature is enabled.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {React$Node}
|
|
|
|
*/
|
|
|
|
_renderConferenceNotification() {
|
|
|
|
const { _calendarEnabled, _reducedUI } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
_calendarEnabled && !_reducedUI
|
|
|
|
? <ConferenceNotification />
|
|
|
|
: undefined);
|
|
|
|
}
|
|
|
|
|
2022-01-13 12:15:53 +00:00
|
|
|
_createOnPress: (string) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a function to be invoked when the onPress of the touchables are
|
|
|
|
* triggered.
|
|
|
|
*
|
|
|
|
* @param {string} label - The identifier of the label that's onLayout is
|
|
|
|
* triggered.
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
_createOnPress(label) {
|
|
|
|
return () => {
|
|
|
|
const { visibleExpandedLabel } = this.state;
|
|
|
|
|
|
|
|
const newVisibleExpandedLabel
|
|
|
|
= visibleExpandedLabel === label ? undefined : label;
|
|
|
|
|
|
|
|
clearTimeout(this._expandedLabelTimeout.current);
|
|
|
|
this.setState({
|
|
|
|
visibleExpandedLabel: newVisibleExpandedLabel
|
|
|
|
});
|
|
|
|
|
|
|
|
if (newVisibleExpandedLabel) {
|
|
|
|
this._expandedLabelTimeout.current = setTimeout(() => {
|
|
|
|
this.setState({
|
|
|
|
visibleExpandedLabel: undefined
|
|
|
|
});
|
|
|
|
}, EXPANDED_LABEL_TIMEOUT);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-10-11 13:33:07 +00:00
|
|
|
/**
|
|
|
|
* Renders the content for the Conference container.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {React$Element}
|
|
|
|
*/
|
|
|
|
_renderContent() {
|
2018-09-13 15:20:22 +00:00
|
|
|
const {
|
|
|
|
_connecting,
|
2022-04-06 12:06:48 +00:00
|
|
|
_isOneToOneConference,
|
2019-04-11 10:04:50 +00:00
|
|
|
_largeVideoParticipantId,
|
2018-09-13 15:20:22 +00:00
|
|
|
_reducedUI,
|
2021-11-25 16:41:03 +00:00
|
|
|
_shouldDisplayTileView,
|
|
|
|
_toolboxVisible
|
2018-09-13 15:20:22 +00:00
|
|
|
} = this.props;
|
|
|
|
|
2019-10-11 13:33:07 +00:00
|
|
|
if (_reducedUI) {
|
|
|
|
return this._renderContentForReducedUi();
|
|
|
|
}
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2019-10-11 13:33:07 +00:00
|
|
|
return (
|
|
|
|
<>
|
2017-05-24 17:01:46 +00:00
|
|
|
{/*
|
|
|
|
* The LargeVideo is the lowermost stacking layer.
|
2018-09-13 15:20:22 +00:00
|
|
|
*/
|
|
|
|
_shouldDisplayTileView
|
|
|
|
? <TileView onClick = { this._onClick } />
|
|
|
|
: <LargeVideo onClick = { this._onClick } />
|
|
|
|
}
|
2016-12-12 01:02:50 +00:00
|
|
|
|
2017-11-23 16:26:47 +00:00
|
|
|
{/*
|
|
|
|
* If there is a ringing call, show the callee's info.
|
2018-02-02 13:41:30 +00:00
|
|
|
*/
|
2019-10-11 13:33:07 +00:00
|
|
|
<CalleeInfoContainer />
|
2018-02-02 13:41:30 +00:00
|
|
|
}
|
2017-11-23 16:26:47 +00:00
|
|
|
|
2017-09-14 10:18:47 +00:00
|
|
|
{/*
|
|
|
|
* The activity/loading indicator goes above everything, except
|
|
|
|
* the toolbox/toolbars and the dialogs.
|
|
|
|
*/
|
2018-09-13 15:20:22 +00:00
|
|
|
_connecting
|
2017-12-14 15:04:35 +00:00
|
|
|
&& <TintedView>
|
2017-10-02 23:08:07 +00:00
|
|
|
<LoadingIndicator />
|
2017-12-14 15:04:35 +00:00
|
|
|
</TintedView>
|
2017-09-14 10:18:47 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 11:32:33 +00:00
|
|
|
<View
|
2018-04-05 19:46:31 +00:00
|
|
|
pointerEvents = 'box-none'
|
|
|
|
style = { styles.toolboxAndFilmstripContainer }>
|
2018-08-23 19:57:12 +00:00
|
|
|
|
|
|
|
<Captions onPress = { this._onClick } />
|
|
|
|
|
2022-04-06 12:06:48 +00:00
|
|
|
{
|
|
|
|
_shouldDisplayTileView || (
|
|
|
|
!_isOneToOneConference
|
|
|
|
&& <Container style = { styles.displayNameContainer }>
|
|
|
|
<DisplayNameLabel
|
|
|
|
participantId = { _largeVideoParticipantId } />
|
|
|
|
</Container>
|
|
|
|
)
|
|
|
|
}
|
2019-01-28 14:55:37 +00:00
|
|
|
|
2020-03-20 17:30:46 +00:00
|
|
|
<LonelyMeetingExperience />
|
|
|
|
|
2023-02-21 09:26:04 +00:00
|
|
|
{
|
|
|
|
_shouldDisplayTileView
|
|
|
|
|| <>
|
|
|
|
<Filmstrip />
|
2023-02-24 14:48:53 +00:00
|
|
|
{ this._renderNotificationsContainer() }
|
2023-02-21 09:26:04 +00:00
|
|
|
<Toolbox />
|
|
|
|
</>
|
|
|
|
}
|
2021-03-18 11:32:33 +00:00
|
|
|
</View>
|
2018-08-31 20:06:48 +00:00
|
|
|
|
2019-03-20 20:09:23 +00:00
|
|
|
<SafeAreaView
|
|
|
|
pointerEvents = 'box-none'
|
2021-11-25 16:41:03 +00:00
|
|
|
style = {
|
|
|
|
_toolboxVisible
|
2022-01-13 12:15:53 +00:00
|
|
|
? styles.titleBarSafeViewColor
|
|
|
|
: styles.titleBarSafeViewTransparent }>
|
|
|
|
<TitleBar _createOnPress = { this._createOnPress } />
|
|
|
|
</SafeAreaView>
|
|
|
|
<SafeAreaView
|
|
|
|
pointerEvents = 'box-none'
|
|
|
|
style = {
|
|
|
|
_toolboxVisible
|
|
|
|
? [ styles.titleBarSafeViewTransparent, { top: this.props.insets.top + 50 } ]
|
|
|
|
: styles.titleBarSafeViewTransparent
|
|
|
|
}>
|
|
|
|
<View
|
|
|
|
pointerEvents = 'box-none'
|
|
|
|
style = { styles.expandedLabelWrapper }>
|
|
|
|
<ExpandedLabelPopup visibleExpandedLabel = { this.state.visibleExpandedLabel } />
|
|
|
|
</View>
|
|
|
|
<View
|
|
|
|
pointerEvents = 'box-none'
|
|
|
|
style = { styles.alwaysOnTitleBar }>
|
|
|
|
{/* eslint-disable-next-line react/jsx-no-bind */}
|
|
|
|
<AlwaysOnLabels createOnPress = { this._createOnPress } />
|
|
|
|
</View>
|
2019-03-20 20:09:23 +00:00
|
|
|
</SafeAreaView>
|
2019-01-30 15:43:57 +00:00
|
|
|
|
2018-03-07 15:23:04 +00:00
|
|
|
<TestConnectionInfo />
|
2023-02-21 09:26:04 +00:00
|
|
|
|
2019-10-11 13:33:07 +00:00
|
|
|
{ this._renderConferenceNotification() }
|
2020-04-06 15:14:32 +00:00
|
|
|
|
2021-05-07 07:58:57 +00:00
|
|
|
{_shouldDisplayTileView && <Toolbox />}
|
2019-10-11 13:33:07 +00:00
|
|
|
</>
|
2016-10-05 14:36:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-04-24 13:24:10 +00:00
|
|
|
/**
|
2019-10-11 13:33:07 +00:00
|
|
|
* Renders the content for the Conference container when in "reduced UI" mode.
|
2018-04-24 13:24:10 +00:00
|
|
|
*
|
|
|
|
* @private
|
2019-10-11 13:33:07 +00:00
|
|
|
* @returns {React$Element}
|
2018-04-24 13:24:10 +00:00
|
|
|
*/
|
2019-10-11 13:33:07 +00:00
|
|
|
_renderContentForReducedUi() {
|
|
|
|
const { _connecting } = this.props;
|
2019-05-28 13:32:29 +00:00
|
|
|
|
2018-08-31 20:09:49 +00:00
|
|
|
return (
|
2019-10-11 13:33:07 +00:00
|
|
|
<>
|
|
|
|
<LargeVideo onClick = { this._onClick } />
|
|
|
|
|
|
|
|
{
|
|
|
|
_connecting
|
|
|
|
&& <TintedView>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</TintedView>
|
|
|
|
}
|
|
|
|
</>
|
|
|
|
);
|
2018-04-24 13:24:10 +00:00
|
|
|
}
|
2019-03-20 20:09:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a container for notifications to be displayed by the
|
|
|
|
* base/notifications feature.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {React$Element}
|
|
|
|
*/
|
2019-10-11 13:33:07 +00:00
|
|
|
_renderNotificationsContainer() {
|
2019-03-20 20:09:23 +00:00
|
|
|
const notificationsStyle = {};
|
|
|
|
|
|
|
|
// In the landscape mode (wide) there's problem with notifications being
|
|
|
|
// shadowed by the filmstrip rendered on the right. This makes the "x"
|
|
|
|
// button not clickable. In order to avoid that a margin of the
|
|
|
|
// filmstrip's size is added to the right.
|
|
|
|
//
|
|
|
|
// Pawel: after many attempts I failed to make notifications adjust to
|
|
|
|
// their contents width because of column and rows being used in the
|
|
|
|
// flex layout. The only option that seemed to limit the notification's
|
|
|
|
// size was explicit 'width' value which is not better than the margin
|
|
|
|
// added here.
|
2020-06-02 09:03:17 +00:00
|
|
|
const { _aspectRatio, _filmstripVisible } = this.props;
|
|
|
|
|
|
|
|
if (_filmstripVisible && _aspectRatio !== ASPECT_RATIO_NARROW) {
|
2019-03-20 20:09:23 +00:00
|
|
|
notificationsStyle.marginRight = FILMSTRIP_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.renderNotificationsContainer(
|
|
|
|
{
|
2023-02-24 14:48:53 +00:00
|
|
|
style: notificationsStyle,
|
|
|
|
toolboxVisible: this.props._toolboxVisible
|
2019-03-20 20:09:23 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2016-12-12 01:02:50 +00:00
|
|
|
|
2019-05-23 11:29:40 +00:00
|
|
|
_setToolboxVisible: (boolean) => void;
|
2017-09-25 17:26:15 +00:00
|
|
|
|
2019-05-23 11:29:40 +00:00
|
|
|
/**
|
|
|
|
* Dispatches an action changing the visibility of the {@link Toolbox}.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @param {boolean} visible - Pass {@code true} to show the
|
|
|
|
* {@code Toolbox} or {@code false} to hide it.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_setToolboxVisible(visible) {
|
|
|
|
this.props.dispatch(setToolboxVisible(visible));
|
|
|
|
}
|
2017-02-16 23:02:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-12 17:42:38 +00:00
|
|
|
* Maps (parts of) the redux state to the associated {@code Conference}'s props.
|
2017-02-16 23:02:40 +00:00
|
|
|
*
|
2018-02-12 17:42:38 +00:00
|
|
|
* @param {Object} state - The redux state.
|
2017-02-16 23:02:40 +00:00
|
|
|
* @private
|
2019-02-07 22:52:31 +00:00
|
|
|
* @returns {Props}
|
2017-02-16 23:02:40 +00:00
|
|
|
*/
|
|
|
|
function _mapStateToProps(state) {
|
2021-06-11 13:15:44 +00:00
|
|
|
const { isOpen } = state['features/participants-pane'];
|
2020-06-02 09:03:17 +00:00
|
|
|
const { aspectRatio, reducedUI } = state['features/base/responsive-ui'];
|
2022-06-18 19:59:10 +00:00
|
|
|
const { backgroundColor } = state['features/dynamic-branding'];
|
2022-10-06 11:29:39 +00:00
|
|
|
const { startCarMode } = state['features/base/settings'];
|
|
|
|
const { enabled: audioOnlyEnabled } = state['features/base/audio-only'];
|
2022-04-06 12:06:48 +00:00
|
|
|
const participantCount = getParticipantCount(state);
|
2022-05-23 15:02:14 +00:00
|
|
|
const brandingStyles = backgroundColor ? {
|
|
|
|
backgroundColor
|
|
|
|
} : undefined;
|
2017-09-14 10:18:47 +00:00
|
|
|
|
2017-02-16 23:02:40 +00:00
|
|
|
return {
|
2019-02-07 22:52:31 +00:00
|
|
|
...abstractMapStateToProps(state),
|
2020-06-02 09:03:17 +00:00
|
|
|
_aspectRatio: aspectRatio,
|
2022-10-06 11:29:39 +00:00
|
|
|
_audioOnlyEnabled: Boolean(audioOnlyEnabled),
|
2022-05-23 15:02:14 +00:00
|
|
|
_brandingStyles: brandingStyles,
|
2019-05-28 13:32:29 +00:00
|
|
|
_calendarEnabled: isCalendarEnabled(state),
|
2022-05-06 10:14:10 +00:00
|
|
|
_connecting: isConnecting(state),
|
2018-08-29 19:04:05 +00:00
|
|
|
_filmstripVisible: isFilmstripVisible(state),
|
2021-03-08 21:11:39 +00:00
|
|
|
_fullscreenEnabled: getFeatureFlag(state, FULLSCREEN_ENABLED, true),
|
2022-04-06 12:06:48 +00:00
|
|
|
_isOneToOneConference: Boolean(participantCount === 2),
|
2021-06-29 14:05:11 +00:00
|
|
|
_isParticipantsPaneOpen: isOpen,
|
2019-04-11 10:04:50 +00:00
|
|
|
_largeVideoParticipantId: state['features/large-video'].participantId,
|
2019-05-24 11:06:05 +00:00
|
|
|
_pictureInPictureEnabled: getFeatureFlag(state, PIP_ENABLED),
|
2018-02-02 13:41:30 +00:00
|
|
|
_reducedUI: reducedUI,
|
2022-06-21 14:16:38 +00:00
|
|
|
_shouldEnableAutoKnock: shouldEnableAutoKnock(state),
|
2021-08-20 08:53:11 +00:00
|
|
|
_showLobby: getIsLobbyVisible(state),
|
2022-10-06 11:29:39 +00:00
|
|
|
_startCarMode: startCarMode,
|
2019-08-20 13:12:38 +00:00
|
|
|
_toolboxVisible: isToolboxVisible(state)
|
2017-02-16 23:02:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-04 11:44:35 +00:00
|
|
|
export default withSafeAreaInsets(connect(_mapStateToProps)(props => {
|
|
|
|
const isFocused = useIsFocused();
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (isFocused) {
|
|
|
|
setPictureInPictureEnabled(true);
|
|
|
|
} else {
|
|
|
|
setPictureInPictureEnabled(false);
|
|
|
|
}
|
2022-07-06 15:14:41 +00:00
|
|
|
|
|
|
|
// We also need to disable PiP when we are back on the WelcomePage
|
|
|
|
return () => setPictureInPictureEnabled(false);
|
2022-07-04 11:44:35 +00:00
|
|
|
}, [ isFocused ]);
|
|
|
|
|
|
|
|
return (
|
2022-07-04 12:04:28 +00:00
|
|
|
<Conference { ...props } />
|
2022-07-04 11:44:35 +00:00
|
|
|
);
|
|
|
|
}));
|