jiti-meet/modules/UI/videolayout/LargeVideo.js

445 lines
13 KiB
JavaScript
Raw Normal View History

2015-12-14 12:26:50 +00:00
/* global $, APP, interfaceConfig */
/* jshint -W101 */
2015-12-25 16:55:45 +00:00
2015-12-14 12:26:50 +00:00
import UIUtil from "../util/UIUtil";
import UIEvents from "../../../service/UI/UIEvents";
2015-12-25 16:55:45 +00:00
import LargeContainer from './LargeContainer';
2015-12-30 10:55:51 +00:00
import BottomToolbar from '../toolbars/BottomToolbar';
2015-12-14 12:26:50 +00:00
2015-12-25 16:55:45 +00:00
const RTCBrowserType = require("../../RTC/RTCBrowserType");
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
const avatarSize = interfaceConfig.ACTIVE_SPEAKER_AVATAR_SIZE;
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
function getStreamId(stream) {
2016-01-06 22:39:13 +00:00
if(!stream)
return;
2015-12-25 16:55:45 +00:00
if (stream.isLocal()) {
return APP.conference.localId;
} else {
2015-12-25 16:55:45 +00:00
return stream.getParticipantId();
2015-06-23 08:00:46 +00:00
}
}
/**
* Returns an array of the video dimensions, so that it keeps it's aspect
* ratio and fits available area with it's larger dimension. This method
* ensures that whole video will be visible and can leave empty areas.
*
* @return an array with 2 elements, the video width and the video height
*/
function getDesktopVideoSize(videoWidth,
videoHeight,
videoSpaceWidth,
videoSpaceHeight) {
2015-12-25 16:55:45 +00:00
let aspectRatio = videoWidth / videoHeight;
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
let availableWidth = Math.max(videoWidth, videoSpaceWidth);
let availableHeight = Math.max(videoHeight, videoSpaceHeight);
2015-06-23 08:00:46 +00:00
2015-12-30 10:55:51 +00:00
videoSpaceHeight -= BottomToolbar.getFilmStripHeight();
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
if (availableWidth / aspectRatio >= videoSpaceHeight) {
2015-06-23 08:00:46 +00:00
availableHeight = videoSpaceHeight;
availableWidth = availableHeight * aspectRatio;
}
2015-12-25 16:55:45 +00:00
if (availableHeight * aspectRatio >= videoSpaceWidth) {
2015-06-23 08:00:46 +00:00
availableWidth = videoSpaceWidth;
availableHeight = availableWidth / aspectRatio;
}
2015-12-25 16:55:45 +00:00
return { availableWidth, availableHeight };
2015-06-23 08:00:46 +00:00
}
/**
2015-10-06 20:02:46 +00:00
* Returns an array of the video dimensions. It respects the
* VIDEO_LAYOUT_FIT config, to fit the video to the screen, by hiding some parts
* of it, or to fit it to the height or width.
2015-06-23 08:00:46 +00:00
*
2015-10-06 20:02:46 +00:00
* @param videoWidth the original video width
* @param videoHeight the original video height
* @param videoSpaceWidth the width of the video space
* @param videoSpaceHeight the height of the video space
2015-06-23 08:00:46 +00:00
* @return an array with 2 elements, the video width and the video height
*/
function getCameraVideoSize(videoWidth,
videoHeight,
videoSpaceWidth,
videoSpaceHeight) {
2015-10-06 15:41:46 +00:00
2015-12-25 16:55:45 +00:00
let aspectRatio = videoWidth / videoHeight;
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
let availableWidth = videoWidth;
let availableHeight = videoHeight;
2015-06-23 08:00:46 +00:00
2015-10-06 15:41:46 +00:00
if (interfaceConfig.VIDEO_LAYOUT_FIT == 'height') {
2015-06-23 08:00:46 +00:00
availableHeight = videoSpaceHeight;
2015-10-06 15:41:46 +00:00
availableWidth = availableHeight*aspectRatio;
2015-06-23 08:00:46 +00:00
}
2015-10-06 15:41:46 +00:00
else if (interfaceConfig.VIDEO_LAYOUT_FIT == 'width') {
2015-06-23 08:00:46 +00:00
availableWidth = videoSpaceWidth;
2015-10-06 15:41:46 +00:00
availableHeight = availableWidth/aspectRatio;
2015-06-23 08:00:46 +00:00
}
2015-10-06 15:41:46 +00:00
else if (interfaceConfig.VIDEO_LAYOUT_FIT == 'both') {
availableWidth = Math.max(videoWidth, videoSpaceWidth);
availableHeight = Math.max(videoHeight, videoSpaceHeight);
if (availableWidth / aspectRatio < videoSpaceHeight) {
availableHeight = videoSpaceHeight;
availableWidth = availableHeight * aspectRatio;
}
if (availableHeight * aspectRatio < videoSpaceWidth) {
availableWidth = videoSpaceWidth;
availableHeight = availableWidth / aspectRatio;
}
}
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
return { availableWidth, availableHeight };
2015-06-23 08:00:46 +00:00
}
/**
2015-12-25 16:55:45 +00:00
* Returns an array of the video horizontal and vertical indents,
* so that if fits its parent.
*
* @return an array with 2 elements, the horizontal indent and the vertical
* indent
*/
2015-12-25 16:55:45 +00:00
function getCameraVideoPosition(videoWidth,
videoHeight,
videoSpaceWidth,
videoSpaceHeight) {
// Parent height isn't completely calculated when we position the video in
// full screen mode and this is why we use the screen height in this case.
// Need to think it further at some point and implement it properly.
if (UIUtil.isFullScreen()) {
videoSpaceHeight = window.innerHeight;
}
2015-12-25 16:55:45 +00:00
let horizontalIndent = (videoSpaceWidth - videoWidth) / 2;
let verticalIndent = (videoSpaceHeight - videoHeight) / 2;
return { horizontalIndent, verticalIndent };
}
2015-06-23 08:00:46 +00:00
/**
2015-12-25 16:55:45 +00:00
* Returns an array of the video horizontal and vertical indents.
* Centers horizontally and top aligns vertically.
*
* @return an array with 2 elements, the horizontal indent and the vertical
* indent
*/
2015-12-25 16:55:45 +00:00
function getDesktopVideoPosition(videoWidth,
videoHeight,
videoSpaceWidth,
videoSpaceHeight) {
let horizontalIndent = (videoSpaceWidth - videoWidth) / 2;
let verticalIndent = 0;// Top aligned
return { horizontalIndent, verticalIndent };
}
export const VideoContainerType = "video";
2015-12-25 16:55:45 +00:00
class VideoContainer extends LargeContainer {
// FIXME: With Temasys we have to re-select everytime
get $video () {
return $('#largeVideo');
}
2015-12-25 16:55:45 +00:00
get id () {
if (this.stream) {
return getStreamId(this.stream);
}
}
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
constructor (onPlay) {
super();
this.stream = null;
2015-12-30 12:14:56 +00:00
this.videoType = null;
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
this.$avatar = $('#activeSpeaker');
this.$wrapper = $('#largeVideoWrapper');
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
if (!RTCBrowserType.isIExplorer()) {
this.$video.volume = 0;
}
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
this.$video.on('play', onPlay);
}
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
getStreamSize () {
let video = this.$video[0];
return {
width: video.videoWidth,
height: video.videoHeight
};
}
2015-12-25 16:55:45 +00:00
getVideoSize (containerWidth, containerHeight) {
let { width, height } = this.getStreamSize();
2015-12-30 12:14:56 +00:00
if (this.stream && this.isScreenSharing()) {
2015-12-25 16:55:45 +00:00
return getDesktopVideoSize(width, height, containerWidth, containerHeight);
} else {
return getCameraVideoSize(width, height, containerWidth, containerHeight);
}
2015-06-23 08:00:46 +00:00
}
2015-12-25 16:55:45 +00:00
getVideoPosition (width, height, containerWidth, containerHeight) {
2015-12-30 12:14:56 +00:00
if (this.stream && this.isScreenSharing()) {
2015-12-25 16:55:45 +00:00
return getDesktopVideoPosition(width, height, containerWidth, containerHeight);
} else {
return getCameraVideoPosition(width, height, containerWidth, containerHeight);
}
}
resize (containerWidth, containerHeight, animate = false) {
let { width, height } = this.getVideoSize(containerWidth, containerHeight);
let { horizontalIndent, verticalIndent } = this.getVideoPosition(width, height, containerWidth, containerHeight);
// update avatar position
let top = this.containerHeight / 2 - avatarSize / 4 * 3;
this.$avatar.css('top', top);
this.$wrapper.animate({
width,
height,
top: verticalIndent,
bottom: verticalIndent,
left: horizontalIndent,
right: horizontalIndent
}, {
queue: false,
duration: animate ? 500 : 0
});
}
2015-12-30 12:14:56 +00:00
setStream (stream, videoType) {
2015-12-25 16:55:45 +00:00
this.stream = stream;
2015-12-30 12:14:56 +00:00
this.videoType = videoType;
2015-12-25 16:55:45 +00:00
stream.attach(this.$video);
2015-12-30 12:14:56 +00:00
let flipX = stream.isLocal() && !this.isScreenSharing();
2015-12-25 16:55:45 +00:00
this.$video.css({
transform: flipX ? 'scaleX(-1)' : 'none'
});
}
2015-12-30 12:14:56 +00:00
isScreenSharing () {
return this.videoType === 'desktop';
}
2015-12-25 16:55:45 +00:00
showAvatar (show) {
this.$avatar.css("visibility", show ? "visible" : "hidden");
}
// We are doing fadeOut/fadeIn animations on parent div which wraps
// largeVideo, because when Temasys plugin is in use it replaces
// <video> elements with plugin <object> tag. In Safari jQuery is
// unable to store values on this plugin object which breaks all
// animation effects performed on it directly.
show () {
let $wrapper = this.$wrapper;
return new Promise(resolve => {
$wrapper.fadeIn(300, function () {
$wrapper.css({visibility: 'visible'});
$('.watermark').css({visibility: 'visible'});
});
resolve();
});
}
hide () {
this.showAvatar(false);
let $wrapper = this.$wrapper;
return new Promise(resolve => {
$wrapper.fadeOut(300, function () {
$wrapper.css({visibility: 'hidden'});
$('.watermark').css({visibility: 'hidden'});
resolve();
});
});
}
}
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
export default class LargeVideoManager {
constructor () {
this.containers = {};
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
this.state = VideoContainerType;
this.videoContainer = new VideoContainer(() => this.resizeContainer(VideoContainerType));
this.addContainer(VideoContainerType, this.videoContainer);
2015-12-25 16:55:45 +00:00
this.width = 0;
this.height = 0;
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
this.$container = $('#largeVideoContainer');
2015-12-14 12:26:50 +00:00
2015-12-25 16:55:45 +00:00
this.$container.css({
display: 'inline-block'
});
2015-12-25 16:55:45 +00:00
if (interfaceConfig.SHOW_JITSI_WATERMARK) {
let leftWatermarkDiv = this.$container.find("div.watermark.leftwatermark");
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
leftWatermarkDiv.css({display: 'block'});
2015-06-23 08:00:46 +00:00
2015-12-25 16:55:45 +00:00
leftWatermarkDiv.parent().attr('href', interfaceConfig.JITSI_WATERMARK_LINK);
2015-06-23 08:00:46 +00:00
}
2015-11-13 17:04:49 +00:00
2015-12-25 16:55:45 +00:00
if (interfaceConfig.SHOW_BRAND_WATERMARK) {
let rightWatermarkDiv = this.$container.find("div.watermark.rightwatermark");
rightWatermarkDiv.css({
display: 'block',
backgroundImage: 'url(images/rightwatermark.png)'
});
rightWatermarkDiv.parent().attr('href', interfaceConfig.BRAND_WATERMARK_LINK);
2015-06-23 08:00:46 +00:00
}
2015-12-25 16:55:45 +00:00
if (interfaceConfig.SHOW_POWERED_BY) {
this.$container.children("a.poweredby").css({display: 'block'});
2015-06-23 08:00:46 +00:00
}
2015-12-25 16:55:45 +00:00
this.$container.hover(
e => this.onHoverIn(e),
e => this.onHoverOut(e)
);
}
onHoverIn (e) {
if (!this.state) {
return;
2015-12-14 12:26:50 +00:00
}
2015-12-25 16:55:45 +00:00
let container = this.getContainer(this.state);
container.onHoverIn(e);
}
onHoverOut (e) {
if (!this.state) {
return;
2015-12-14 12:26:50 +00:00
}
2015-12-25 16:55:45 +00:00
let container = this.getContainer(this.state);
container.onHoverOut(e);
}
2015-12-25 16:55:45 +00:00
get id () {
return this.videoContainer.id;
}
2015-12-30 12:14:56 +00:00
updateLargeVideo (stream, videoType) {
2015-12-25 16:55:45 +00:00
let id = getStreamId(stream);
2015-12-25 16:55:45 +00:00
let container = this.getContainer(this.state);
2015-12-25 16:55:45 +00:00
container.hide().then(() => {
console.info("hover in %s", id);
this.state = VideoContainerType;
2015-12-30 12:14:56 +00:00
this.videoContainer.setStream(stream, videoType);
2015-12-25 16:55:45 +00:00
this.videoContainer.show();
});
}
2015-12-25 16:55:45 +00:00
updateContainerSize (isSideBarVisible) {
this.width = UIUtil.getAvailableVideoWidth(isSideBarVisible);
this.height = window.innerHeight;
}
2015-12-25 16:55:45 +00:00
resizeContainer (type, animate = false) {
let container = this.getContainer(type);
container.resize(this.width, this.height, animate);
}
2015-12-25 16:55:45 +00:00
resize (animate) {
// resize all containers
Object.keys(this.containers).forEach(type => this.resizeContainer(type, animate));
this.$container.animate({
width: this.width,
height: this.height
}, {
queue: false,
duration: animate ? 500 : 0
});
}
2015-08-03 15:58:22 +00:00
2015-08-03 16:21:56 +00:00
/**
* Enables/disables the filter indicating a video problem to the user.
*
* @param enable <tt>true</tt> to enable, <tt>false</tt> to disable
*/
2015-12-25 16:55:45 +00:00
enableVideoProblemFilter (enable) {
this.videoContainer.$video.toggleClass("videoProblemFilter", enable);
}
/**
* Updates the src of the active speaker avatar
*/
updateAvatar (thumbUrl) {
$("#activeSpeakerAvatar").attr('src', thumbUrl);
}
showAvatar (show) {
this.videoContainer.showAvatar(show);
2015-06-23 08:00:46 +00:00
}
2015-12-25 16:55:45 +00:00
addContainer (type, container) {
if (this.containers[type]) {
throw new Error(`container of type ${type} already exist`);
}
this.containers[type] = container;
this.resizeContainer(type);
}
getContainer (type) {
let container = this.containers[type];
if (!container) {
throw new Error(`container of type ${type} doesn't exist`);
}
return container;
}
removeContainer (type) {
if (!this.containers[type]) {
throw new Error(`container of type ${type} doesn't exist`);
}
delete this.containers[type];
}
showContainer (type) {
if (this.state === type) {
return Promise.resolve();
}
let container = this.getContainer(type);
if (this.state) {
let oldContainer = this.containers[this.state];
if (oldContainer) {
oldContainer.hide();
}
}
this.state = type;
return container.show();
}
}