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

439 lines
14 KiB
JavaScript
Raw Normal View History

2015-12-14 12:26:50 +00:00
/* global $, APP, interfaceConfig */
import ConnectionIndicator from './ConnectionIndicator';
import SmallVideo from "./SmallVideo";
import AudioLevels from "../audio_levels/AudioLevels";
import UIUtils from "../util/UIUtil";
import UIEvents from '../../../service/UI/UIEvents';
var RTCBrowserType = require("../../RTC/RTCBrowserType");
2015-06-23 08:00:46 +00:00
2015-12-14 12:26:50 +00:00
function RemoteVideo(id, VideoLayout, emitter) {
this.id = id;
this.emitter = emitter;
this.videoSpanId = `participant_${id}`;
2015-06-23 08:00:46 +00:00
this.VideoLayout = VideoLayout;
this.addRemoteVideoContainer();
2015-12-14 12:26:50 +00:00
this.connectionIndicator = new ConnectionIndicator(this, id);
2015-06-23 08:00:46 +00:00
this.setDisplayName();
var nickfield = document.createElement('span');
nickfield.className = "nick";
2015-12-14 12:26:50 +00:00
nickfield.appendChild(document.createTextNode(id));
2015-06-23 08:00:46 +00:00
this.container.appendChild(nickfield);
this.bindHoverHandler();
2015-06-23 08:00:46 +00:00
this.flipX = false;
this.isLocal = false;
2015-06-23 08:00:46 +00:00
}
RemoteVideo.prototype = Object.create(SmallVideo.prototype);
RemoteVideo.prototype.constructor = RemoteVideo;
RemoteVideo.prototype.addRemoteVideoContainer = function() {
this.container = RemoteVideo.createContainer(this.videoSpanId);
2015-12-14 12:26:50 +00:00
if (APP.conference.isModerator) {
2015-06-23 08:00:46 +00:00
this.addRemoteVideoMenu();
2015-12-14 12:26:50 +00:00
}
AudioLevels.updateAudioLevelCanvas(this.id, this.VideoLayout);
2015-06-23 08:00:46 +00:00
return this.container;
};
/**
2015-12-14 12:26:50 +00:00
* Adds the remote video menu element for the given <tt>id</tt> in the
2015-06-23 08:00:46 +00:00
* given <tt>parentElement</tt>.
*
2015-12-14 12:26:50 +00:00
* @param id the id indicating the video for which we're adding a menu.
2015-06-23 08:00:46 +00:00
* @param parentElement the parent element where this menu will be added
*/
if (!interfaceConfig.filmStripOnly) {
RemoteVideo.prototype.addRemoteVideoMenu = function () {
var spanElement = document.createElement('span');
spanElement.className = 'remotevideomenu';
2015-06-23 08:00:46 +00:00
this.container.appendChild(spanElement);
2015-06-23 08:00:46 +00:00
var menuElement = document.createElement('i');
menuElement.className = 'fa fa-angle-down';
menuElement.title = 'Remote user controls';
spanElement.appendChild(menuElement);
2015-06-23 08:00:46 +00:00
var popupmenuElement = document.createElement('ul');
popupmenuElement.className = 'popupmenu';
2015-12-14 12:26:50 +00:00
popupmenuElement.id = `remote_popupmenu_${this.id}`;
spanElement.appendChild(popupmenuElement);
2015-06-23 08:00:46 +00:00
var muteMenuItem = document.createElement('li');
var muteLinkItem = document.createElement('a');
2015-06-23 08:00:46 +00:00
var mutedIndicator = "<i style='float:left;' " +
"class='icon-mic-disabled'></i>";
2015-06-23 08:00:46 +00:00
if (!this.isMuted) {
muteLinkItem.innerHTML = mutedIndicator +
" <div style='width: 90px;margin-left: 20px;' " +
"data-i18n='videothumbnail.domute'></div>";
muteLinkItem.className = 'mutelink';
}
else {
muteLinkItem.innerHTML = mutedIndicator +
" <div style='width: 90px;margin-left: 20px;' " +
"data-i18n='videothumbnail.muted'></div>";
muteLinkItem.className = 'mutelink disabled';
}
var self = this;
muteLinkItem.onclick = function(){
2015-09-11 03:26:29 +00:00
if ($(this).attr('disabled')) {
event.preventDefault();
}
2015-09-11 03:26:29 +00:00
var isMute = !!self.isMuted;
2015-12-14 12:26:50 +00:00
self.emitter.emit(UIEvents.AUDIO_MUTED, !isMute);
popupmenuElement.setAttribute('style', 'display:none;');
if (isMute) {
this.innerHTML = mutedIndicator +
" <div style='width: 90px;margin-left: 20px;' " +
"data-i18n='videothumbnail.muted'></div>";
this.className = 'mutelink disabled';
}
else {
this.innerHTML = mutedIndicator +
" <div style='width: 90px;margin-left: 20px;' " +
"data-i18n='videothumbnail.domute'></div>";
this.className = 'mutelink';
}
};
muteMenuItem.appendChild(muteLinkItem);
popupmenuElement.appendChild(muteMenuItem);
var ejectIndicator = "<i style='float:left;' class='fa fa-eject'></i>";
var ejectMenuItem = document.createElement('li');
var ejectLinkItem = document.createElement('a');
var ejectText = "<div style='width: 90px;margin-left: 20px;' " +
"data-i18n='videothumbnail.kick'>&nbsp;</div>";
ejectLinkItem.innerHTML = ejectIndicator + ' ' + ejectText;
ejectLinkItem.onclick = function(){
2015-12-14 12:26:50 +00:00
self.emitter.emit(UIEvents.USER_KICKED, self.id);
popupmenuElement.setAttribute('style', 'display:none;');
};
ejectMenuItem.appendChild(ejectLinkItem);
popupmenuElement.appendChild(ejectMenuItem);
var paddingSpan = document.createElement('span');
paddingSpan.className = 'popupmenuPadding';
popupmenuElement.appendChild(paddingSpan);
APP.translation.translateElement(
$("#" + popupmenuElement.id + " > li > a > div"));
};
} else {
RemoteVideo.prototype.addRemoteVideoMenu = function() {};
}
2015-06-23 08:00:46 +00:00
/**
* Removes the remote stream element corresponding to the given stream and
* parent container.
*
* @param stream the stream
* @param isVideo <tt>true</tt> if given <tt>stream</tt> is a video one.
*/
RemoteVideo.prototype.removeRemoteStreamElement =
function (stream, isVideo, id) {
2015-06-23 08:00:46 +00:00
if (!this.container)
return false;
var select = null;
if (isVideo) {
select = $('#' + id);
}
else
select = $('#' + this.videoSpanId + '>audio');
select.remove();
console.info((isVideo ? "Video" : "Audio") +
2015-12-14 12:26:50 +00:00
" removed " + this.id, select);
if (isVideo)
2015-12-14 12:26:50 +00:00
this.VideoLayout.updateRemovedVideo(this.id);
2015-06-23 08:00:46 +00:00
};
/**
* Removes RemoteVideo from the page.
*/
RemoteVideo.prototype.remove = function () {
2015-12-14 12:26:50 +00:00
console.log("Remove thumbnail", this.id);
this.removeConnectionIndicator();
// Make sure that the large video is updated if are removing its
// corresponding small video.
2015-12-14 12:26:50 +00:00
this.VideoLayout.updateRemovedVideo(this.id);
// Remove whole container
2015-12-14 12:26:50 +00:00
if (this.container.parentNode) {
this.container.parentNode.removeChild(this.container);
2015-12-14 12:26:50 +00:00
}
};
RemoteVideo.prototype.waitForPlayback = function (sel, stream) {
var webRtcStream = stream.getOriginalStream();
2015-12-14 12:26:50 +00:00
var isVideo = stream.isVideoTrack();
if (!isVideo || webRtcStream.id === 'mixedmslabel') {
return;
}
var self = this;
// Register 'onplaying' listener to trigger 'videoactive' on VideoLayout
// when video playback starts
var onPlayingHandler = function () {
// FIXME: why do i have to do this for FF?
if (RTCBrowserType.isFirefox()) {
2015-12-29 22:30:50 +00:00
//FIXME: weshould use the lib here
//APP.RTC.attachMediaStream(sel, webRtcStream);
}
if (RTCBrowserType.isTemasysPluginUsed()) {
sel = self.selectVideoElement();
}
2015-12-14 12:26:50 +00:00
self.VideoLayout.videoactive(sel, self.id);
sel[0].onplaying = null;
if (RTCBrowserType.isTemasysPluginUsed()) {
// 'currentTime' is used to check if the video has started
// and the value is not set by the plugin, so we do it
sel[0].currentTime = 1;
}
};
sel[0].onplaying = onPlayingHandler;
};
RemoteVideo.prototype.addRemoteStreamElement = function (stream) {
2015-12-14 12:26:50 +00:00
if (!this.container) {
2015-06-23 08:00:46 +00:00
return;
2015-12-14 12:26:50 +00:00
}
2015-06-23 08:00:46 +00:00
2015-12-14 12:26:50 +00:00
this.stream = stream;
let isVideo = stream.isVideoTrack();
let streamElement = SmallVideo.createStreamElement(stream);
let newElementId = streamElement.id;
2015-06-23 08:00:46 +00:00
// Put new stream element always in front
UIUtils.prependChild(this.container, streamElement);
2015-06-23 08:00:46 +00:00
2015-12-14 12:26:50 +00:00
let sel = $(`#${newElementId}`);
2015-06-23 08:00:46 +00:00
sel.hide();
// If the container is currently visible we attach the stream.
if (!isVideo || (this.container.offsetParent !== null && isVideo)) {
this.waitForPlayback(sel, stream);
2015-07-01 12:20:08 +00:00
2015-12-14 12:26:50 +00:00
stream.attach(sel);
2015-06-23 08:00:46 +00:00
}
// Add click handler.
2015-12-14 12:26:50 +00:00
let onClickHandler = (event) => {
2015-12-14 12:26:50 +00:00
this.VideoLayout.handleVideoThumbClicked(false, this.id);
// On IE we need to populate this handler on video <object>
// and it does not give event instance as an argument,
// so we check here for methods.
if (event.stopPropagation && event.preventDefault) {
event.stopPropagation();
event.preventDefault();
}
2015-06-23 08:00:46 +00:00
return false;
};
this.container.onclick = onClickHandler;
// reselect
2015-12-14 12:26:50 +00:00
if (RTCBrowserType.isTemasysPluginUsed()) {
sel = $(`#${newElementId}`);
}
sel.click(onClickHandler);
},
2015-06-23 08:00:46 +00:00
/**
2015-12-14 12:26:50 +00:00
* Show/hide peer container for the given id.
2015-06-23 08:00:46 +00:00
*/
RemoteVideo.prototype.showPeerContainer = function (state) {
if (!this.container)
return;
var isHide = state === 'hide';
var resizeThumbnails = false;
if (!isHide) {
if (!$(this.container).is(':visible')) {
resizeThumbnails = true;
$(this.container).show();
}
// Call showAvatar with undefined, so that we'll figure out if avatar
// should be displayed based on video muted status and whether or not
// it's in the lastN set
this.showAvatar(undefined);
2015-06-23 08:00:46 +00:00
}
else if ($(this.container).is(':visible') && isHide)
{
resizeThumbnails = true;
$(this.container).hide();
if(this.connectionIndicator)
this.connectionIndicator.hide();
}
if (resizeThumbnails) {
this.VideoLayout.resizeThumbnails();
}
// We want to be able to pin a participant from the contact list, even
// if he's not in the lastN set!
2015-12-14 12:26:50 +00:00
// ContactList.setClickable(id, !isHide);
2015-06-23 08:00:46 +00:00
};
2015-12-29 12:41:43 +00:00
RemoteVideo.prototype.updateResolution = function (resolution) {
if (this.connectionIndicator) {
this.connectionIndicator.updateResolution(resolution);
}
};
2015-06-23 08:00:46 +00:00
RemoteVideo.prototype.removeConnectionIndicator = function () {
if (this.connectionIndicator)
2015-06-23 08:00:46 +00:00
this.connectionIndicator.remove();
};
2015-06-23 08:00:46 +00:00
RemoteVideo.prototype.hideConnectionIndicator = function () {
if (this.connectionIndicator)
2015-06-23 08:00:46 +00:00
this.connectionIndicator.hide();
};
2015-06-23 08:00:46 +00:00
/**
* Updates the remote video menu.
*
2015-12-14 12:26:50 +00:00
* @param id the id indicating the video for which we're adding a menu.
2015-06-23 08:00:46 +00:00
* @param isMuted indicates the current mute state
*/
RemoteVideo.prototype.updateRemoteVideoMenu = function (isMuted) {
2015-12-14 12:26:50 +00:00
var muteMenuItem = $(`#remote_popupmenu_${this.id}>li>a.mutelink`);
2015-06-23 08:00:46 +00:00
var mutedIndicator = "<i class='icon-mic-disabled'></i>";
if (muteMenuItem.length) {
var muteLink = muteMenuItem.get(0);
if (isMuted) {
2015-06-23 08:00:46 +00:00
muteLink.innerHTML = mutedIndicator + ' Muted';
muteLink.className = 'mutelink disabled';
}
else {
muteLink.innerHTML = mutedIndicator + ' Mute';
muteLink.className = 'mutelink';
}
}
};
2015-06-23 08:00:46 +00:00
/**
* Updates the Indicator for dominant speaker.
*
* @param isSpeaker indicates the current indicator state
*/
RemoteVideo.prototype.updateDominantSpeakerIndicator = function (isSpeaker) {
if (!this.container) {
console.warn( "Unable to set dominant speaker indicator - "
+ this.videoSpanId + " does not exist");
return;
}
var indicatorSpan
= $('#' + this.videoSpanId + '>span.dominantspeakerindicator');
// If we do not have an indicator for this video.
if (indicatorSpan.length <= 0) {
indicatorSpan = document.createElement('span');
indicatorSpan.innerHTML
= "<i id='speakerindicatoricon' class='fa fa-bullhorn'></i>";
indicatorSpan.className = 'dominantspeakerindicator';
$('#' + this.videoSpanId)[0].appendChild(indicatorSpan);
// adds a tooltip
UIUtils.setTooltip(indicatorSpan, "speaker", "left");
APP.translation.translateElement($(indicatorSpan));
}
$(indicatorSpan).css("visibility", isSpeaker ? "visible" : "hidden");
};
2015-06-23 08:00:46 +00:00
/**
* Sets the display name for the given video span id.
*/
RemoteVideo.prototype.setDisplayName = function(displayName, key) {
if (!this.container) {
console.warn( "Unable to set displayName - " + this.videoSpanId +
" does not exist");
2015-06-23 08:00:46 +00:00
return;
}
var nameSpan = $('#' + this.videoSpanId + '>span.displayname');
// If we already have a display name for this video.
if (nameSpan.length > 0) {
if (displayName && displayName.length > 0) {
2015-06-23 08:00:46 +00:00
$('#' + this.videoSpanId + '_name').html(displayName);
}
else if (key && key.length > 0) {
var nameHtml = APP.translation.generateTranslationHTML(key);
2015-06-23 08:00:46 +00:00
$('#' + this.videoSpanId + '_name').html(nameHtml);
}
else
$('#' + this.videoSpanId + '_name').text(
interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME);
} else {
nameSpan = document.createElement('span');
nameSpan.className = 'displayname';
$('#' + this.videoSpanId)[0].appendChild(nameSpan);
if (displayName && displayName.length > 0) {
nameSpan.innerText = displayName;
}
else
nameSpan.innerText = interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME;
nameSpan.id = this.videoSpanId + '_name';
}
};
2015-06-23 08:00:46 +00:00
/**
* Removes remote video menu element from video element identified by
* given <tt>videoElementId</tt>.
*
* @param videoElementId the id of local or remote video element.
*/
RemoteVideo.prototype.removeRemoteVideoMenu = function() {
var menuSpan = $('#' + this.videoSpanId + '>span.remotevideomenu');
if (menuSpan.length) {
menuSpan.remove();
}
};
2015-06-23 08:00:46 +00:00
RemoteVideo.createContainer = function (spanId) {
var container = document.createElement('span');
container.id = spanId;
container.className = 'videocontainer';
var remotes = document.getElementById('remoteVideos');
return remotes.appendChild(container);
};
2015-12-14 12:26:50 +00:00
export default RemoteVideo;