mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
444 lines
12 KiB
JavaScript
444 lines
12 KiB
JavaScript
define(['visibleinviewport', 'imageFetcher', 'layoutManager', 'events', 'browser', 'dom', 'appSettings', 'require'], function (visibleinviewport, imageFetcher, layoutManager, events, browser, dom, appSettings, require) {
|
|
'use strict';
|
|
|
|
var thresholdX;
|
|
var thresholdY;
|
|
|
|
var requestIdleCallback = window.requestIdleCallback || function (fn) {
|
|
fn();
|
|
};
|
|
|
|
//var imagesWorker = new Worker(require.toUrl('.').split('?')[0] + '/imagesworker.js');
|
|
|
|
var supportsIntersectionObserver = function () {
|
|
|
|
if (window.IntersectionObserver) {
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}();
|
|
|
|
function resetThresholds() {
|
|
|
|
var x = screen.availWidth;
|
|
var y = screen.availHeight;
|
|
|
|
if (browser.touch) {
|
|
x *= 1.5;
|
|
y *= 1.5;
|
|
}
|
|
|
|
thresholdX = x;
|
|
thresholdY = y;
|
|
}
|
|
|
|
if (!supportsIntersectionObserver) {
|
|
dom.addEventListener(window, "orientationchange", resetThresholds, { passive: true });
|
|
dom.addEventListener(window, 'resize', resetThresholds, { passive: true });
|
|
resetThresholds();
|
|
}
|
|
|
|
function isVisible(elem) {
|
|
return visibleinviewport(elem, true, thresholdX, thresholdY);
|
|
}
|
|
|
|
var wheelEvent = (document.implementation.hasFeature('Event.wheel', '3.0') ? 'wheel' : 'mousewheel');
|
|
var self = {};
|
|
|
|
var enableFade = browser.animate && !browser.slow;
|
|
|
|
function fillImage(elem, source, enableEffects) {
|
|
|
|
if (!source) {
|
|
source = elem.getAttribute('data-src');
|
|
}
|
|
|
|
if (!source) {
|
|
return;
|
|
}
|
|
|
|
fillImageElement(elem, source, enableEffects);
|
|
}
|
|
|
|
function fillImageElement(elem, source, enableEffects) {
|
|
imageFetcher.loadImage(elem, source).then(function () {
|
|
|
|
var fillingVibrant = elem.tagName !== 'IMG' ? false : fillVibrant(elem, source);
|
|
|
|
if (enableFade && !layoutManager.tv && enableEffects !== false && !fillingVibrant) {
|
|
fadeIn(elem);
|
|
}
|
|
|
|
elem.removeAttribute("data-src");
|
|
});
|
|
}
|
|
|
|
//var placeholder = document.createElement('div');
|
|
//imagesWorker.onmessage = function (evt) {
|
|
// placeholder.dispatchEvent(new CustomEvent('decoded', {
|
|
// detail: evt.data,
|
|
// bubbles: false,
|
|
// cancellable: false
|
|
// }));
|
|
//};
|
|
|
|
//var uniqueId = 0;
|
|
|
|
//function fillCanvas(elem, source) {
|
|
|
|
// var newUniqueId = (++uniqueId);
|
|
|
|
// imagesWorker.postMessage({
|
|
// url: source,
|
|
// id: newUniqueId
|
|
// });
|
|
|
|
// placeholder.addEventListener('decoded', function (e) {
|
|
|
|
// if (e.detail.id == newUniqueId) {
|
|
|
|
// var imageBitmap = e.detail.imageBitmap;
|
|
// var canvas = document.createElement('canvas');
|
|
// var canvasContext = canvas.getContext('2d');
|
|
|
|
// //drawWidth *= ratio;
|
|
// //drawHeight *= ratio;
|
|
|
|
// // https://stackoverflow.com/questions/21961839/simulation-background-size-cover-in-canvas/21961894#21961894
|
|
// canvasContext.imageSmoothingEnabled = false;
|
|
// var width = canvas.width = elem.offsetWidth;
|
|
// var height = canvas.height = elem.offsetHeight;
|
|
// canvasContext.drawImage(imageBitmap, 0, 0, imageBitmap.width, imageBitmap.height, 0, 0, width, height);
|
|
|
|
// fillVibrant(elem, source, canvas, canvasContext);
|
|
|
|
// elem.insertBefore(canvas, elem.firstChild);
|
|
// elem.removeAttribute("data-src");
|
|
// }
|
|
// });
|
|
//}
|
|
|
|
function fillVibrant(img, url, canvas, canvasContext) {
|
|
|
|
var vibrantElement = img.getAttribute('data-vibrant');
|
|
if (!vibrantElement) {
|
|
return false;
|
|
}
|
|
|
|
if (window.Vibrant) {
|
|
fillVibrantOnLoaded(img, url, vibrantElement, canvas, canvasContext);
|
|
return true;
|
|
}
|
|
|
|
require(['vibrant'], function () {
|
|
fillVibrantOnLoaded(img, url, vibrantElement, canvas, canvasContext);
|
|
});
|
|
return true;
|
|
}
|
|
|
|
function fillVibrantOnLoaded(img, url, vibrantElement) {
|
|
|
|
vibrantElement = document.getElementById(vibrantElement);
|
|
if (!vibrantElement) {
|
|
return;
|
|
}
|
|
|
|
requestIdleCallback(function () {
|
|
|
|
//var now = new Date().getTime();
|
|
var swatch = getVibrantInfo(img, url).split('|');
|
|
//console.log('vibrant took ' + (new Date().getTime() - now) + 'ms');
|
|
if (swatch.length) {
|
|
|
|
var index = 0;
|
|
vibrantElement.style.backgroundColor = swatch[index];
|
|
vibrantElement.style.color = swatch[index + 1];
|
|
}
|
|
});
|
|
/*
|
|
* Results into:
|
|
* Vibrant #7a4426
|
|
* Muted #7b9eae
|
|
* DarkVibrant #348945
|
|
* DarkMuted #141414
|
|
* LightVibrant #f3ccb4
|
|
*/
|
|
}
|
|
|
|
function getSettingsKey(url) {
|
|
|
|
var parts = url.split('://');
|
|
url = parts[parts.length - 1];
|
|
|
|
url = url.substring(url.indexOf('/') + 1);
|
|
|
|
url = url.split('?')[0];
|
|
|
|
var cacheKey = 'vibrant25';
|
|
//cacheKey = 'vibrant' + new Date().getTime();
|
|
return cacheKey + url;
|
|
}
|
|
|
|
function getCachedVibrantInfo(url) {
|
|
|
|
return appSettings.get(getSettingsKey(url));
|
|
}
|
|
|
|
function getVibrantInfo(img, url) {
|
|
|
|
var value = getCachedVibrantInfo(url);
|
|
if (value) {
|
|
return value;
|
|
}
|
|
|
|
var vibrant = new Vibrant(img);
|
|
var swatches = vibrant.swatches();
|
|
|
|
value = '';
|
|
var swatch = swatches.DarkVibrant;
|
|
if (swatch) {
|
|
value += swatch.getHex() + '|' + swatch.getBodyTextColor();
|
|
}
|
|
//swatch = swatches.DarkMuted;
|
|
//if (swatch) {
|
|
// value += '|' + swatch.getHex() + '|' + swatch.getBodyTextColor();
|
|
//} else {
|
|
// value += '||';
|
|
//}
|
|
//swatch = swatches.Vibrant;
|
|
//if (swatch) {
|
|
// value += '|' + swatch.getHex() + '|' + swatch.getBodyTextColor();
|
|
//} else {
|
|
// value += '||';
|
|
//}
|
|
//swatch = swatches.Muted;
|
|
//if (swatch) {
|
|
// value += '|' + swatch.getHex() + '|' + swatch.getBodyTextColor();
|
|
//} else {
|
|
// value += '||';
|
|
//}
|
|
|
|
appSettings.set(getSettingsKey(url), value);
|
|
|
|
return value;
|
|
}
|
|
|
|
function fadeIn(elem) {
|
|
|
|
var duration = layoutManager.tv ? 160 : 300;
|
|
|
|
var keyframes = [
|
|
{ opacity: '0', offset: 0 },
|
|
{ opacity: '1', offset: 1 }];
|
|
var timing = { duration: duration, iterations: 1 };
|
|
elem.animate(keyframes, timing);
|
|
}
|
|
|
|
function cancelAll(tokens) {
|
|
for (var i = 0, length = tokens.length; i < length; i++) {
|
|
|
|
tokens[i] = true;
|
|
}
|
|
}
|
|
|
|
function unveilWithIntersection(images, root) {
|
|
|
|
var filledCount = 0;
|
|
|
|
var options = {};
|
|
|
|
//options.rootMargin = "300%";
|
|
|
|
var observer = new IntersectionObserver(function (entries) {
|
|
for (var j = 0, length2 = entries.length; j < length2; j++) {
|
|
var entry = entries[j];
|
|
var target = entry.target;
|
|
observer.unobserve(target);
|
|
fillImage(target);
|
|
filledCount++;
|
|
}
|
|
},
|
|
options
|
|
);
|
|
// Start observing an element
|
|
for (var i = 0, length = images.length; i < length; i++) {
|
|
observer.observe(images[i]);
|
|
}
|
|
}
|
|
|
|
function unveilElements(images, root) {
|
|
|
|
if (!images.length) {
|
|
return;
|
|
}
|
|
|
|
if (supportsIntersectionObserver) {
|
|
unveilWithIntersection(images, root);
|
|
return;
|
|
}
|
|
|
|
var filledImages = [];
|
|
var cancellationTokens = [];
|
|
|
|
function unveilInternal(tokenIndex) {
|
|
|
|
var anyFound = false;
|
|
var out = false;
|
|
|
|
// TODO: This out construct assumes left to right, top to bottom
|
|
|
|
for (var i = 0, length = images.length; i < length; i++) {
|
|
|
|
if (cancellationTokens[tokenIndex]) {
|
|
return;
|
|
}
|
|
if (filledImages[i]) {
|
|
continue;
|
|
}
|
|
var img = images[i];
|
|
if (!out && isVisible(img)) {
|
|
anyFound = true;
|
|
filledImages[i] = true;
|
|
fillImage(img);
|
|
} else {
|
|
|
|
if (anyFound) {
|
|
out = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!images.length) {
|
|
dom.removeEventListener(document, 'focus', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.removeEventListener(document, 'scroll', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.removeEventListener(document, wheelEvent, unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.removeEventListener(window, 'resize', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
}
|
|
}
|
|
|
|
function unveil() {
|
|
|
|
cancelAll(cancellationTokens);
|
|
|
|
var index = cancellationTokens.length;
|
|
cancellationTokens.length++;
|
|
|
|
setTimeout(function () {
|
|
unveilInternal(index);
|
|
}, 1);
|
|
}
|
|
|
|
dom.addEventListener(document, 'focus', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.addEventListener(document, 'scroll', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.addEventListener(document, wheelEvent, unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
dom.addEventListener(window, 'resize', unveil, {
|
|
capture: true,
|
|
passive: true
|
|
});
|
|
|
|
unveil();
|
|
}
|
|
|
|
function lazyChildren(elem) {
|
|
|
|
unveilElements(elem.getElementsByClassName('lazy'), elem);
|
|
}
|
|
|
|
function getPrimaryImageAspectRatio(items) {
|
|
|
|
var values = [];
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
|
|
|
var ratio = items[i].PrimaryImageAspectRatio || 0;
|
|
|
|
if (!ratio) {
|
|
continue;
|
|
}
|
|
|
|
values[values.length] = ratio;
|
|
}
|
|
|
|
if (!values.length) {
|
|
return null;
|
|
}
|
|
|
|
// Use the median
|
|
values.sort(function (a, b) { return a - b; });
|
|
|
|
var half = Math.floor(values.length / 2);
|
|
|
|
var result;
|
|
|
|
if (values.length % 2) {
|
|
result = values[half];
|
|
}
|
|
else {
|
|
result = (values[half - 1] + values[half]) / 2.0;
|
|
}
|
|
|
|
// If really close to 2:3 (poster image), just return 2:3
|
|
var aspect2x3 = 2 / 3;
|
|
if (Math.abs(aspect2x3 - result) <= 0.15) {
|
|
return aspect2x3;
|
|
}
|
|
|
|
// If really close to 16:9 (episode image), just return 16:9
|
|
var aspect16x9 = 16 / 9;
|
|
if (Math.abs(aspect16x9 - result) <= 0.2) {
|
|
return aspect16x9;
|
|
}
|
|
|
|
// If really close to 1 (square image), just return 1
|
|
if (Math.abs(1 - result) <= 0.15) {
|
|
return 1;
|
|
}
|
|
|
|
// If really close to 4:3 (poster image), just return 2:3
|
|
var aspect4x3 = 4 / 3;
|
|
if (Math.abs(aspect4x3 - result) <= 0.15) {
|
|
return aspect4x3;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
function fillImages(elems) {
|
|
|
|
for (var i = 0, length = elems.length; i < length; i++) {
|
|
var elem = elems[0];
|
|
fillImage(elem);
|
|
}
|
|
}
|
|
|
|
self.fillImages = fillImages;
|
|
self.lazyImage = fillImage;
|
|
self.lazyChildren = lazyChildren;
|
|
self.getPrimaryImageAspectRatio = getPrimaryImageAspectRatio;
|
|
self.getCachedVibrantInfo = getCachedVibrantInfo;
|
|
|
|
return self;
|
|
}); |