2019-01-10 15:39:37 +03:00
|
|
|
define(['lazyLoader', 'imageFetcher', 'layoutManager', 'browser', 'appSettings', 'require', 'css!./style'], function (lazyLoader, imageFetcher, layoutManager, browser, appSettings, require) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var requestIdleCallback = window.requestIdleCallback || function (fn) {
|
|
|
|
fn();
|
|
|
|
};
|
|
|
|
|
|
|
|
var self = {};
|
|
|
|
|
|
|
|
// seeing slow performance with firefox
|
|
|
|
var enableFade = false;
|
2018-10-23 01:05:09 +03:00
|
|
|
|
|
|
|
function fillImage(elem, source, enableEffects) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
if (!elem) {
|
|
|
|
throw new Error('elem cannot be null');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!source) {
|
|
|
|
source = elem.getAttribute('data-src');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!source) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fillImageElement(elem, source, enableEffects);
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function fillImageElement(elem, source, enableEffects) {
|
2019-01-10 15:39:37 +03:00
|
|
|
imageFetcher.loadImage(elem, source).then(function () {
|
|
|
|
|
|
|
|
var fillingVibrant = false;//fillVibrant(elem, source);
|
|
|
|
|
|
|
|
if (enableFade && enableEffects !== false && !fillingVibrant) {
|
|
|
|
fadeIn(elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
getVibrantInfoFromElement(img, url).then(function (vibrantInfo) {
|
|
|
|
|
|
|
|
var swatch = vibrantInfo.split('|');
|
|
|
|
//console.log('vibrant took ' + (new Date().getTime() - now) + 'ms');
|
|
|
|
if (swatch.length) {
|
|
|
|
|
|
|
|
var index = 0;
|
|
|
|
var style = vibrantElement.style;
|
|
|
|
style.backgroundColor = swatch[index];
|
|
|
|
style.color = swatch[index + 1];
|
|
|
|
|
|
|
|
var classList = vibrantElement.classList;
|
|
|
|
|
|
|
|
if (classList.contains('cardFooter')) {
|
|
|
|
classList.add('cardFooter-vibrant');
|
|
|
|
} else {
|
|
|
|
classList.add('vibrant');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
/*
|
|
|
|
* Results into:
|
|
|
|
* Vibrant #7a4426
|
|
|
|
* Muted #7b9eae
|
|
|
|
* DarkVibrant #348945
|
|
|
|
* DarkMuted #141414
|
|
|
|
* LightVibrant #f3ccb4
|
|
|
|
*/
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getVibrantInfoFromElement(elem, url) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
|
|
|
require(['vibrant'], function () {
|
|
|
|
|
|
|
|
if (elem.tagName === 'IMG') {
|
|
|
|
resolve(getVibrantInfo(elem, url));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var img = new Image();
|
|
|
|
img.onload = function () {
|
|
|
|
resolve(getVibrantInfo(img, url));
|
|
|
|
};
|
|
|
|
img.src = url;
|
|
|
|
});
|
|
|
|
});
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSettingsKey(url) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
var parts = url.split('://');
|
|
|
|
url = parts[parts.length - 1];
|
|
|
|
|
|
|
|
url = url.substring(url.indexOf('/') + 1);
|
|
|
|
|
|
|
|
url = url.split('?')[0];
|
|
|
|
|
|
|
|
var cacheKey = 'vibrant31';
|
|
|
|
//cacheKey = 'vibrant' + new Date().getTime();
|
|
|
|
return cacheKey + url;
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getCachedVibrantInfo(url) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
return appSettings.get(getSettingsKey(url));
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getVibrantInfo(img, url) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
2018-10-23 01:05:09 +03:00
|
|
|
var value = getCachedVibrantInfo(url);
|
2019-01-10 15:39:37 +03:00
|
|
|
if (value) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
var vibrant = new Vibrant(img);
|
|
|
|
var swatches = vibrant.swatches();
|
|
|
|
|
|
|
|
value = '';
|
|
|
|
var swatch = swatches.DarkVibrant;
|
|
|
|
value += getSwatchString(swatch);
|
|
|
|
|
|
|
|
appSettings.set(getSettingsKey(url), value);
|
|
|
|
|
|
|
|
return value;
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSwatchString(swatch) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
if (swatch) {
|
|
|
|
return swatch.getHex() + '|' + swatch.getBodyTextColor() + '|' + swatch.getTitleTextColor();
|
|
|
|
}
|
|
|
|
return '||';
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function fadeIn(elem) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
var cssClass = 'lazy-image-fadein';
|
|
|
|
|
|
|
|
elem.classList.add(cssClass);
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function lazyChildren(elem) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
lazyLoader.lazyChildren(elem, fillImage);
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function getPrimaryImageAspectRatio(items) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
var values = [];
|
|
|
|
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
|
|
|
|
2018-10-23 01:05:09 +03:00
|
|
|
var ratio = items[i].PrimaryImageAspectRatio || 0;
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
if (!ratio) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
values[values.length] = ratio;
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
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;
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function fillImages(elems) {
|
2019-01-10 15:39:37 +03:00
|
|
|
|
2018-10-23 01:05:09 +03:00
|
|
|
for (var i = 0, length = elems.length; i < length; i++) {
|
2019-01-10 15:39:37 +03:00
|
|
|
var elem = elems[0];
|
|
|
|
fillImage(elem);
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 15:39:37 +03:00
|
|
|
|
|
|
|
self.fillImages = fillImages;
|
|
|
|
self.lazyImage = fillImage;
|
|
|
|
self.lazyChildren = lazyChildren;
|
|
|
|
self.getPrimaryImageAspectRatio = getPrimaryImageAspectRatio;
|
|
|
|
self.getCachedVibrantInfo = getCachedVibrantInfo;
|
|
|
|
self.getVibrantInfoFromElement = getVibrantInfoFromElement;
|
|
|
|
|
|
|
|
return self;
|
2018-10-23 01:05:09 +03:00
|
|
|
});
|