fix(filmstrip): Separate remote videos and local video
The 1:1 call UI and vertical filmstrip act on remote videos while leaving local video alone. To facilitate acting only on remote videos, place remote videos into their own container element.
This commit is contained in:
parent
23fea490aa
commit
82ecfac4ee
|
@ -62,10 +62,18 @@
|
||||||
videos. */
|
videos. */
|
||||||
font-size: 0pt;
|
font-size: 0pt;
|
||||||
|
|
||||||
|
#filmstripLocalVideo {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&.hidden {
|
&.hidden {
|
||||||
bottom: -196px;
|
bottom: -196px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.remote-videos-container {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.videocontainer {
|
.videocontainer {
|
||||||
display: none;
|
display: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -656,7 +656,7 @@ SharedVideoThumb.prototype.createContainer = function (spanId) {
|
||||||
avatar.src = "https://img.youtube.com/vi/" + this.url + "/0.jpg";
|
avatar.src = "https://img.youtube.com/vi/" + this.url + "/0.jpg";
|
||||||
container.appendChild(avatar);
|
container.appendChild(avatar);
|
||||||
|
|
||||||
var remotes = document.getElementById('remoteVideos');
|
var remotes = document.getElementById('filmstripRemoteVideosContainer');
|
||||||
return remotes.appendChild(container);
|
return remotes.appendChild(container);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ const Filmstrip = {
|
||||||
this.iconMenuUpClassName = 'icon-menu-up';
|
this.iconMenuUpClassName = 'icon-menu-up';
|
||||||
this.filmstripContainerClassName = 'filmstrip';
|
this.filmstripContainerClassName = 'filmstrip';
|
||||||
this.filmstrip = $('#remoteVideos');
|
this.filmstrip = $('#remoteVideos');
|
||||||
|
this.filmstripRemoteVideos = $('#filmstripRemoteVideosContainer');
|
||||||
this.eventEmitter = eventEmitter;
|
this.eventEmitter = eventEmitter;
|
||||||
|
|
||||||
// Show the toggle button and add event listeners only when out of
|
// Show the toggle button and add event listeners only when out of
|
||||||
|
@ -456,8 +457,7 @@ const Filmstrip = {
|
||||||
}
|
}
|
||||||
|
|
||||||
let localThumb = $("#localVideoContainer");
|
let localThumb = $("#localVideoContainer");
|
||||||
let remoteThumbs = this.filmstrip.children(selector)
|
let remoteThumbs = this.filmstripRemoteVideos.children(selector);
|
||||||
.not("#localVideoContainer");
|
|
||||||
|
|
||||||
// Exclude the local video container if it has been hidden.
|
// Exclude the local video container if it has been hidden.
|
||||||
if (localThumb.hasClass("hidden")) {
|
if (localThumb.hasClass("hidden")) {
|
||||||
|
|
|
@ -800,7 +800,7 @@ RemoteVideo.createContainer = function (spanId) {
|
||||||
overlay.className = "videocontainer__hoverOverlay";
|
overlay.className = "videocontainer__hoverOverlay";
|
||||||
container.appendChild(overlay);
|
container.appendChild(overlay);
|
||||||
|
|
||||||
var remotes = document.getElementById('remoteVideos');
|
var remotes = document.getElementById('filmstripRemoteVideosContainer');
|
||||||
return remotes.appendChild(container);
|
return remotes.appendChild(container);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -106,10 +106,31 @@ class Conference extends Component {
|
||||||
src = 'images/spin.svg' />
|
src = 'images/spin.svg' />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
{ this._renderFilmstrip() }
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DialogContainer />
|
||||||
|
<OverlayContainer />
|
||||||
|
<HideNotificationBarStyle />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a React Element for displaying filmstrip videos.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @returns {ReactElement}
|
||||||
|
*/
|
||||||
|
_renderFilmstrip() {
|
||||||
|
return (
|
||||||
<div className = 'filmstrip'>
|
<div className = 'filmstrip'>
|
||||||
<div
|
<div
|
||||||
className = 'filmstrip__videos'
|
className = 'filmstrip__videos'
|
||||||
id = 'remoteVideos'>
|
id = 'remoteVideos'>
|
||||||
|
<div
|
||||||
|
className = 'filmstrip__videos'
|
||||||
|
id = 'filmstripLocalVideo'>
|
||||||
<span
|
<span
|
||||||
className = 'videocontainer'
|
className = 'videocontainer'
|
||||||
id = 'localVideoContainer'>
|
id = 'localVideoContainer'>
|
||||||
|
@ -125,6 +146,23 @@ class Conference extends Component {
|
||||||
className
|
className
|
||||||
= 'videocontainer__hoverOverlay' />
|
= 'videocontainer__hoverOverlay' />
|
||||||
</span>
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className = 'filmstrip__videos'
|
||||||
|
id = 'filmstripRemoteVideos'>
|
||||||
|
{
|
||||||
|
|
||||||
|
/*
|
||||||
|
This extra video container is needed for
|
||||||
|
scrolling thumbnails in firefox, otherwise the
|
||||||
|
flex thumbnails resize instead of causing
|
||||||
|
overflow.
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
<div
|
||||||
|
className = 'remote-videos-container'
|
||||||
|
id = 'filmstripRemoteVideosContainer' />
|
||||||
|
</div>
|
||||||
<audio
|
<audio
|
||||||
id = 'userJoined'
|
id = 'userJoined'
|
||||||
preload = 'auto'
|
preload = 'auto'
|
||||||
|
@ -135,12 +173,6 @@ class Conference extends Component {
|
||||||
src = 'sounds/left.wav' />
|
src = 'sounds/left.wav' />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<DialogContainer />
|
|
||||||
<OverlayContainer />
|
|
||||||
<HideNotificationBarStyle />
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue