jiti-meet/react/features/shared-video/components/web/SharedVideo.js

164 lines
3.9 KiB
JavaScript
Raw Normal View History

// @flow
import React, { Component } from 'react';
import Filmstrip from '../../../../../modules/UI/videolayout/Filmstrip';
import { getLocalParticipant } from '../../../base/participants';
import { connect } from '../../../base/redux';
import { getVerticalViewMaxWidth } from '../../../filmstrip/functions.web';
import { getToolboxHeight } from '../../../toolbox/functions.web';
import VideoManager from './VideoManager';
import YoutubeVideoManager from './YoutubeVideoManager';
declare var interfaceConfig: Object;
type Props = {
/**
2021-11-04 21:10:43 +00:00
* The available client width.
*/
clientHeight: number,
/**
2021-11-04 21:10:43 +00:00
* The available client width.
*/
clientWidth: number,
/**
* Whether the (vertical) filmstrip is visible or not.
*/
filmstripVisible: boolean,
/**
* The width of the vertical filmstrip.
*/
filmstripWidth: number,
/**
* Is the video shared by the local user.
*/
isOwner: boolean,
/**
* Whether or not the user is actively resizing the filmstrip.
*/
isResizing: boolean,
/**
2021-11-04 21:10:43 +00:00
* The shared video url.
*/
videoUrl: string,
}
2021-11-04 21:10:43 +00:00
/** .
* Implements a React {@link Component} which represents the large video (a.k.a.
2021-11-04 21:10:43 +00:00
* The conference participant who is on the local stage) on Web/React.
*
2021-11-04 21:10:43 +00:00
* @augments Component
*/
class SharedVideo extends Component<Props> {
/**
* Computes the width and the height of the component.
*
* @returns {{
* height: number,
* width: number
* }}
*/
2021-05-13 11:36:19 +00:00
getDimensions() {
const { clientHeight, clientWidth, filmstripVisible, filmstripWidth } = this.props;
let width;
let height;
if (interfaceConfig.VERTICAL_FILMSTRIP) {
if (filmstripVisible) {
width = `${clientWidth - filmstripWidth}px`;
} else {
width = `${clientWidth}px`;
}
height = `${clientHeight - getToolboxHeight()}px`;
} else {
if (filmstripVisible) {
height = `${clientHeight - Filmstrip.getFilmstripHeight()}px`;
} else {
height = `${clientHeight}px`;
}
width = `${clientWidth}px`;
}
return {
width,
height
};
}
/**
* Retrieves the manager to be used for playing the shared video.
*
* @returns {Component}
*/
getManager() {
const { videoUrl } = this.props;
if (!videoUrl) {
return null;
}
if (videoUrl.match(/http/)) {
return <VideoManager videoId = { videoUrl } />;
}
return <YoutubeVideoManager videoId = { videoUrl } />;
}
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {React$Element}
*/
render() {
const { isOwner, isResizing } = this.props;
const className = !isResizing && isOwner ? '' : 'disable-pointer';
return (
<div
className = { className }
id = 'sharedVideo'
2021-05-13 11:36:19 +00:00
style = { this.getDimensions() }>
{this.getManager()}
</div>
);
}
}
/**
* Maps (parts of) the Redux state to the associated LargeVideo props.
*
* @param {Object} state - The Redux state.
* @private
* @returns {Props}
*/
function _mapStateToProps(state) {
const { ownerId, videoUrl } = state['features/shared-video'];
const { clientHeight, clientWidth } = state['features/base/responsive-ui'];
const { visible, isResizing } = state['features/filmstrip'];
const localParticipant = getLocalParticipant(state);
return {
clientHeight,
clientWidth,
filmstripVisible: visible,
filmstripWidth: getVerticalViewMaxWidth(state),
feat: Participants optimisations (#9515) * fix(participants): Change from array to Map * fix(unload): optimise * feat: Introduces new states for e2ee feature. Stores everyoneSupportsE2EE and everyoneEnabledE2EE to minimize looping through participants list. squash: Uses participants map and go over the elements only once. * feat: Optimizes isEveryoneModerator to do less frequent checks in all participants. * fix: Drops deep equal from participants pane and uses the map. * fix(SharedVideo): isVideoPlaying * fix(participants): Optimise isEveryoneModerator * fix(e2e): Optimise everyoneEnabledE2EE * fix: JS errors. * ref(participants): remove getParticipants * fix(participants): Prepare for PR. * fix: Changes participants pane to be component. The functional component was always rendered: `prev props: {} !== {} :next props`. * feat: Optimization to skip participants list on pane closed. * fix: The participants list shows and the local participant. * fix: Fix wrong action name for av-moderation. * fix: Minimizes the number of render calls of av moderation notification. * fix: Fix iterating over remote participants. * fix: Fixes lint error. * fix: Reflects participant updates for av-moderation. * fix(ParticipantPane): to work with IDs. * fix(av-moderation): on PARTCIPANT_UPDATE * fix(ParticipantPane): close delay. * fix: address code review comments * fix(API): mute-everyone * fix: bugs * fix(Thumbnail): on mobile. * fix(ParticipantPane): Close context menu on click. * fix: Handles few error when local participant is undefined. * feat: Hides AV moderation if not supported. * fix: Show mute all video. * fix: Fixes updating participant for av moderation. Co-authored-by: damencho <damencho@jitsi.org>
2021-07-09 12:36:19 +00:00
isOwner: ownerId === localParticipant?.id,
isResizing,
videoUrl
};
}
export default connect(_mapStateToProps)(SharedVideo);