123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- import React, { Component } from 'react';
- import { View, ViewStyle } from 'react-native';
- import { connect } from 'react-redux';
-
- import { IReduxState, IStore } from '../../../app/types';
- import { getLocalParticipant } from '../../../base/participants/functions';
- import { ASPECT_RATIO_WIDE } from '../../../base/responsive-ui/constants';
- import { setToolboxVisible } from '../../../toolbox/actions';
-
- import VideoManager from './VideoManager';
- import YoutubeVideoManager from './YoutubeVideoManager';
- import styles from './styles';
-
- interface IProps {
-
- /**
- * The Redux dispatch function.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * Is the video shared by the local user.
- *
- * @private
- */
- isOwner: boolean;
-
- /**
- * True if in landscape mode.
- *
- * @private
- */
- isWideScreen: boolean;
-
- /**
- * The available player width.
- */
- playerHeight: number;
-
- /**
- * The available player width.
- */
- playerWidth: number;
-
- /**
- * The shared video url.
- */
- videoUrl?: string;
- }
-
- /** .
- * Implements a React {@link Component} which represents the large video (a.k.a.
- * The conference participant who is on the local stage) on Web/React.
- *
- * @augments Component
- */
- class SharedVideo extends Component<IProps> {
- /**
- * Initializes a new {@code SharedVideo} instance.
- *
- * @param {Object} props - The properties.
- */
- constructor(props: IProps) {
- super(props);
-
- this.setWideScreenMode(props.isWideScreen);
- }
-
- /**
- * Implements React's {@link Component#componentDidUpdate()}.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentDidUpdate(prevProps: IProps) {
- const { isWideScreen } = this.props;
-
- if (isWideScreen !== prevProps.isWideScreen) {
- this.setWideScreenMode(isWideScreen);
- }
- }
-
- /**
- * Dispatches action to set the visibility of the toolbox, true if not widescreen, false otherwise.
- *
- * @param {isWideScreen} isWideScreen - Whether the screen is wide.
- * @private
- * @returns {void}
- */
- setWideScreenMode(isWideScreen: boolean) {
- this.props.dispatch(setToolboxVisible(!isWideScreen));
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {React$Element}
- */
- render() {
- const {
- isOwner,
- playerHeight,
- playerWidth,
- videoUrl
- } = this.props;
-
- if (!videoUrl) {
- return null;
- }
-
- return (
- <View
- pointerEvents = { isOwner ? 'auto' : 'none' }
- style = { styles.videoContainer as ViewStyle } >
- {videoUrl.match(/http/)
- ? (
- <VideoManager
- height = { playerHeight }
- videoId = { videoUrl }
- width = { playerWidth } />
- ) : (
- <YoutubeVideoManager
- height = { playerHeight }
- videoId = { videoUrl }
- width = { playerWidth } />
- )
- }
- </View>
- );
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated LargeVideo props.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {IProps}
- */
- function _mapStateToProps(state: IReduxState) {
- const { ownerId, videoUrl } = state['features/shared-video'];
- const { aspectRatio, clientHeight, clientWidth } = state['features/base/responsive-ui'];
-
- const isWideScreen = aspectRatio === ASPECT_RATIO_WIDE;
- const localParticipant = getLocalParticipant(state);
-
- let playerHeight, playerWidth;
-
- if (isWideScreen) {
- playerHeight = clientHeight;
- playerWidth = playerHeight * 16 / 9;
- } else {
- playerWidth = clientWidth;
- playerHeight = playerWidth * 9 / 16;
- }
-
- return {
- isOwner: ownerId === localParticipant?.id,
- isWideScreen,
- playerHeight,
- playerWidth,
- videoUrl
- };
- }
-
- export default connect(_mapStateToProps)(SharedVideo);
|