cinera.web: Fix player sizing and auto-scrolling
• Video size may be based on the height if the width-based is too tall • Auto-scrolling improvements: • It now cannot oscillate • It doesn't happen at all if scrolled to the very top / bottom Thanks to @Freak_ on freenode for the report
This commit is contained in:
parent
2d26562301
commit
33f6186aa1
|
@ -23,7 +23,7 @@ typedef struct
|
|||
version CINERA_APP_VERSION = {
|
||||
.Major = 0,
|
||||
.Minor = 8,
|
||||
.Patch = 5
|
||||
.Patch = 6
|
||||
};
|
||||
|
||||
#include <stdarg.h> // NOTE(matt): varargs
|
||||
|
|
|
@ -50,7 +50,7 @@ var CineraProps = {
|
|||
FlexDirection: null,
|
||||
JustifyContent: null,
|
||||
O: null,
|
||||
D: IsMobile() ? devices.MOBILE : devices.DESKTOP,
|
||||
IsMobile: IsMobile(),
|
||||
ScrollX: null,
|
||||
ScrollY: null,
|
||||
};
|
||||
|
@ -173,7 +173,7 @@ if(titleBar)
|
|||
}
|
||||
|
||||
viewsMenu = titleBar.querySelector(".views");
|
||||
if(viewsMenu && CineraProps.D !== devices.MOBILE)
|
||||
if(viewsMenu && !CineraProps.IsMobile)
|
||||
{
|
||||
menuState.push(viewsMenu);
|
||||
var viewsContainer = viewsMenu.querySelector(".views_container");
|
||||
|
@ -280,7 +280,7 @@ var MobileCineraContentRule = GetOrSetRule(MobileCineraContentRuleSelector);
|
|||
var MenuContainerRuleSelector = ".cineraMenus > .menu .quotes_container, .cineraMenus > .menu .references_container, .cineraMenus > .menu .filter_container, .cineraMenus > .menu .views_container, .cineraMenus > .menu .link_container, .cineraMenus > .menu .credits_container";
|
||||
var MenuContainerRule = GetOrSetRule(MenuContainerRuleSelector);
|
||||
|
||||
if(CineraProps.D == devices.MOBILE)
|
||||
if(CineraProps.IsMobile)
|
||||
{
|
||||
InitMobileStyle();
|
||||
}
|
||||
|
@ -292,7 +292,7 @@ else
|
|||
|
||||
var player = new Player(playerContainer, onRefChanged);
|
||||
|
||||
if(CineraProps.D == devices.MOBILE)
|
||||
if(CineraProps.IsMobile)
|
||||
{
|
||||
ConnectMobileControls(player);
|
||||
}
|
||||
|
|
|
@ -483,13 +483,21 @@ Player.prototype.updateSize = function() {
|
|||
var width = 0;
|
||||
var height = 0;
|
||||
CineraProps.O = GetRealOrientation(orientations.LANDSCAPE_LEFT, CineraProps.IsMobile);
|
||||
if(CineraProps.D === devices.DESKTOP)
|
||||
if(!CineraProps.IsMobile)
|
||||
{
|
||||
var VisibleArea = GetWindowDim(false);
|
||||
var AvailableHeight = VisibleArea.Y - titleBar.offsetHeight;
|
||||
width = this.videoContainer.offsetWidth;
|
||||
height = width / 16 * 9; // TODO(matt): Get the aspect ratio from the video itself?
|
||||
if(height > AvailableHeight)
|
||||
{
|
||||
height = AvailableHeight;
|
||||
width = height / 9 * 16;
|
||||
}
|
||||
this.markersContainer.style.height = height + "px";
|
||||
|
||||
var MenuMaxHeight = cinera.offsetHeight - titleBar.offsetHeight - 4;
|
||||
var VacantPixelsBelowMenus = 4;
|
||||
var MenuMaxHeight = cinera.offsetHeight - titleBar.offsetHeight - VacantPixelsBelowMenus;
|
||||
MenuContainerRule.style.maxHeight = MenuMaxHeight + "px";
|
||||
}
|
||||
else
|
||||
|
|
|
@ -44,22 +44,30 @@ DeriveReliableWindowDimensions()
|
|||
}
|
||||
|
||||
function
|
||||
GetRealOrientation(PreferredLandscape, IsMobile)
|
||||
GetWindowDim(IsMobile)
|
||||
{
|
||||
var Result = window.orientation;
|
||||
var WindowDim = {
|
||||
var Result = {
|
||||
X: null,
|
||||
Y: null,
|
||||
};
|
||||
|
||||
if(IsMobile)
|
||||
{
|
||||
WindowDim = DeriveReliableWindowDimensions();
|
||||
Result = DeriveReliableWindowDimensions();
|
||||
}
|
||||
else
|
||||
{
|
||||
WindowDim.X = document.body.clientWidth;
|
||||
WindowDim.Y = window.innerHeight;
|
||||
Result.X = document.body.clientWidth;
|
||||
Result.Y = window.innerHeight;
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
|
||||
function
|
||||
GetRealOrientation(PreferredLandscape, IsMobile)
|
||||
{
|
||||
var Result = window.orientation;
|
||||
var WindowDim = GetWindowDim(IsMobile);
|
||||
if(WindowDim.Y > WindowDim.X)
|
||||
{
|
||||
Result = orientations.PORTRAIT;
|
||||
|
@ -262,52 +270,73 @@ GetOrSetRule(SelectorText)
|
|||
return Result;
|
||||
}
|
||||
|
||||
function IsInRangeEx(Min, N, Max)
|
||||
{
|
||||
return N > Min && N < Max;
|
||||
}
|
||||
|
||||
/* Auto-scrolling */
|
||||
var LastScrollYPos = 0;
|
||||
var ScrollTicking = false;
|
||||
var ScrollerFunction;
|
||||
var ScrollCondition;
|
||||
|
||||
function ScrollTo(Element, ScrollPos, StickyObscuringElement) {
|
||||
function ScrollTo(Element, ScrollPos, IsMobile, StickyObscuringElement) {
|
||||
var ScrolledToTop = ScrollPos == 0;
|
||||
var ScrolledToBottom = (window.innerHeight + Math.ceil(window.pageYOffset)) >= document.body.scrollHeight;
|
||||
if(!ScrolledToTop || !ScrolledToBottom)
|
||||
{
|
||||
var Ceiling = StickyObscuringElement ? StickyObscuringElement.offsetHeight : 0;
|
||||
var VisibleArea = GetWindowDim(IsMobile);
|
||||
VisibleArea.Y -= Ceiling;
|
||||
|
||||
var PercentageOfVisibleHeightToGather = 5;
|
||||
var GatherableHeight = VisibleArea.Y * PercentageOfVisibleHeightToGather / 100;
|
||||
|
||||
var BoundingRect = Element.getBoundingClientRect();
|
||||
var Height = BoundingRect.height;
|
||||
var PercentageOfInView = 89;
|
||||
var GatherableHeight = Height * (1 - PercentageOfInView / 100);
|
||||
var ScrollY = BoundingRect.top;
|
||||
var YOffsetFromPage = getElementYOffsetFromPage(Element);
|
||||
|
||||
var ElementTop = BoundingRect.top - Ceiling;
|
||||
var ElementBottom = ElementTop + BoundingRect.height;
|
||||
|
||||
var UpperProtrusion = -ElementTop;
|
||||
var LowerProtrusion = ElementBottom - VisibleArea.Y;
|
||||
|
||||
var DesiredScroll = null;
|
||||
var Ceiling = StickyObscuringElement ? StickyObscuringElement.offsetHeight : 0;
|
||||
|
||||
if(ScrollY < Ceiling)
|
||||
var YOffsetFromPage = getElementYOffsetFromPage(Element);
|
||||
if(IsInRangeEx(0, UpperProtrusion, GatherableHeight))
|
||||
{
|
||||
if(ScrollY < 0) { ScrollY = -ScrollY; }
|
||||
GatherableHeight -= Ceiling;
|
||||
if(ScrollY <= GatherableHeight)
|
||||
if(!ScrolledToBottom)
|
||||
{
|
||||
DesiredScroll = YOffsetFromPage - Ceiling;
|
||||
}
|
||||
}
|
||||
else
|
||||
else if(IsInRangeEx(0, LowerProtrusion, GatherableHeight))
|
||||
{
|
||||
var LowerProtrusion = ScrollY - (window.innerHeight - Height);
|
||||
if(LowerProtrusion > 0 && LowerProtrusion <= GatherableHeight)
|
||||
if(!ScrolledToTop)
|
||||
{
|
||||
if(IsInRangeEx(0, UpperProtrusion + LowerProtrusion, GatherableHeight))
|
||||
{
|
||||
DesiredScroll = YOffsetFromPage - Ceiling;
|
||||
}
|
||||
else
|
||||
{
|
||||
DesiredScroll = ScrollPos + LowerProtrusion;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(DesiredScroll !== null)
|
||||
if(DesiredScroll !== null && DesiredScroll != ScrollPos)
|
||||
{
|
||||
window.scrollTo({
|
||||
top: DesiredScroll,
|
||||
behavior: "smooth"
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function
|
||||
InitScrollEventListener(Element, StickyObscuringElement)
|
||||
InitScrollEventListener(Element, IsMobile, StickyObscuringElement)
|
||||
{
|
||||
window.addEventListener('scroll', function() {
|
||||
if(ScrollCondition == undefined || ScrollCondition == true)
|
||||
|
@ -317,7 +346,7 @@ InitScrollEventListener(Element, StickyObscuringElement)
|
|||
if (!ScrollTicking) {
|
||||
window.requestAnimationFrame(function() {
|
||||
clearTimeout(ScrollerFunction);
|
||||
ScrollerFunction = setTimeout(ScrollTo, 2000, Element, LastScrollYPos, StickyObscuringElement);
|
||||
ScrollerFunction = setTimeout(ScrollTo, 2000, Element, LastScrollYPos, IsMobile, StickyObscuringElement);
|
||||
ScrollTicking = false;
|
||||
});
|
||||
|
||||
|
|
|
@ -2938,19 +2938,7 @@ ComputeOptimalGridSize()
|
|||
Y: null,
|
||||
};
|
||||
|
||||
var WindowDim = {
|
||||
X: null,
|
||||
Y: null,
|
||||
};
|
||||
if(CineraProps.IsMobile)
|
||||
{
|
||||
WindowDim = DeriveReliableWindowDimensions();
|
||||
}
|
||||
else
|
||||
{
|
||||
WindowDim.X = document.body.clientWidth;
|
||||
WindowDim.Y = window.innerHeight;
|
||||
}
|
||||
var WindowDim = GetWindowDim(CineraProps.IsMobile);
|
||||
var DimReduction = {
|
||||
X: 0,
|
||||
Y: Nav.Controls.Header.offsetHeight,
|
||||
|
|
Loading…
Reference in New Issue