2016-04-18 14:00:35 -07:00
|
|
|
|
define(['playlistManager', 'appSettings', 'appStorage', 'apphost', 'jQuery', 'scrollStyles'], function (playlistManager, appSettings, appStorage, appHost, $) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
|
|
|
|
var libraryBrowser = (function (window, document, screen) {
|
|
|
|
|
|
|
|
|
|
// Regular Expressions for parsing tags and attributes
|
|
|
|
|
var SURROGATE_PAIR_REGEXP = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
|
|
|
|
|
// Match everything outside of normal chars and " (quote character)
|
|
|
|
|
NON_ALPHANUMERIC_REGEXP = /([^\#-~| |!])/g;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Escapes all potentially dangerous characters, so that the
|
|
|
|
|
* resulting string can be safely inserted into attribute or
|
|
|
|
|
* element text.
|
|
|
|
|
* @param value
|
|
|
|
|
* @returns {string} escaped text
|
|
|
|
|
*/
|
|
|
|
|
function htmlEncode(value) {
|
|
|
|
|
return value.
|
|
|
|
|
replace(/&/g, '&').
|
|
|
|
|
replace(SURROGATE_PAIR_REGEXP, function (value) {
|
|
|
|
|
var hi = value.charCodeAt(0);
|
|
|
|
|
var low = value.charCodeAt(1);
|
|
|
|
|
return '&#' + (((hi - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000) + ';';
|
|
|
|
|
}).
|
|
|
|
|
replace(NON_ALPHANUMERIC_REGEXP, function (value) {
|
|
|
|
|
return '&#' + value.charCodeAt(0) + ';';
|
|
|
|
|
}).
|
|
|
|
|
replace(/</g, '<').
|
|
|
|
|
replace(/>/g, '>');
|
2016-01-21 14:30:59 -07:00
|
|
|
|
}
|
2013-04-09 21:38:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var pageSizeKey = 'pagesize_v4';
|
2013-05-16 12:00:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
function getDesiredAspect(shape) {
|
2013-05-16 12:00:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (shape) {
|
|
|
|
|
shape = shape.toLowerCase();
|
|
|
|
|
if (shape.indexOf('portrait') != -1) {
|
|
|
|
|
return (2 / 3);
|
|
|
|
|
}
|
|
|
|
|
if (shape.indexOf('backdrop') != -1) {
|
|
|
|
|
return (16 / 9);
|
|
|
|
|
}
|
|
|
|
|
if (shape.indexOf('square') != -1) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2014-09-09 17:28:59 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-09-09 17:28:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var libraryBrowser = {
|
|
|
|
|
getDefaultPageSize: function (key, defaultValue) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return 100;
|
|
|
|
|
var saved = appStorage.getItem(key || pageSizeKey);
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (saved) {
|
|
|
|
|
return parseInt(saved);
|
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (defaultValue) {
|
|
|
|
|
return defaultValue;
|
|
|
|
|
}
|
2015-10-14 21:32:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return 100;
|
|
|
|
|
},
|
2015-10-14 21:32:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getDefaultItemsView: function (view, mobileView) {
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return browserInfo.mobile ? mobileView : view;
|
2013-10-16 19:43:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getSavedQueryKey: function (modifier) {
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return window.location.href.split('#')[0] + (modifier || '');
|
|
|
|
|
},
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
loadSavedQueryValues: function (key, query) {
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var values = appStorage.getItem(key + '_' + Dashboard.getCurrentUserId());
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (values) {
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
values = JSON.parse(values);
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-03-16 14:30:49 -07:00
|
|
|
|
return Object.assign(query, values);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2014-07-03 19:22:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return query;
|
|
|
|
|
},
|
2014-01-14 08:50:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
saveQueryValues: function (key, query) {
|
2014-01-14 08:50:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var values = {};
|
2014-07-02 11:34:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (query.SortBy) {
|
|
|
|
|
values.SortBy = query.SortBy;
|
|
|
|
|
}
|
|
|
|
|
if (query.SortOrder) {
|
|
|
|
|
values.SortOrder = query.SortOrder;
|
|
|
|
|
}
|
2014-01-13 09:25:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
try {
|
|
|
|
|
appStorage.setItem(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values));
|
|
|
|
|
} catch (e) {
|
2015-08-15 11:46:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
},
|
2015-08-15 11:46:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
saveViewSetting: function (key, value) {
|
2015-08-15 11:46:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
try {
|
|
|
|
|
appStorage.setItem(key + '_' + Dashboard.getCurrentUserId() + '_view', value);
|
|
|
|
|
} catch (e) {
|
2014-01-13 09:25:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
},
|
2014-01-13 09:25:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getSavedView: function (key) {
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var val = appStorage.getItem(key + '_' + Dashboard.getCurrentUserId() + '_view');
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return val;
|
|
|
|
|
},
|
2015-06-30 10:21:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getSavedViewSetting: function (key) {
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var val = LibraryBrowser.getSavedView(key);
|
|
|
|
|
resolve(val);
|
|
|
|
|
});
|
|
|
|
|
},
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
needsRefresh: function (elem) {
|
2015-06-30 10:21:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var last = parseInt(elem.getAttribute('data-lastrefresh') || '0');
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!last) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
//if (NavHelper.isBack()) {
|
|
|
|
|
// console.log('Not refreshing data because IsBack=true');
|
|
|
|
|
// return false;
|
|
|
|
|
//}
|
2015-06-30 10:21:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var now = new Date().getTime();
|
|
|
|
|
var cacheDuration;
|
2015-06-29 22:45:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (AppInfo.isNativeApp) {
|
|
|
|
|
cacheDuration = 300000;
|
|
|
|
|
} else if (browserInfo.ipad || browserInfo.iphone || browserInfo.android) {
|
|
|
|
|
cacheDuration = 10000;
|
|
|
|
|
} else {
|
|
|
|
|
cacheDuration = 30000;
|
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if ((now - last) < cacheDuration) {
|
|
|
|
|
console.log('Not refreshing data due to age');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return true;
|
|
|
|
|
},
|
2015-09-07 18:00:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
setLastRefreshed: function (elem) {
|
2015-09-07 18:00:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.setAttribute('data-lastrefresh', new Date().getTime());
|
|
|
|
|
elem.classList.add('hasrefreshtime');
|
|
|
|
|
},
|
2015-09-07 18:00:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
enableFullPaperTabs: function () {
|
2015-09-07 18:00:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (browserInfo.animate && !browserInfo.mobile) {
|
|
|
|
|
//return true;
|
|
|
|
|
}
|
2016-03-18 21:05:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return AppInfo.isNativeApp;
|
|
|
|
|
},
|
2015-09-03 12:27:48 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
allowSwipe: function (target) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
function allowSwipeOn(elem) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (elem.tagName == 'PAPER-SLIDER') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (elem.classList) {
|
|
|
|
|
return !elem.classList.contains('hiddenScrollX') && !elem.classList.contains('smoothScrollX');
|
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var parent = target;
|
|
|
|
|
while (parent != null) {
|
|
|
|
|
if (!allowSwipeOn(parent)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
parent = parent.parentNode;
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return true;
|
|
|
|
|
},
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getTabsAnimationConfig: function (elem, reverse) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (browserInfo.mobile) {
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return {
|
|
|
|
|
// scale up
|
|
|
|
|
'entry': {
|
|
|
|
|
name: 'fade-in-animation',
|
|
|
|
|
node: elem,
|
|
|
|
|
timing: { duration: 160, easing: 'ease-out' }
|
|
|
|
|
},
|
|
|
|
|
// fade out
|
|
|
|
|
'exit': {
|
|
|
|
|
name: 'fade-out-animation',
|
|
|
|
|
node: elem,
|
|
|
|
|
timing: { duration: 200, easing: 'ease-out' }
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
selectedTab: function (pageTabsContainer, selected) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
if (selected == null) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
return pageTabsContainer.selectedTabIndex;
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var tabs = pageTabsContainer.querySelectorAll('.pageTabContent');
|
|
|
|
|
for (var i = 0, length = tabs.length; i < length; i++) {
|
|
|
|
|
if (i == selected) {
|
|
|
|
|
tabs[i].classList.remove('hide');
|
|
|
|
|
} else {
|
|
|
|
|
tabs[i].classList.add('hide');
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}
|
2016-03-24 11:11:03 -07:00
|
|
|
|
pageTabsContainer.selectedTabIndex = selected;
|
|
|
|
|
pageTabsContainer.dispatchEvent(new CustomEvent("tabchange", {
|
|
|
|
|
detail: {
|
|
|
|
|
selectedTabIndex: selected
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
},
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
configureSwipeTabs: function (ownerpage, tabs, pageTabsContainer) {
|
|
|
|
|
|
|
|
|
|
var pageCount = pageTabsContainer.querySelectorAll('.pageTabContent').length;
|
2015-09-23 19:31:40 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['hammer'], function (Hammer) {
|
2015-09-01 12:18:25 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var hammertime = new Hammer(pageTabsContainer);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hammertime.get('swipe').set({ direction: Hammer.DIRECTION_HORIZONTAL });
|
2015-09-01 12:18:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hammertime.on('swipeleft', function (e) {
|
|
|
|
|
if (LibraryBrowser.allowSwipe(e.target)) {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var selected = parseInt(LibraryBrowser.selectedTab(pageTabsContainer) || '0');
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (selected < (pageCount - 1)) {
|
|
|
|
|
tabs.selectNext();
|
2015-09-07 18:00:46 -07:00
|
|
|
|
}
|
2015-09-01 12:18:25 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
2015-09-01 12:18:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hammertime.on('swiperight', function (e) {
|
|
|
|
|
if (LibraryBrowser.allowSwipe(e.target)) {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var selected = parseInt(LibraryBrowser.selectedTab(pageTabsContainer) || '0');
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (selected > 0) {
|
|
|
|
|
tabs.selectPrevious();
|
2015-09-07 18:00:46 -07:00
|
|
|
|
}
|
2015-09-01 12:18:25 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
2015-09-01 12:18:25 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
navigateOnLibraryTabSelect: function () {
|
|
|
|
|
return !LibraryBrowser.enableFullPaperTabs();
|
|
|
|
|
},
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
configurePaperLibraryTabs: function (ownerpage, tabs, pageTabsContainer) {
|
2015-09-01 08:31:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// Causing iron-select to not fire in IE and safari
|
|
|
|
|
if (browserInfo.chrome) {
|
|
|
|
|
tabs.noink = true;
|
|
|
|
|
}
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var libraryViewNav = ownerpage.querySelector('.libraryViewNav');
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.enableFullPaperTabs()) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (browserInfo.safari) {
|
|
|
|
|
tabs.noSlide = true;
|
|
|
|
|
tabs.noBar = true;
|
|
|
|
|
} else {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
LibraryBrowser.configureSwipeTabs(ownerpage, tabs, pageTabsContainer);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (libraryViewNav) {
|
|
|
|
|
libraryViewNav.classList.add('paperLibraryViewNav');
|
|
|
|
|
libraryViewNav.classList.remove('libraryViewNavWithMinHeight');
|
|
|
|
|
}
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
tabs.noSlide = true;
|
|
|
|
|
tabs.noBar = true;
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var legacyTabs = ownerpage.querySelector('.legacyTabs');
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (legacyTabs) {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
pageTabsContainer.addEventListener('tabchange', function (e) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var selected = e.detail.selectedTabIndex;
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var anchors = legacyTabs.querySelectorAll('a');
|
|
|
|
|
for (var i = 0, length = anchors.length; i < length; i++) {
|
|
|
|
|
if (i == selected) {
|
|
|
|
|
anchors[i].classList.add('ui-btn-active');
|
|
|
|
|
} else {
|
|
|
|
|
anchors[i].classList.remove('ui-btn-active');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (libraryViewNav) {
|
|
|
|
|
libraryViewNav.classList.remove('libraryViewNavWithMinHeight');
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
ownerpage.addEventListener('viewbeforeshow', LibraryBrowser.onTabbedpagebeforeshow);
|
2015-07-12 12:33:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!LibraryBrowser.navigateOnLibraryTabSelect()) {
|
|
|
|
|
tabs.addEventListener('iron-select', function () {
|
2015-09-21 08:43:10 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
LibraryBrowser.selectedTab(pageTabsContainer, this.selected);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
onTabbedpagebeforeshow: function (e) {
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
var page = e.target;
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var delay = 0;
|
|
|
|
|
var isFirstLoad = false;
|
2015-09-01 07:01:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!page.getAttribute('data-firstload')) {
|
|
|
|
|
delay = 300;
|
|
|
|
|
isFirstLoad = true;
|
|
|
|
|
page.setAttribute('data-firstload', '1');
|
|
|
|
|
}
|
2015-09-01 07:01:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (delay) {
|
|
|
|
|
setTimeout(function () {
|
2015-09-01 07:01:59 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
LibraryBrowser.onTabbedpagebeforeshowInternal(page, e, isFirstLoad);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}, delay);
|
|
|
|
|
} else {
|
2016-03-15 22:33:31 -07:00
|
|
|
|
LibraryBrowser.onTabbedpagebeforeshowInternal(page, e, isFirstLoad);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
},
|
2015-09-01 07:01:59 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
onTabbedpagebeforeshowInternal: function (page, e, isFirstLoad) {
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var pageTabsContainer = page.querySelector('.pageTabsContainer');
|
2016-03-15 23:07:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isFirstLoad) {
|
2015-07-05 11:34:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
console.log('selected tab is null, checking query string');
|
2015-07-05 11:34:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var selected = parseInt(getParameterByName('tab') || '0');
|
2015-07-05 11:34:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
console.log('selected tab will be ' + selected);
|
2015-07-05 11:34:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.enableFullPaperTabs()) {
|
2015-09-01 08:31:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var tabs = page.querySelector('paper-tabs');
|
|
|
|
|
if (tabs.selected) {
|
|
|
|
|
// showTab was called
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tabs.selected = selected;
|
|
|
|
|
|
|
|
|
|
} else {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
LibraryBrowser.selectedTab(pageTabsContainer, selected);
|
2015-09-07 21:22:38 -07:00
|
|
|
|
}
|
2015-09-01 08:31:50 -07:00
|
|
|
|
|
2015-08-25 08:08:04 -07:00
|
|
|
|
} else {
|
2015-09-01 08:40:36 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// Go back to the first tab
|
2016-03-15 22:33:31 -07:00
|
|
|
|
if (LibraryBrowser.enableFullPaperTabs() && !e.detail.isRestored) {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
if (LibraryBrowser.selectedTab(pageTabsContainer)) {
|
2015-08-27 21:19:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
page.querySelector('paper-tabs').selected = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-08-27 21:19:08 -07:00
|
|
|
|
}
|
2016-03-24 11:11:03 -07:00
|
|
|
|
pageTabsContainer.dispatchEvent(new CustomEvent("tabchange", {
|
|
|
|
|
detail: {
|
2016-03-25 19:37:18 -07:00
|
|
|
|
selectedTabIndex: LibraryBrowser.selectedTab(pageTabsContainer)
|
2016-03-24 11:11:03 -07:00
|
|
|
|
}
|
|
|
|
|
}));
|
2015-08-27 21:19:08 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
showTab: function (url, index) {
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!LibraryBrowser.enableFullPaperTabs()) {
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (index) {
|
|
|
|
|
url = replaceQueryString(url, 'tab', index);
|
|
|
|
|
}
|
|
|
|
|
Dashboard.navigate(url);
|
|
|
|
|
return;
|
2015-08-28 08:02:22 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var afterNavigate = function () {
|
2016-03-16 22:04:32 -07:00
|
|
|
|
|
|
|
|
|
document.removeEventListener('pagebeforeshow', afterNavigate);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (window.location.href.toLowerCase().indexOf(url.toLowerCase()) != -1) {
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
var pageTabsContainer = this.querySelector('.pageTabsContainer');
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-03-24 11:11:03 -07:00
|
|
|
|
if (pageTabsContainer) {
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var tabs = this.querySelector('paper-tabs');
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// For some reason the live tv page will not switch tabs in IE and safari
|
|
|
|
|
var delay = browserInfo.chrome ? 0 : 100;
|
2015-09-24 10:08:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
setTimeout(function () {
|
|
|
|
|
var noSlide = tabs.noSlide;
|
|
|
|
|
tabs.noSlide = true;
|
|
|
|
|
tabs.selected = index;
|
|
|
|
|
tabs.noSlide = noSlide;
|
2015-09-24 10:08:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}, delay);
|
|
|
|
|
}
|
2015-08-28 08:02:22 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
};
|
2015-08-28 10:39:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (window.location.href.toLowerCase().indexOf(url.toLowerCase()) != -1) {
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-03-16 14:30:49 -07:00
|
|
|
|
afterNavigate.call($.mobile.activePage);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
2016-03-16 22:04:32 -07:00
|
|
|
|
pageClassOn('pagebeforeshow', 'page', afterNavigate);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
Dashboard.navigate(url);
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
canShare: function (item, user) {
|
2015-07-01 22:08:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return user.Policy.EnablePublicSharing;
|
|
|
|
|
},
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getDateParamValue: function (date) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
function formatDigit(i) {
|
|
|
|
|
return i < 10 ? "0" + i : i;
|
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var d = date;
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return "" + d.getFullYear() + formatDigit(d.getMonth() + 1) + formatDigit(d.getDate()) + formatDigit(d.getHours()) + formatDigit(d.getMinutes()) + formatDigit(d.getSeconds());
|
|
|
|
|
},
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
playAllFromHere: function (fn, index) {
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
fn(index, 100, "MediaSources,Chapters").then(function (result) {
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
MediaController.play({
|
|
|
|
|
items: result.Items
|
|
|
|
|
});
|
2014-08-21 08:55:35 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
queueAllFromHere: function (query, index) {
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
fn(index, 100, "MediaSources,Chapters").then(function (result) {
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
MediaController.queue({
|
|
|
|
|
items: result.Items
|
|
|
|
|
});
|
2014-08-21 08:55:35 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getItemCountsHtml: function (options, item) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var counts = [];
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var childText;
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Playlist') {
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = '';
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CumulativeRunTimeTicks) {
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var minutes = item.CumulativeRunTimeTicks / 600000000;
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
minutes = minutes || 1;
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText += Globalize.translate('ValueMinutes', Math.round(minutes));
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
childText += Globalize.translate('ValueMinutes', 0);
|
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
else if (options.context == "movies") {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MovieCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.MovieCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneMovie') :
|
|
|
|
|
Globalize.translate('ValueMovieCount', item.MovieCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
|
|
|
|
if (item.TrailerCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.TrailerCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneTrailer') :
|
|
|
|
|
Globalize.translate('ValueTrailerCount', item.TrailerCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.context == "tv") {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SeriesCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.SeriesCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneSeries') :
|
|
|
|
|
Globalize.translate('ValueSeriesCount', item.SeriesCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
|
|
|
|
if (item.EpisodeCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.EpisodeCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneEpisode') :
|
|
|
|
|
Globalize.translate('ValueEpisodeCount', item.EpisodeCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.context == "games") {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.GameCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.GameCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneGame') :
|
|
|
|
|
Globalize.translate('ValueGameCount', item.GameCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
|
|
|
|
} else if (options.context == "music") {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.AlbumCount) {
|
2013-09-18 16:33:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.AlbumCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneAlbum') :
|
|
|
|
|
Globalize.translate('ValueAlbumCount', item.AlbumCount);
|
2013-09-18 16:33:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
|
|
|
|
if (item.SongCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.SongCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneSong') :
|
|
|
|
|
Globalize.translate('ValueSongCount', item.SongCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
|
|
|
|
if (item.MusicVideoCount) {
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
childText = item.MusicVideoCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneMusicVideo') :
|
|
|
|
|
Globalize.translate('ValueMusicVideoCount', item.MusicVideoCount);
|
2013-09-10 13:23:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
counts.push(childText);
|
|
|
|
|
}
|
2013-09-10 11:56:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return counts.join(' • ');
|
|
|
|
|
},
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getArtistLinksHtml: function (artists, cssClass) {
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = [];
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = artists.length; i < length; i++) {
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var artist = artists[i];
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var css = cssClass ? (' class="' + cssClass + '"') : '';
|
|
|
|
|
html.push('<a' + css + ' href="itemdetails.html?id=' + artist.Id + '">' + artist.Name + '</a>');
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html = html.join(' / ');
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2015-03-13 08:54:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
playInExternalPlayer: function (id) {
|
2015-06-02 10:46:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
Dashboard.loadExternalPlayer().then(function () {
|
|
|
|
|
ExternalPlayer.showMenu(id);
|
|
|
|
|
});
|
|
|
|
|
},
|
2015-05-25 10:32:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
showPlayMenu: function (positionTo, itemId, itemType, isFolder, mediaType, resumePositionTicks) {
|
2013-05-23 18:47:07 -07:00
|
|
|
|
|
2016-02-29 23:02:03 -07:00
|
|
|
|
var externalPlayers = AppInfo.supportsExternalPlayers && appSettings.enableExternalPlayers();
|
2014-09-15 20:33:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!resumePositionTicks && mediaType != "Audio" && !isFolder) {
|
2014-09-15 20:33:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!externalPlayers || mediaType != "Video") {
|
2016-02-12 13:26:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
MediaController.play(itemId);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-09-15 20:33:30 -07:00
|
|
|
|
}
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var menuItems = [];
|
2014-09-15 20:33:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (resumePositionTicks) {
|
|
|
|
|
menuItems.push({
|
|
|
|
|
name: Globalize.translate('ButtonResume'),
|
|
|
|
|
id: 'resume',
|
|
|
|
|
ironIcon: 'play-arrow'
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-06-19 15:01:47 -07:00
|
|
|
|
|
|
|
|
|
menuItems.push({
|
2016-02-17 19:55:15 -07:00
|
|
|
|
name: Globalize.translate('ButtonPlay'),
|
|
|
|
|
id: 'play',
|
|
|
|
|
ironIcon: 'play-arrow'
|
2015-06-19 15:01:47 -07:00
|
|
|
|
});
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!isFolder && externalPlayers && mediaType != "Audio") {
|
|
|
|
|
menuItems.push({
|
|
|
|
|
name: Globalize.translate('ButtonPlayExternalPlayer'),
|
|
|
|
|
id: 'externalplayer',
|
|
|
|
|
ironIcon: 'airplay'
|
|
|
|
|
});
|
|
|
|
|
}
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (MediaController.canQueueMediaType(mediaType, itemType)) {
|
|
|
|
|
menuItems.push({
|
|
|
|
|
name: Globalize.translate('ButtonQueue'),
|
|
|
|
|
id: 'queue',
|
|
|
|
|
ironIcon: 'playlist-add'
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-06-28 12:35:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (itemType == "Audio" || itemType == "MusicAlbum" || itemType == "MusicArtist" || itemType == "MusicGenre") {
|
|
|
|
|
menuItems.push({
|
|
|
|
|
name: Globalize.translate('ButtonInstantMix'),
|
|
|
|
|
id: 'instantmix',
|
|
|
|
|
ironIcon: 'shuffle'
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isFolder || itemType == "MusicArtist" || itemType == "MusicGenre") {
|
|
|
|
|
menuItems.push({
|
|
|
|
|
name: Globalize.translate('ButtonShuffle'),
|
|
|
|
|
id: 'shuffle',
|
|
|
|
|
ironIcon: 'shuffle'
|
|
|
|
|
});
|
|
|
|
|
}
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['actionsheet'], function (actionsheet) {
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
actionsheet.show({
|
|
|
|
|
items: menuItems,
|
|
|
|
|
positionTo: positionTo,
|
|
|
|
|
callback: function (id) {
|
2015-10-18 14:41:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
switch (id) {
|
2015-10-18 14:41:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
case 'play':
|
|
|
|
|
MediaController.play(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'externalplayer':
|
|
|
|
|
LibraryBrowser.playInExternalPlayer(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'resume':
|
|
|
|
|
MediaController.play({
|
|
|
|
|
ids: [itemId],
|
|
|
|
|
startPositionTicks: resumePositionTicks
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
case 'queue':
|
|
|
|
|
MediaController.queue(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'instantmix':
|
|
|
|
|
MediaController.instantMix(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'shuffle':
|
|
|
|
|
MediaController.shuffle(itemId);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
2015-10-18 14:41:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
|
|
|
|
},
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
supportsEditing: function (itemType) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (itemType == "UserRootFolder" || /*itemType == "CollectionFolder" ||*/ itemType == "UserView") {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return true;
|
|
|
|
|
},
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getMoreCommands: function (item, user) {
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var commands = [];
|
2015-09-16 21:19:15 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.supportsAddingToCollection(item)) {
|
|
|
|
|
commands.push('addtocollection');
|
2015-10-18 14:41:39 -07:00
|
|
|
|
}
|
2015-09-16 21:19:15 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (playlistManager.supportsPlaylists(item)) {
|
|
|
|
|
commands.push('playlist');
|
2015-09-16 21:19:15 -07:00
|
|
|
|
}
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'BoxSet' || item.Type == 'Playlist') {
|
|
|
|
|
commands.push('delete');
|
|
|
|
|
}
|
|
|
|
|
else if (item.CanDelete) {
|
|
|
|
|
commands.push('delete');
|
|
|
|
|
}
|
2015-12-18 10:33:02 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (user.Policy.IsAdministrator) {
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.supportsEditing(item.Type)) {
|
|
|
|
|
commands.push('edit');
|
|
|
|
|
}
|
2014-12-10 23:20:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == 'Video' && item.Type != 'TvChannel' && item.Type != 'Program' && item.LocationType != 'Virtual') {
|
|
|
|
|
commands.push('editsubtitles');
|
|
|
|
|
}
|
|
|
|
|
commands.push('editimages');
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2015-12-18 10:29:04 -07:00
|
|
|
|
if (user.Policy.IsAdministrator) {
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
commands.push('refresh');
|
2015-12-18 10:29:04 -07:00
|
|
|
|
}
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2016-02-17 21:57:19 -07:00
|
|
|
|
if (LibraryBrowser.enableSync(item, user)) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
commands.push('sync');
|
|
|
|
|
}
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CanDownload) {
|
2016-04-17 22:58:08 -07:00
|
|
|
|
if (appHost.supports('filedownload')) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
commands.push('download');
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.canShare(item, user)) {
|
|
|
|
|
commands.push('share');
|
|
|
|
|
}
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Movie" ||
|
|
|
|
|
item.Type == "Trailer" ||
|
|
|
|
|
item.Type == "Series" ||
|
|
|
|
|
item.Type == "Game" ||
|
|
|
|
|
item.Type == "BoxSet" ||
|
|
|
|
|
item.Type == "Person" ||
|
|
|
|
|
item.Type == "Book" ||
|
|
|
|
|
item.Type == "MusicAlbum" ||
|
|
|
|
|
item.Type == "MusicArtist") {
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (user.Policy.IsAdministrator) {
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
commands.push('identify');
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return commands;
|
|
|
|
|
},
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
refreshItem: function (itemId) {
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
ApiClient.refreshItem(itemId, {
|
2016-01-19 12:03:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
Recursive: true,
|
|
|
|
|
ImageRefreshMode: 'FullRefresh',
|
|
|
|
|
MetadataRefreshMode: 'FullRefresh',
|
|
|
|
|
ReplaceAllImages: false,
|
|
|
|
|
ReplaceAllMetadata: true
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-24 23:38:12 -07:00
|
|
|
|
require(['toast'], function (toast) {
|
|
|
|
|
toast(Globalize.translate('MessageRefreshQueued'));
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
deleteItems: function (itemIds) {
|
2016-01-19 12:03:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2016-01-19 12:03:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var msg = Globalize.translate('ConfirmDeleteItem');
|
|
|
|
|
var title = Globalize.translate('HeaderDeleteItem');
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (itemIds.length > 1) {
|
|
|
|
|
msg = Globalize.translate('ConfirmDeleteItems');
|
|
|
|
|
title = Globalize.translate('HeaderDeleteItems');
|
|
|
|
|
}
|
2015-09-17 09:04:04 -07:00
|
|
|
|
|
2016-02-22 12:31:28 -07:00
|
|
|
|
require(['confirm'], function (confirm) {
|
2015-09-17 09:04:04 -07:00
|
|
|
|
|
2016-02-22 12:31:28 -07:00
|
|
|
|
confirm(msg, title).then(function () {
|
2015-09-17 09:04:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var promises = itemIds.map(function (itemId) {
|
|
|
|
|
ApiClient.deleteItem(itemId);
|
|
|
|
|
Events.trigger(LibraryBrowser, 'itemdeleting', [itemId]);
|
|
|
|
|
});
|
2015-09-16 18:33:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
resolve();
|
2016-02-22 12:31:28 -07:00
|
|
|
|
}, reject);
|
2015-09-16 18:33:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
2015-09-16 18:33:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
editImages: function (itemId) {
|
2015-09-19 19:06:56 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['components/imageeditor/imageeditor'], function (ImageEditor) {
|
2016-01-06 09:38:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
ImageEditor.show(itemId);
|
|
|
|
|
});
|
|
|
|
|
},
|
2015-09-19 19:06:56 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
editSubtitles: function (itemId) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['components/subtitleeditor/subtitleeditor'], function (SubtitleEditor) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
SubtitleEditor.show(itemId);
|
2015-06-19 11:34:21 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
editMetadata: function (itemId) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['components/metadataeditor/metadataeditor'], function (metadataeditor) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
metadataeditor.show(itemId);
|
2015-02-05 22:39:07 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
showMoreCommands: function (positionTo, itemId, commands) {
|
2015-02-05 22:39:07 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var items = [];
|
2015-09-17 09:04:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (commands.indexOf('addtocollection') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonAddToCollection'),
|
|
|
|
|
id: 'addtocollection',
|
|
|
|
|
ironIcon: 'add'
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-09-16 18:33:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (commands.indexOf('playlist') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonAddToPlaylist'),
|
|
|
|
|
id: 'playlist',
|
|
|
|
|
ironIcon: 'playlist-add'
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (commands.indexOf('delete') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonDelete'),
|
|
|
|
|
id: 'delete',
|
|
|
|
|
ironIcon: 'delete'
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-10-06 16:58:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (commands.indexOf('download') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonDownload'),
|
|
|
|
|
id: 'download',
|
|
|
|
|
ironIcon: 'file-download'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('edit') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonEdit'),
|
|
|
|
|
id: 'edit',
|
|
|
|
|
ironIcon: 'mode-edit'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('editimages') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonEditImages'),
|
|
|
|
|
id: 'editimages',
|
|
|
|
|
ironIcon: 'photo'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('editsubtitles') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonEditSubtitles'),
|
|
|
|
|
id: 'editsubtitles',
|
|
|
|
|
ironIcon: 'closed-caption'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('identify') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonIdentify'),
|
|
|
|
|
id: 'identify',
|
|
|
|
|
ironIcon: 'info'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('refresh') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonRefresh'),
|
|
|
|
|
id: 'refresh',
|
|
|
|
|
ironIcon: 'refresh'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (commands.indexOf('share') != -1) {
|
|
|
|
|
items.push({
|
|
|
|
|
name: Globalize.translate('ButtonShare'),
|
|
|
|
|
id: 'share',
|
|
|
|
|
ironIcon: 'share'
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-09-05 09:58:27 -07:00
|
|
|
|
|
2016-04-27 21:53:11 -07:00
|
|
|
|
var serverId = ApiClient.serverInfo().Id;
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['actionsheet'], function (actionsheet) {
|
|
|
|
|
|
|
|
|
|
actionsheet.show({
|
|
|
|
|
items: items,
|
|
|
|
|
positionTo: positionTo,
|
|
|
|
|
callback: function (id) {
|
|
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
|
|
|
|
|
|
case 'share':
|
2016-04-27 19:46:41 -07:00
|
|
|
|
require(['sharingmanager'], function (sharingManager) {
|
2016-04-27 21:53:11 -07:00
|
|
|
|
sharingManager.showMenu({
|
|
|
|
|
serverId: serverId,
|
|
|
|
|
itemId: itemId
|
|
|
|
|
});
|
2015-06-19 11:34:21 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
break;
|
|
|
|
|
case 'addtocollection':
|
|
|
|
|
require(['collectioneditor'], function (collectioneditor) {
|
2015-06-19 11:34:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
new collectioneditor().show([itemId]);
|
|
|
|
|
});
|
2015-06-19 11:34:21 -07:00
|
|
|
|
break;
|
2016-02-17 19:55:15 -07:00
|
|
|
|
case 'playlist':
|
|
|
|
|
require(['playlistManager'], function (playlistManager) {
|
|
|
|
|
|
|
|
|
|
playlistManager.showPanel([itemId]);
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
case 'delete':
|
|
|
|
|
LibraryBrowser.deleteItems([itemId]);
|
|
|
|
|
break;
|
|
|
|
|
case 'download':
|
|
|
|
|
{
|
2016-03-29 12:08:10 -07:00
|
|
|
|
require(['fileDownloader'], function (fileDownloader) {
|
|
|
|
|
|
|
|
|
|
var downloadHref = ApiClient.getUrl("Items/" + itemId + "/Download", {
|
|
|
|
|
api_key: ApiClient.accessToken()
|
|
|
|
|
});
|
|
|
|
|
|
2016-04-17 22:58:08 -07:00
|
|
|
|
fileDownloader.download([
|
|
|
|
|
{
|
2016-03-29 12:08:10 -07:00
|
|
|
|
url: downloadHref,
|
2016-04-27 21:53:11 -07:00
|
|
|
|
itemId: itemId,
|
|
|
|
|
serverId: serverId
|
2016-03-29 12:08:10 -07:00
|
|
|
|
}]);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'edit':
|
|
|
|
|
LibraryBrowser.editMetadata(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'editsubtitles':
|
|
|
|
|
LibraryBrowser.editSubtitles(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'editimages':
|
|
|
|
|
LibraryBrowser.editImages(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'identify':
|
|
|
|
|
LibraryBrowser.identifyItem(itemId);
|
|
|
|
|
break;
|
|
|
|
|
case 'refresh':
|
|
|
|
|
ApiClient.refreshItem(itemId, {
|
|
|
|
|
|
|
|
|
|
Recursive: true,
|
|
|
|
|
ImageRefreshMode: 'FullRefresh',
|
|
|
|
|
MetadataRefreshMode: 'FullRefresh',
|
|
|
|
|
ReplaceAllImages: false,
|
|
|
|
|
ReplaceAllMetadata: true
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-06-19 11:34:21 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
|
|
|
|
|
2014-10-06 16:58:46 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-06-19 11:34:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
identifyItem: function (itemId) {
|
2014-08-07 21:36:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['components/itemidentifier/itemidentifier'], function (itemidentifier) {
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
itemidentifier.show(itemId);
|
|
|
|
|
});
|
|
|
|
|
},
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getHref: function (item, context, topParentId) {
|
2015-10-04 09:15:08 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var href = LibraryBrowser.getHrefInternal(item, context);
|
2013-04-30 10:21:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (context == 'tv') {
|
|
|
|
|
if (!topParentId) {
|
|
|
|
|
topParentId = LibraryMenu.getTopParentId();
|
|
|
|
|
}
|
2014-05-29 12:34:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (topParentId) {
|
|
|
|
|
href += href.indexOf('?') == -1 ? "?topParentId=" : "&topParentId=";
|
|
|
|
|
href += topParentId;
|
|
|
|
|
}
|
2015-09-21 18:05:33 -07:00
|
|
|
|
}
|
2014-07-16 20:17:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return href;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getHrefInternal: function (item, context) {
|
|
|
|
|
|
|
|
|
|
if (!item) {
|
|
|
|
|
throw new Error('item cannot be null');
|
2015-09-21 18:05:33 -07:00
|
|
|
|
}
|
2014-07-16 20:17:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.url) {
|
|
|
|
|
return item.url;
|
|
|
|
|
}
|
2014-05-29 12:34:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// Handle search hints
|
|
|
|
|
var id = item.Id || item.ItemId;
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'livetv') {
|
|
|
|
|
return 'livetv.html';
|
|
|
|
|
}
|
2014-05-04 17:46:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'channels') {
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return 'channels.html';
|
|
|
|
|
}
|
2013-04-27 06:05:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (context != 'folders') {
|
|
|
|
|
if (item.CollectionType == 'movies') {
|
|
|
|
|
return 'movies.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
2014-06-07 12:46:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'boxsets') {
|
|
|
|
|
return 'collections.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
2015-05-07 07:04:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'tvshows') {
|
|
|
|
|
return 'tv.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
2014-06-07 12:46:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'music') {
|
|
|
|
|
return 'music.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
2014-06-07 12:46:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CollectionType == 'games') {
|
|
|
|
|
return 'gamesrecommended.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
|
|
|
|
if (item.CollectionType == 'playlists') {
|
|
|
|
|
return 'playlists.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
|
|
|
|
if (item.CollectionType == 'photos') {
|
|
|
|
|
return 'photos.html?topParentId=' + item.Id;
|
|
|
|
|
}
|
2014-08-14 06:24:30 -07:00
|
|
|
|
}
|
2016-04-15 12:20:04 -07:00
|
|
|
|
else if (item.IsFolder) {
|
|
|
|
|
return id ? "itemlist.html?parentId=" + id : "#";
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'CollectionFolder') {
|
2016-03-18 12:43:17 -07:00
|
|
|
|
return 'itemlist.html?topParentId=' + item.Id + '&parentId=' + item.Id;
|
2014-08-14 06:24:30 -07:00
|
|
|
|
}
|
2014-05-06 19:28:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "PhotoAlbum") {
|
|
|
|
|
return "itemlist.html?context=photos&parentId=" + id;
|
2014-08-14 06:24:30 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Playlist") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
2014-08-14 06:24:30 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "TvChannel") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
2014-08-14 06:24:30 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Channel") {
|
|
|
|
|
return "channelitems.html?id=" + id;
|
|
|
|
|
}
|
2016-03-19 08:38:05 -07:00
|
|
|
|
if ((item.IsFolder && item.SourceType == 'Channel') || item.Type == 'ChannelFolderItem') {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return "channelitems.html?id=" + item.ChannelId + '&folderId=' + item.Id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "Program") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
2015-04-19 08:54:20 -07:00
|
|
|
|
}
|
2014-05-06 19:28:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "BoxSet") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "MusicAlbum") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "GameSystem") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "Genre") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "MusicGenre") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "GameGenre") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "Studio") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "Person") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
|
|
|
|
if (item.Type == "Recording") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
2015-08-20 20:21:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "MusicArtist") {
|
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
}
|
2013-11-26 09:22:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var contextSuffix = context ? ('&context=' + context) : '';
|
2015-08-20 20:21:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Series" || item.Type == "Season" || item.Type == "Episode") {
|
|
|
|
|
return "itemdetails.html?id=" + id + contextSuffix;
|
|
|
|
|
}
|
2015-08-20 20:21:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsFolder) {
|
|
|
|
|
return id ? "itemlist.html?parentId=" + id : "#";
|
|
|
|
|
}
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return "itemdetails.html?id=" + id;
|
|
|
|
|
},
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getImageUrl: function (item, type, index, options) {
|
2013-04-12 07:13:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
options = options || {};
|
|
|
|
|
options.type = type;
|
|
|
|
|
options.index = index;
|
2013-04-11 20:50:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (type == 'Backdrop') {
|
|
|
|
|
options.tag = item.BackdropImageTags[index];
|
|
|
|
|
} else if (type == 'Screenshot') {
|
|
|
|
|
options.tag = item.ScreenshotImageTags[index];
|
|
|
|
|
} else if (type == 'Primary') {
|
|
|
|
|
options.tag = item.PrimaryImageTag || item.ImageTags[type];
|
|
|
|
|
} else {
|
|
|
|
|
options.tag = item.ImageTags[type];
|
|
|
|
|
}
|
2013-04-21 21:38:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// For search hints
|
|
|
|
|
return ApiClient.getScaledImageUrl(item.Id || item.ItemId, options);
|
2013-04-12 07:13:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-11 20:50:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getListViewIndex: function (item, options) {
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.index == 'disc') {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return item.ParentIndexNumber == null ? '' : Globalize.translate('ValueDiscNumber', item.ParentIndexNumber);
|
|
|
|
|
}
|
2014-08-16 22:38:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var sortBy = (options.sortBy || '').toLowerCase();
|
|
|
|
|
var code, name;
|
2014-08-16 22:38:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (sortBy.indexOf('sortname') == 0) {
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Episode') return '';
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// SortName
|
|
|
|
|
name = (item.SortName || item.Name || '?')[0].toUpperCase();
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
code = name.charCodeAt(0);
|
|
|
|
|
if (code < 65 || code > 90) {
|
|
|
|
|
return '#';
|
|
|
|
|
}
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return name.toUpperCase();
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (sortBy.indexOf('officialrating') == 0) {
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return item.OfficialRating || Globalize.translate('HeaderUnrated');
|
|
|
|
|
}
|
|
|
|
|
if (sortBy.indexOf('communityrating') == 0) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CommunityRating == null) {
|
|
|
|
|
return Globalize.translate('HeaderUnrated');
|
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return Math.floor(item.CommunityRating);
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (sortBy.indexOf('criticrating') == 0) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CriticRating == null) {
|
|
|
|
|
return Globalize.translate('HeaderUnrated');
|
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return Math.floor(item.CriticRating);
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (sortBy.indexOf('metascore') == 0) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Metascore == null) {
|
|
|
|
|
return Globalize.translate('HeaderUnrated');
|
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return Math.floor(item.Metascore);
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (sortBy.indexOf('albumartist') == 0) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// SortName
|
|
|
|
|
if (!item.AlbumArtist) return '';
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
name = item.AlbumArtist[0].toUpperCase();
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
code = name.charCodeAt(0);
|
|
|
|
|
if (code < 65 || code > 90) {
|
|
|
|
|
return '#';
|
|
|
|
|
}
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return name.toUpperCase();
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '';
|
|
|
|
|
},
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getUserDataCssClass: function (key) {
|
2014-09-29 21:47:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!key) return '';
|
2014-10-04 11:05:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return 'libraryItemUserData' + key.replace(new RegExp(' ', 'g'), '');
|
|
|
|
|
},
|
2014-07-26 10:30:15 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getListViewHtml: function (options) {
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['paper-icon-item', 'paper-item-body']);
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var outerHtml = "";
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.title) {
|
|
|
|
|
outerHtml += '<h1>';
|
|
|
|
|
outerHtml += options.title;
|
|
|
|
|
outerHtml += '</h1>';
|
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
outerHtml += '<div class="paperList itemsListview">';
|
2015-09-04 10:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var index = 0;
|
|
|
|
|
var groupTitle = '';
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
outerHtml += options.items.map(function (item) {
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showIndex !== false) {
|
2014-08-16 22:38:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemGroupTitle = LibraryBrowser.getListViewIndex(item, options);
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (itemGroupTitle != groupTitle) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
outerHtml += '</div>';
|
2015-09-04 10:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (index == 0) {
|
|
|
|
|
html += '<h1>';
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
html += '<h1 style="margin-top:2em;">';
|
|
|
|
|
}
|
|
|
|
|
html += itemGroupTitle;
|
|
|
|
|
html += '</h1>';
|
2015-09-04 10:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="paperList itemsListview">';
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
groupTitle = itemGroupTitle;
|
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var dataAttributes = LibraryBrowser.getItemDataAttributes(item, options, index);
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cssClass = 'listItem';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var href = LibraryBrowser.getHref(item, options.context);
|
|
|
|
|
html += '<paper-icon-item class="' + cssClass + '"' + dataAttributes + ' data-itemid="' + item.Id + '" data-playlistitemid="' + (item.PlaylistItemId || '') + '" data-href="' + href + '" data-icon="false">';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imgUrl;
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var downloadWidth = options.smallIcon ? 70 : 80;
|
|
|
|
|
// Scaling 400w episode images to 80 doesn't turn out very well
|
|
|
|
|
var minScale = item.Type == 'Episode' || item.Type == 'Game' || options.smallIcon ? 2 : 1.5;
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ImageTags.Primary) {
|
2014-07-05 12:57:18 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
maxWidth: downloadWidth,
|
|
|
|
|
tag: item.ImageTags.Primary,
|
|
|
|
|
type: "Primary",
|
|
|
|
|
index: 0,
|
|
|
|
|
minScale: minScale
|
|
|
|
|
});
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.AlbumId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxWidth: downloadWidth,
|
|
|
|
|
tag: item.AlbumPrimaryImageTag,
|
|
|
|
|
minScale: minScale
|
|
|
|
|
});
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
else if (item.AlbumId && item.SeriesPrimaryImageTag) {
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxWidth: downloadWidth,
|
|
|
|
|
tag: item.SeriesPrimaryImageTag,
|
|
|
|
|
minScale: minScale
|
|
|
|
|
});
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
else if (item.ParentPrimaryImageTag) {
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getImageUrl(item.ParentPrimaryImageItemId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxWidth: downloadWidth,
|
|
|
|
|
tag: item.ParentPrimaryImageTag,
|
|
|
|
|
minScale: minScale
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-08-05 16:59:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (imgUrl) {
|
|
|
|
|
var minLazyIndex = 16;
|
|
|
|
|
if (options.smallIcon) {
|
|
|
|
|
if (index < minLazyIndex) {
|
|
|
|
|
html += '<div class="listviewImage small" style="background-image:url(\'' + imgUrl + '\');" item-icon></div>';
|
|
|
|
|
} else {
|
|
|
|
|
html += '<div class="listviewImage lazy small" data-src="' + imgUrl + '" item-icon></div>';
|
|
|
|
|
}
|
2014-08-15 09:35:41 -07:00
|
|
|
|
} else {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (index < minLazyIndex) {
|
|
|
|
|
html += '<div class="listviewImage" style="background-image:url(\'' + imgUrl + '\');" item-icon></div>';
|
|
|
|
|
} else {
|
|
|
|
|
html += '<div class="listviewImage lazy" data-src="' + imgUrl + '" item-icon></div>';
|
|
|
|
|
}
|
2014-08-15 09:35:41 -07:00
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
} else {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.smallIcon) {
|
|
|
|
|
html += '<div class="listviewImage small" item-icon></div>';
|
2014-08-15 09:35:41 -07:00
|
|
|
|
} else {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="listviewImage" item-icon></div>';
|
2014-08-15 09:35:41 -07:00
|
|
|
|
}
|
2014-07-05 12:57:18 -07:00
|
|
|
|
}
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var textlines = [];
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Episode') {
|
|
|
|
|
textlines.push(item.SeriesName || ' ');
|
|
|
|
|
} else if (item.Type == 'MusicAlbum') {
|
|
|
|
|
textlines.push(item.AlbumArtist || ' ');
|
|
|
|
|
}
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var displayName = LibraryBrowser.getPosterViewDisplayName(item);
|
2014-08-17 11:12:17 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showIndexNumber && item.IndexNumber != null) {
|
|
|
|
|
displayName = item.IndexNumber + ". " + displayName;
|
|
|
|
|
}
|
|
|
|
|
textlines.push(displayName);
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Audio') {
|
|
|
|
|
textlines.push(item.ArtistItems.map(function (a) {
|
|
|
|
|
return a.Name;
|
2015-03-13 10:25:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}).join(', ') || ' ');
|
|
|
|
|
}
|
2014-08-15 09:35:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Game') {
|
|
|
|
|
textlines.push(item.GameSystem || ' ');
|
|
|
|
|
}
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (item.Type == 'MusicGenre') {
|
|
|
|
|
textlines.push(' ');
|
|
|
|
|
}
|
|
|
|
|
else if (item.Type == 'MusicArtist') {
|
|
|
|
|
textlines.push(' ');
|
|
|
|
|
}
|
|
|
|
|
else if (item.Type == 'TvChannel') {
|
2015-09-01 07:01:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CurrentProgram) {
|
|
|
|
|
textlines.push(LibraryBrowser.getPosterViewDisplayName(item.CurrentProgram));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
textlines.push(LibraryBrowser.getMiscInfoHtml(item));
|
2015-08-30 22:30:38 -07:00
|
|
|
|
}
|
2014-07-05 14:15:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (textlines.length > 2) {
|
|
|
|
|
html += '<paper-item-body three-line>';
|
|
|
|
|
} else {
|
|
|
|
|
html += '<paper-item-body two-line>';
|
|
|
|
|
}
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var defaultAction = options.defaultAction;
|
|
|
|
|
if (defaultAction == 'play' || defaultAction == 'playallfromhere') {
|
|
|
|
|
if (item.PlayAccess != 'Full') {
|
|
|
|
|
defaultAction = null;
|
|
|
|
|
}
|
2015-09-04 10:34:50 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var defaultActionAttribute = defaultAction ? (' data-action="' + defaultAction + '" class="itemWithAction mediaItem clearLink"') : ' class="mediaItem clearLink"';
|
|
|
|
|
html += '<a' + defaultActionAttribute + ' href="' + href + '">';
|
2015-06-02 10:46:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, textLinesLength = textlines.length; i < textLinesLength; i++) {
|
2015-06-03 08:26:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (i == 0) {
|
|
|
|
|
html += '<div>';
|
|
|
|
|
} else {
|
|
|
|
|
html += '<div secondary>';
|
|
|
|
|
}
|
|
|
|
|
html += textlines[i] || ' ';
|
|
|
|
|
html += '</div>';
|
2014-07-05 14:15:25 -07:00
|
|
|
|
}
|
2015-09-04 10:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//html += LibraryBrowser.getSyncIndicator(item);
|
2015-09-04 10:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//if (item.Type == 'Series' || item.Type == 'Season' || item.Type == 'BoxSet' || item.MediaType == 'Video') {
|
|
|
|
|
// if (item.UserData.UnplayedItemCount) {
|
|
|
|
|
// //html += '<span class="ui-li-count">' + item.UserData.UnplayedItemCount + '</span>';
|
|
|
|
|
// } else if (item.UserData.Played && item.Type != 'TvChannel') {
|
|
|
|
|
// html += '<div class="playedIndicator"><iron-icon icon="check"></iron-icon></div>';
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
html += '</a>';
|
|
|
|
|
html += '</paper-item-body>';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-icon-button icon="' + AppInfo.moreIcon + '" class="listviewMenuButton"></paper-icon-button>';
|
|
|
|
|
html += '<span class="listViewUserDataButtons">';
|
|
|
|
|
html += LibraryBrowser.getUserDataIconsHtml(item);
|
|
|
|
|
html += '</span>';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '</paper-icon-item>';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
index++;
|
|
|
|
|
return html;
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}).join('');
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
outerHtml += '</div>';
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return outerHtml;
|
|
|
|
|
},
|
2014-07-05 09:51:39 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
getItemDataAttributesList: function (item, options, index) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var atts = [];
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemCommands = LibraryBrowser.getItemCommands(item, options);
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'itemid',
|
|
|
|
|
value: item.Id
|
|
|
|
|
});
|
|
|
|
|
atts.push({
|
|
|
|
|
name: 'commands',
|
|
|
|
|
value: itemCommands.join(',')
|
|
|
|
|
});
|
2015-07-06 00:06:09 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.context) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'context',
|
|
|
|
|
value: options.context || ''
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-07-06 00:06:09 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsFolder) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'isfolder',
|
|
|
|
|
value: item.IsFolder
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2016-02-12 13:26:03 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'itemtype',
|
|
|
|
|
value: item.Type
|
|
|
|
|
});
|
2015-07-06 00:06:09 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'mediatype',
|
|
|
|
|
value: item.MediaType || ''
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-03-04 13:37:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.UserData.PlaybackPositionTicks) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'positionticks',
|
|
|
|
|
value: (item.UserData.PlaybackPositionTicks || 0)
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'playaccess',
|
|
|
|
|
value: item.PlayAccess || ''
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
atts.push({
|
|
|
|
|
name: 'locationtype',
|
|
|
|
|
value: item.LocationType || ''
|
|
|
|
|
});
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-27 22:00:15 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'index',
|
|
|
|
|
value: index
|
|
|
|
|
});
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.AlbumId) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'albumid',
|
|
|
|
|
value: item.AlbumId
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-06-05 07:27:01 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ChannelId) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'channelid',
|
|
|
|
|
value: item.ChannelId
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-08-16 21:08:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ArtistItems && item.ArtistItems.length) {
|
2016-04-23 21:24:16 -07:00
|
|
|
|
atts.push({
|
|
|
|
|
name: 'artistid',
|
|
|
|
|
value: item.ArtistItems[0].Id
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-06-05 07:27:01 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
return atts;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getItemDataAttributes: function (item, options, index) {
|
|
|
|
|
|
|
|
|
|
var atts = LibraryBrowser.getItemDataAttributesList(item, options, index).map(function (i) {
|
|
|
|
|
return 'data-' + i.name + '="' + i.value + '"';
|
|
|
|
|
});
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = atts.join(' ');
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (html) {
|
|
|
|
|
html = ' ' + html;
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
supportsAddingToCollection: function (item) {
|
2015-10-13 22:46:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var invalidTypes = ['Person', 'Genre', 'MusicGenre', 'Studio', 'GameGenre', 'BoxSet', 'Playlist', 'UserView', 'CollectionFolder', 'Audio', 'Episode', 'TvChannel', 'Program', 'MusicAlbum'];
|
2015-10-13 22:46:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return !item.CollectionType && invalidTypes.indexOf(item.Type) == -1 && item.MediaType != 'Photo';
|
|
|
|
|
},
|
2015-10-13 22:46:11 -07:00
|
|
|
|
|
2016-03-16 14:30:49 -07:00
|
|
|
|
enableSync: function (item, user) {
|
2016-02-17 21:57:19 -07:00
|
|
|
|
if (AppInfo.isNativeApp && !Dashboard.capabilities().SupportsSync) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (user && !user.Policy.EnableSync) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item.SupportsSync;
|
|
|
|
|
},
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getItemCommands: function (item, options) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemCommands = [];
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//if (MediaController.canPlay(item)) {
|
|
|
|
|
// itemCommands.push('playmenu');
|
|
|
|
|
//}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (LibraryBrowser.supportsEditing(item.Type)) {
|
|
|
|
|
itemCommands.push('edit');
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.LocalTrailerCount) {
|
|
|
|
|
itemCommands.push('trailer');
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "MusicGenre" || item.CollectionType == "music") {
|
|
|
|
|
itemCommands.push('instantmix');
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsFolder || item.Type == "MusicArtist" || item.Type == "MusicGenre") {
|
|
|
|
|
itemCommands.push('shuffle');
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (playlistManager.supportsPlaylists(item)) {
|
2014-08-05 21:18:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showRemoveFromPlaylist) {
|
|
|
|
|
itemCommands.push('removefromplaylist');
|
|
|
|
|
} else {
|
|
|
|
|
itemCommands.push('playlist');
|
|
|
|
|
}
|
2014-08-05 21:18:13 -07:00
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showAddToCollection !== false) {
|
|
|
|
|
if (LibraryBrowser.supportsAddingToCollection(item)) {
|
|
|
|
|
itemCommands.push('addtocollection');
|
|
|
|
|
}
|
2015-09-15 20:55:26 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showRemoveFromCollection) {
|
|
|
|
|
itemCommands.push('removefromcollection');
|
|
|
|
|
}
|
2015-01-23 21:50:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.playFromHere) {
|
|
|
|
|
itemCommands.push('playfromhere');
|
|
|
|
|
itemCommands.push('queuefromhere');
|
|
|
|
|
}
|
2014-08-21 08:55:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CanDelete) {
|
|
|
|
|
itemCommands.push('delete');
|
|
|
|
|
}
|
2014-11-18 19:45:12 -07:00
|
|
|
|
|
2016-02-17 21:57:19 -07:00
|
|
|
|
if (LibraryBrowser.enableSync(item)) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
itemCommands.push('sync');
|
|
|
|
|
}
|
2014-12-10 23:20:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Program' && (!item.TimerId && !item.SeriesTimerId)) {
|
2015-08-24 20:13:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
itemCommands.push('record');
|
|
|
|
|
}
|
2015-08-24 20:13:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == 'Video' && item.Type != 'TvChannel' && item.Type != 'Program' && item.LocationType != 'Virtual') {
|
|
|
|
|
itemCommands.push('editsubtitles');
|
|
|
|
|
}
|
|
|
|
|
itemCommands.push('editimages');
|
2015-09-16 18:33:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return itemCommands;
|
|
|
|
|
},
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
shapes: ['square', 'portrait', 'banner', 'smallBackdrop', 'homePageSmallBackdrop', 'backdrop', 'overflowBackdrop', 'overflowPortrait', 'overflowSquare'],
|
2015-05-16 12:09:02 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPostersPerRow: function (screenWidth) {
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cache = true;
|
|
|
|
|
function getValue(shape) {
|
2016-03-16 22:04:32 -07:00
|
|
|
|
|
|
|
|
|
switch (shape) {
|
2016-03-24 11:11:03 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
case 'portrait':
|
|
|
|
|
if (screenWidth >= 2200) return 10;
|
|
|
|
|
if (screenWidth >= 2100) return 9;
|
|
|
|
|
if (screenWidth >= 1600) return 8;
|
|
|
|
|
if (screenWidth >= 1400) return 7;
|
|
|
|
|
if (screenWidth >= 1200) return 6;
|
|
|
|
|
if (screenWidth >= 800) return 5;
|
|
|
|
|
if (screenWidth >= 640) return 4;
|
|
|
|
|
return 3;
|
|
|
|
|
case 'square':
|
|
|
|
|
if (screenWidth >= 2100) return 9;
|
|
|
|
|
if (screenWidth >= 1800) return 8;
|
|
|
|
|
if (screenWidth >= 1400) return 7;
|
|
|
|
|
if (screenWidth >= 1200) return 6;
|
|
|
|
|
if (screenWidth >= 900) return 5;
|
|
|
|
|
if (screenWidth >= 700) return 4;
|
|
|
|
|
if (screenWidth >= 500) return 3;
|
|
|
|
|
return 2;
|
|
|
|
|
case 'banner':
|
|
|
|
|
if (screenWidth >= 2200) return 4;
|
|
|
|
|
if (screenWidth >= 1200) return 3;
|
|
|
|
|
if (screenWidth >= 800) return 2;
|
|
|
|
|
return 1;
|
|
|
|
|
case 'backdrop':
|
|
|
|
|
if (screenWidth >= 2500) return 6;
|
|
|
|
|
if (screenWidth >= 2100) return 5;
|
|
|
|
|
if (screenWidth >= 1200) return 4;
|
|
|
|
|
if (screenWidth >= 770) return 3;
|
|
|
|
|
if (screenWidth >= 420) return 2;
|
|
|
|
|
return 1;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var div = $('<div class="card ' + shape + 'Card"><div class="cardBox"><div class="cardImage"></div></div></div>').appendTo(document.body);
|
|
|
|
|
var innerWidth = $('.cardImage', div).innerWidth();
|
2015-06-15 21:52:01 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!innerWidth || isNaN(innerWidth)) {
|
|
|
|
|
cache = false;
|
|
|
|
|
innerWidth = Math.min(400, screenWidth / 2);
|
|
|
|
|
}
|
2015-06-15 21:52:01 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var width = screenWidth / innerWidth;
|
|
|
|
|
div.remove();
|
|
|
|
|
return Math.floor(width);
|
|
|
|
|
}
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var info = {};
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = LibraryBrowser.shapes.length; i < length; i++) {
|
|
|
|
|
var currentShape = LibraryBrowser.shapes[i];
|
|
|
|
|
info[currentShape] = getValue(currentShape);
|
|
|
|
|
}
|
|
|
|
|
info.cache = cache;
|
|
|
|
|
return info;
|
|
|
|
|
},
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
posterSizes: [],
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPosterViewInfo: function () {
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var screenWidth = window.innerWidth;
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cachedResults = LibraryBrowser.posterSizes;
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = cachedResults.length; i < length; i++) {
|
2015-05-06 22:12:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (cachedResults[i].screenWidth == screenWidth) {
|
|
|
|
|
return cachedResults[i];
|
|
|
|
|
}
|
2015-05-06 21:14:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var result = LibraryBrowser.getPosterViewInfoInternal(screenWidth);
|
|
|
|
|
result.screenWidth = screenWidth;
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (result.cache) {
|
|
|
|
|
cachedResults.push(result);
|
|
|
|
|
}
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return result;
|
|
|
|
|
},
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPosterViewInfoInternal: function (screenWidth) {
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imagesPerRow = LibraryBrowser.getPostersPerRow(screenWidth);
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var result = {};
|
|
|
|
|
result.screenWidth = screenWidth;
|
2015-05-16 12:09:02 -07:00
|
|
|
|
|
2016-02-27 20:39:52 -07:00
|
|
|
|
if (AppInfo.hasLowImageBandwidth) {
|
|
|
|
|
if (!AppInfo.isNativeApp) {
|
|
|
|
|
screenWidth *= .7;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
screenWidth *= 1.2;
|
|
|
|
|
}
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var roundTo = 100;
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = LibraryBrowser.shapes.length; i < length; i++) {
|
|
|
|
|
var currentShape = LibraryBrowser.shapes[i];
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var shapeWidth = screenWidth / imagesPerRow[currentShape];
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!browserInfo.mobile) {
|
2015-05-06 21:14:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
shapeWidth = Math.round(shapeWidth / roundTo) * roundTo;
|
|
|
|
|
}
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
result[currentShape + 'Width'] = Math.round(shapeWidth);
|
|
|
|
|
}
|
2015-05-06 22:12:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
result.cache = imagesPerRow.cache;
|
2015-06-15 21:52:01 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return result;
|
|
|
|
|
},
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
setPosterViewData: function (options) {
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var items = options.items;
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
options.shape = options.shape || "portrait";
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var primaryImageAspectRatio = LibraryBrowser.getAveragePrimaryImageAspectRatio(items);
|
|
|
|
|
var isThumbAspectRatio = primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 1.777777778) < .3;
|
|
|
|
|
var isSquareAspectRatio = primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 1) < .33 ||
|
|
|
|
|
primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 1.3333334) < .01;
|
2014-01-05 18:59:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.shape == 'auto' || options.shape == 'autohome') {
|
2014-01-04 22:15:38 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isThumbAspectRatio) {
|
|
|
|
|
options.shape = options.shape == 'auto' ? 'backdrop' : 'backdrop';
|
|
|
|
|
} else if (isSquareAspectRatio) {
|
|
|
|
|
options.coverImage = true;
|
|
|
|
|
options.shape = 'square';
|
|
|
|
|
} else if (primaryImageAspectRatio && primaryImageAspectRatio > 1.9) {
|
|
|
|
|
options.shape = 'banner';
|
|
|
|
|
options.coverImage = true;
|
|
|
|
|
} else if (primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 0.6666667) < .2) {
|
|
|
|
|
options.shape = options.shape == 'auto' ? 'portrait' : 'portrait';
|
|
|
|
|
} else {
|
|
|
|
|
options.shape = options.defaultShape || (options.shape == 'auto' ? 'square' : 'square');
|
|
|
|
|
}
|
2014-06-19 21:50:30 -07:00
|
|
|
|
}
|
2014-01-05 18:59:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var posterInfo = LibraryBrowser.getPosterViewInfo();
|
2015-05-06 20:11:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var thumbWidth = posterInfo.backdropWidth;
|
|
|
|
|
var posterWidth = posterInfo.portraitWidth;
|
|
|
|
|
var squareSize = posterInfo.squareWidth;
|
|
|
|
|
var bannerWidth = posterInfo.bannerWidth;
|
2015-05-06 22:12:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isThumbAspectRatio) {
|
|
|
|
|
posterWidth = thumbWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (isSquareAspectRatio) {
|
|
|
|
|
posterWidth = squareSize;
|
|
|
|
|
}
|
2015-05-12 06:58:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.shape == 'overflowBackdrop') {
|
|
|
|
|
thumbWidth = posterInfo.overflowBackdropWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'overflowPortrait') {
|
|
|
|
|
posterWidth = posterInfo.overflowPortraitWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'overflowSquare') {
|
|
|
|
|
squareSize = posterInfo.overflowSquareWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'smallBackdrop') {
|
|
|
|
|
thumbWidth = posterInfo.smallBackdropWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'homePageSmallBackdrop') {
|
|
|
|
|
thumbWidth = posterInfo.homePageSmallBackdropWidth;
|
|
|
|
|
posterWidth = posterInfo.homePageSmallBackdropWidth;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'detailPagePortrait') {
|
|
|
|
|
posterWidth = 200;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'detailPageSquare') {
|
|
|
|
|
posterWidth = 240;
|
|
|
|
|
squareSize = 240;
|
|
|
|
|
}
|
|
|
|
|
else if (options.shape == 'detailPage169') {
|
|
|
|
|
posterWidth = 320;
|
|
|
|
|
thumbWidth = 320;
|
|
|
|
|
}
|
2015-05-25 10:32:22 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
options.uiAspect = getDesiredAspect(options.shape);
|
|
|
|
|
options.primaryImageAspectRatio = primaryImageAspectRatio;
|
|
|
|
|
options.posterWidth = posterWidth;
|
|
|
|
|
options.thumbWidth = thumbWidth;
|
|
|
|
|
options.bannerWidth = bannerWidth;
|
|
|
|
|
options.squareSize = squareSize;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getPosterViewHtml: function (options) {
|
|
|
|
|
|
|
|
|
|
LibraryBrowser.setPosterViewData(options);
|
|
|
|
|
|
|
|
|
|
var items = options.items;
|
|
|
|
|
var currentIndexValue;
|
|
|
|
|
|
|
|
|
|
options.shape = options.shape || "portrait";
|
|
|
|
|
|
|
|
|
|
var html = "";
|
|
|
|
|
|
|
|
|
|
var primaryImageAspectRatio;
|
|
|
|
|
var thumbWidth = options.thumbWidth;
|
|
|
|
|
var posterWidth = options.posterWidth;
|
|
|
|
|
var squareSize = options.squareSize;
|
|
|
|
|
var bannerWidth = options.bannerWidth;
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var dateText;
|
2016-04-23 21:24:16 -07:00
|
|
|
|
var uiAspect = options.uiAspect;
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var item = items[i];
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
dateText = null;
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
primaryImageAspectRatio = LibraryBrowser.getAveragePrimaryImageAspectRatio([item]);
|
2014-01-22 17:39:26 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showStartDateIndex) {
|
2015-03-19 10:34:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.StartDate) {
|
|
|
|
|
try {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
dateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.StartDate, { toLocal: true }), true);
|
2015-03-19 10:34:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} catch (err) {
|
|
|
|
|
}
|
2015-03-19 10:34:53 -07:00
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var newIndexValue = dateText || Globalize.translate('HeaderUnknownDate');
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (newIndexValue != currentIndexValue) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<h1 class="timelineHeader" style="text-align:center;">' + newIndexValue + '</h1>';
|
|
|
|
|
currentIndexValue = newIndexValue;
|
|
|
|
|
}
|
|
|
|
|
} else if (options.timeline) {
|
|
|
|
|
var year = item.ProductionYear || Globalize.translate('HeaderUnknownYear');
|
2014-01-02 14:21:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (year != currentIndexValue) {
|
2014-01-02 14:21:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<h1 class="timelineHeader">' + year + '</h1>';
|
|
|
|
|
currentIndexValue = year;
|
|
|
|
|
}
|
2014-01-02 14:21:06 -07:00
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += LibraryBrowser.getPosterViewItemHtml(item, i, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth, uiAspect);
|
|
|
|
|
}
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPosterViewItemHtml: function (item, index, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth, uiAspect) {
|
2014-05-23 16:58:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
var imgUrl = null;
|
|
|
|
|
var icon;
|
|
|
|
|
var width = null;
|
|
|
|
|
var height = null;
|
2014-06-30 21:06:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var forceName = false;
|
2014-06-30 21:06:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var enableImageEnhancers = options.enableImageEnhancers !== false;
|
2014-06-30 21:06:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cssClass = "card";
|
2015-06-18 21:23:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.fullWidthOnMobile) {
|
|
|
|
|
cssClass += " fullWidthCardOnMobile";
|
|
|
|
|
}
|
2015-07-17 15:32:00 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var showTitle = options.showTitle == 'auto' ? true : options.showTitle;
|
2016-04-27 10:52:27 -07:00
|
|
|
|
|
|
|
|
|
if (item.Type == 'PhotoAlbum') {
|
|
|
|
|
showTitle = true;
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var coverImage = options.coverImage;
|
2015-08-28 08:02:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.autoThumb && item.ImageTags && item.ImageTags.Primary && item.PrimaryImageAspectRatio && item.PrimaryImageAspectRatio >= 1.34) {
|
2014-06-30 21:06:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
width = posterWidth;
|
|
|
|
|
height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null;
|
2014-06-30 21:06:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxHeight: height,
|
|
|
|
|
maxWidth: width,
|
|
|
|
|
tag: item.ImageTags.Primary,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2016-01-21 14:30:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (primaryImageAspectRatio) {
|
|
|
|
|
if (uiAspect) {
|
|
|
|
|
if (Math.abs(primaryImageAspectRatio - uiAspect) <= .2) {
|
|
|
|
|
coverImage = true;
|
|
|
|
|
}
|
2016-01-24 12:39:13 -07:00
|
|
|
|
}
|
2016-01-21 14:30:59 -07:00
|
|
|
|
}
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.autoThumb && item.ImageTags && item.ImageTags.Thumb) {
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.ImageTags.Thumb,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferBackdrop && item.BackdropImageTags && item.BackdropImageTags.length) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.BackdropImageTags[0],
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2014-03-30 18:00:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferThumb && item.ImageTags && item.ImageTags.Thumb) {
|
2014-03-30 18:00:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.ImageTags.Thumb,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferBanner && item.ImageTags && item.ImageTags.Banner) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Banner",
|
|
|
|
|
maxWidth: bannerWidth,
|
|
|
|
|
tag: item.ImageTags.Banner,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferThumb && item.SeriesThumbImageTag && options.inheritThumb !== false) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.SeriesThumbImageTag,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferThumb && item.ParentThumbItemId && options.inheritThumb !== false) {
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getThumbImageUrl(item.ParentThumbItemId, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2014-09-15 20:39:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (options.preferThumb && item.BackdropImageTags && item.BackdropImageTags.length) {
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.BackdropImageTags[0],
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
forceName = true;
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.ImageTags && item.ImageTags.Primary) {
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
width = posterWidth;
|
|
|
|
|
height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null;
|
2013-07-18 07:59:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxHeight: height,
|
|
|
|
|
maxWidth: width,
|
|
|
|
|
tag: item.ImageTags.Primary,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2016-01-21 14:30:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (primaryImageAspectRatio) {
|
|
|
|
|
if (uiAspect) {
|
|
|
|
|
if (Math.abs(primaryImageAspectRatio - uiAspect) <= .2) {
|
|
|
|
|
coverImage = true;
|
|
|
|
|
}
|
2016-01-24 12:39:13 -07:00
|
|
|
|
}
|
2016-01-21 14:30:59 -07:00
|
|
|
|
}
|
2015-11-12 12:49:19 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (item.ParentPrimaryImageTag) {
|
2013-07-18 07:59:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getImageUrl(item.ParentPrimaryImageItemId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxWidth: posterWidth,
|
|
|
|
|
tag: item.ParentPrimaryImageTag,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
|
2014-09-15 20:39:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
height = squareSize;
|
|
|
|
|
width = primaryImageAspectRatio ? Math.round(height * primaryImageAspectRatio) : null;
|
2014-09-15 20:39:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.AlbumId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxHeight: height,
|
|
|
|
|
maxWidth: width,
|
|
|
|
|
tag: item.AlbumPrimaryImageTag,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2016-01-21 14:30:59 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (primaryImageAspectRatio) {
|
|
|
|
|
if (uiAspect) {
|
|
|
|
|
if (Math.abs(primaryImageAspectRatio - uiAspect) <= .2) {
|
|
|
|
|
coverImage = true;
|
|
|
|
|
}
|
2016-01-24 12:39:13 -07:00
|
|
|
|
}
|
2016-01-21 14:30:59 -07:00
|
|
|
|
}
|
2015-11-12 12:49:19 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (item.Type == 'Season' && item.ImageTags && item.ImageTags.Thumb) {
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.ImageTags.Thumb,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
else if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.BackdropImageTags[0],
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.ImageTags && item.ImageTags.Thumb) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.ImageTags.Thumb,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.SeriesThumbImageTag) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
tag: item.SeriesThumbImageTag,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.ParentThumbItemId) {
|
2014-01-03 13:32:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getThumbImageUrl(item, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxWidth: thumbWidth,
|
|
|
|
|
enableImageEnhancers: enableImageEnhancers
|
|
|
|
|
});
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist") {
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Name && showTitle) {
|
|
|
|
|
icon = 'library-music';
|
|
|
|
|
}
|
|
|
|
|
cssClass += " defaultBackground";
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.Type == "Recording" || item.Type == "Program" || item.Type == "TvChannel") {
|
|
|
|
|
|
|
|
|
|
if (item.Name && showTitle) {
|
|
|
|
|
icon = 'folder-open';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cssClass += " defaultBackground";
|
|
|
|
|
} else if (item.MediaType == "Video" || item.Type == "Season" || item.Type == "Series") {
|
|
|
|
|
|
|
|
|
|
if (item.Name && showTitle) {
|
|
|
|
|
icon = 'videocam';
|
|
|
|
|
}
|
|
|
|
|
cssClass += " defaultBackground";
|
|
|
|
|
} else if (item.Type == "Person") {
|
2014-01-03 13:32:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Name && showTitle) {
|
|
|
|
|
icon = 'person';
|
|
|
|
|
}
|
|
|
|
|
cssClass += " defaultBackground";
|
|
|
|
|
} else {
|
|
|
|
|
if (item.Name && showTitle) {
|
|
|
|
|
icon = 'folder-open';
|
|
|
|
|
}
|
|
|
|
|
cssClass += " defaultBackground";
|
2013-04-03 05:03:13 -07:00
|
|
|
|
}
|
2013-04-10 12:33:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
icon = item.icon || icon;
|
|
|
|
|
cssClass += ' ' + options.shape + 'Card';
|
|
|
|
|
|
|
|
|
|
var mediaSourceCount = item.MediaSourceCount || 1;
|
2013-04-28 11:30:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var href = options.linkItem === false ? '#' : LibraryBrowser.getHref(item, options.context);
|
|
|
|
|
|
|
|
|
|
if (options.showChildCountIndicator && item.ChildCount && options.showLatestItemsPopup !== false) {
|
|
|
|
|
cssClass += ' groupedCard';
|
2013-09-08 14:16:13 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if ((showTitle || options.showItemCounts) && !options.overlayText) {
|
|
|
|
|
cssClass += ' bottomPaddedCard';
|
2015-05-08 12:10:53 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
|
|
|
|
var dataAttributes = LibraryBrowser.getItemDataAttributes(item, options, index);
|
|
|
|
|
|
|
|
|
|
var defaultAction = options.defaultAction;
|
|
|
|
|
if (defaultAction == 'play' || defaultAction == 'playallfromhere') {
|
|
|
|
|
if (item.PlayAccess != 'Full') {
|
|
|
|
|
defaultAction = null;
|
|
|
|
|
}
|
2015-05-08 12:10:53 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var defaultActionAttribute = defaultAction ? (' data-action="' + defaultAction + '"') : '';
|
2013-04-28 11:30:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// card
|
|
|
|
|
html += '<div' + dataAttributes + ' class="' + cssClass + '">';
|
2014-06-30 11:55:38 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var style = "";
|
2014-07-04 22:21:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (imgUrl && !options.lazy) {
|
|
|
|
|
style += 'background-image:url(\'' + imgUrl + '\');';
|
|
|
|
|
}
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imageCssClass = 'cardImage';
|
2014-09-01 13:10:54 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (icon) {
|
|
|
|
|
imageCssClass += " iconCardImage";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (coverImage) {
|
|
|
|
|
imageCssClass += " coveredCardImage";
|
2016-02-26 10:15:06 -07:00
|
|
|
|
if (item.MediaType == 'Photo' || item.Type == 'PhotoAlbum' || item.Type == 'Folder' || item.Type == 'Program' || item.Type == 'Recording') {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imageCssClass += " noScale";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (options.centerImage) {
|
|
|
|
|
imageCssClass += " centeredCardImage";
|
|
|
|
|
}
|
2014-03-10 11:56:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var dataSrc = "";
|
2014-05-10 22:11:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.lazy && imgUrl) {
|
|
|
|
|
imageCssClass += " lazy";
|
|
|
|
|
dataSrc = ' data-src="' + imgUrl + '"';
|
2013-04-25 17:52:55 -07:00
|
|
|
|
}
|
2013-04-03 21:21:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cardboxCssClass = 'cardBox';
|
2013-04-03 21:21:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.cardLayout) {
|
|
|
|
|
cardboxCssClass += ' visualCardBox';
|
|
|
|
|
}
|
|
|
|
|
html += '<div class="' + cardboxCssClass + '">';
|
|
|
|
|
html += '<div class="cardScalable">';
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="cardPadder"></div>';
|
2014-04-08 11:22:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var anchorCssClass = "cardContent";
|
2014-11-09 21:20:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
anchorCssClass += ' mediaItem';
|
2015-11-12 12:49:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.defaultAction) {
|
|
|
|
|
anchorCssClass += ' itemWithAction';
|
2016-01-26 22:54:18 -07:00
|
|
|
|
}
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var transition = options.transition === false || !AppInfo.enableSectionTransitions ? '' : ' data-transition="slide"';
|
|
|
|
|
var onclick = item.onclick ? ' onclick="' + item.onclick + '"' : '';
|
|
|
|
|
html += '<a' + onclick + transition + ' class="' + anchorCssClass + '" href="' + href + '"' + defaultActionAttribute + '>';
|
|
|
|
|
html += '<div class="' + imageCssClass + '" style="' + style + '"' + dataSrc + '>';
|
|
|
|
|
if (icon) {
|
|
|
|
|
html += '<iron-icon icon="' + icon + '"></iron-icon>';
|
|
|
|
|
}
|
|
|
|
|
html += '</div>';
|
2014-11-11 21:51:40 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.LocationType == "Virtual" || item.LocationType == "Offline") {
|
|
|
|
|
if (options.showLocationTypeIndicator !== false) {
|
|
|
|
|
html += LibraryBrowser.getOfflineIndicatorHtml(item);
|
|
|
|
|
}
|
|
|
|
|
} else if (options.showUnplayedIndicator !== false) {
|
|
|
|
|
html += LibraryBrowser.getPlayedIndicatorHtml(item);
|
|
|
|
|
} else if (options.showChildCountIndicator) {
|
|
|
|
|
html += LibraryBrowser.getGroupCountIndicator(item);
|
|
|
|
|
}
|
2014-11-11 21:51:40 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += LibraryBrowser.getSyncIndicator(item);
|
2013-12-28 22:32:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (mediaSourceCount > 1) {
|
|
|
|
|
html += '<div class="mediaSourceIndicator">' + mediaSourceCount + '</div>';
|
|
|
|
|
}
|
2014-01-14 22:01:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var progressHtml = options.showProgress === false || item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var footerOverlayed = false;
|
2015-05-09 21:29:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.overlayText || (forceName && !showTitle)) {
|
2014-02-28 21:12:56 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var footerCssClass = progressHtml ? 'cardFooter fullCardFooter' : 'cardFooter';
|
2014-08-02 19:16:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += LibraryBrowser.getCardFooterText(item, options, showTitle, imgUrl, forceName, footerCssClass, progressHtml);
|
|
|
|
|
footerOverlayed = true;
|
2014-01-01 11:26:31 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (progressHtml) {
|
|
|
|
|
html += '<div class="cardFooter fullCardFooter lightCardFooter">';
|
|
|
|
|
html += "<div class='cardProgress cardText'>";
|
|
|
|
|
html += progressHtml;
|
|
|
|
|
html += "</div>";
|
|
|
|
|
//cardFooter
|
|
|
|
|
html += "</div>";
|
2013-04-03 21:21:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
progressHtml = '';
|
|
|
|
|
}
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// cardContent
|
|
|
|
|
html += '</a>';
|
2013-04-25 20:33:54 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.overlayPlayButton && !item.IsPlaceHolder && (item.LocationType != 'Virtual' || !item.MediaType || item.Type == 'Program') && item.Type != 'Person') {
|
|
|
|
|
html += '<div class="cardOverlayButtonContainer"><paper-icon-button icon="play-arrow" class="cardOverlayPlayButton" onclick="return false;"></paper-icon-button></div>';
|
|
|
|
|
}
|
|
|
|
|
if (options.overlayMoreButton) {
|
|
|
|
|
html += '<div class="cardOverlayButtonContainer"><paper-icon-button icon="' + AppInfo.moreIcon + '" class="cardOverlayMoreButton" onclick="return false;"></paper-icon-button></div>';
|
|
|
|
|
}
|
2013-04-03 21:21:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// cardScalable
|
|
|
|
|
html += '</div>';
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!options.overlayText && !footerOverlayed) {
|
|
|
|
|
html += LibraryBrowser.getCardFooterText(item, options, showTitle, imgUrl, forceName, 'cardFooter outerCardFooter', progressHtml);
|
|
|
|
|
}
|
2015-05-11 09:32:15 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// cardBox
|
|
|
|
|
html += '</div>';
|
2015-05-11 09:32:15 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// card
|
2015-05-08 12:10:53 -07:00
|
|
|
|
html += "</div>";
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getCardFooterText: function (item, options, showTitle, imgUrl, forceName, footerClass, progressHtml) {
|
2015-07-06 00:06:09 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.cardLayout) {
|
|
|
|
|
html += '<div class="cardButtonContainer">';
|
|
|
|
|
html += '<paper-icon-button icon="' + AppInfo.moreIcon + '" class="listviewMenuButton btnCardOptions"></paper-icon-button>';
|
|
|
|
|
html += "</div>";
|
|
|
|
|
}
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var name = options.showTitle == 'auto' && !item.IsFolder && item.MediaType == 'Photo' ? '' : LibraryBrowser.getPosterViewDisplayName(item, options.displayAsSpecial);
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!imgUrl && !showTitle) {
|
|
|
|
|
html += "<div class='cardDefaultText'>";
|
|
|
|
|
html += htmlEncode(name);
|
|
|
|
|
html += "</div>";
|
|
|
|
|
}
|
2015-05-08 12:10:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var cssClass = options.centerText ? "cardText cardTextCentered" : "cardText";
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var lines = [];
|
2013-05-03 19:33:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showParentTitle) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(item.EpisodeTitle ? item.Name : (item.SeriesName || item.Album || item.AlbumArtist || item.GameSystem || ""));
|
|
|
|
|
}
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (showTitle || forceName) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(htmlEncode(name));
|
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showItemCounts) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemCountHtml = LibraryBrowser.getItemCountsHtml(options, item);
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(itemCountHtml);
|
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.textLines) {
|
|
|
|
|
var additionalLines = options.textLines(item);
|
|
|
|
|
for (var i = 0, length = additionalLines.length; i < length; i++) {
|
|
|
|
|
lines.push(additionalLines[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showSongCount) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var songLine = '';
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SongCount) {
|
|
|
|
|
songLine = item.SongCount == 1 ?
|
|
|
|
|
Globalize.translate('ValueOneSong') :
|
|
|
|
|
Globalize.translate('ValueSongCount', item.SongCount);
|
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(songLine);
|
|
|
|
|
}
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showPremiereDate) {
|
2013-04-03 21:21:46 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.PremiereDate) {
|
|
|
|
|
try {
|
2015-01-24 23:34:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(LibraryBrowser.getPremiereDateText(item));
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} catch (err) {
|
|
|
|
|
lines.push('');
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
lines.push('');
|
|
|
|
|
}
|
2014-11-10 20:41:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showYear) {
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(item.ProductionYear || '');
|
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showSeriesYear) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Status == "Continuing") {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear || ''));
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
lines.push(item.ProductionYear || '');
|
2015-05-12 21:55:19 -07:00
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.showProgramAirInfo) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var date = parseISO8601Date(item.StartDate, { toLocal: true });
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var text = item.StartDate ?
|
|
|
|
|
date.toLocaleString() :
|
|
|
|
|
'';
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(text || ' ');
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
lines.push(item.ChannelName || ' ');
|
2014-11-10 20:41:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += LibraryBrowser.getCardTextLines(lines, cssClass, !options.overlayText);
|
2014-11-10 20:41:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.overlayText) {
|
2015-03-19 09:16:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (progressHtml) {
|
|
|
|
|
html += "<div class='cardText cardProgress'>";
|
|
|
|
|
html += progressHtml;
|
|
|
|
|
html += "</div>";
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-19 09:16:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (html) {
|
|
|
|
|
html = '<div class="' + footerClass + '">' + html;
|
2015-03-19 09:16:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//cardFooter
|
|
|
|
|
html += "</div>";
|
|
|
|
|
}
|
2015-03-19 09:16:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2015-03-19 09:16:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getListItemInfo: function (elem) {
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var elemWithAttributes = elem;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
while (!elemWithAttributes.getAttribute('data-itemid')) {
|
|
|
|
|
elemWithAttributes = elemWithAttributes.parentNode;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemId = elemWithAttributes.getAttribute('data-itemid');
|
|
|
|
|
var index = elemWithAttributes.getAttribute('data-index');
|
|
|
|
|
var mediaType = elemWithAttributes.getAttribute('data-mediatype');
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return {
|
|
|
|
|
id: itemId,
|
|
|
|
|
index: index,
|
|
|
|
|
mediaType: mediaType,
|
|
|
|
|
context: elemWithAttributes.getAttribute('data-context')
|
|
|
|
|
};
|
|
|
|
|
},
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getCardTextLines: function (lines, cssClass, forceLines) {
|
2015-05-16 12:09:02 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2015-05-09 21:29:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var valid = 0;
|
|
|
|
|
var i, length;
|
2015-05-09 21:29:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (i = 0, length = lines.length; i < length; i++) {
|
2015-05-09 21:29:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var text = lines[i];
|
2015-05-09 21:29:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (text) {
|
|
|
|
|
html += "<div class='" + cssClass + "'>";
|
|
|
|
|
html += text;
|
|
|
|
|
html += "</div>";
|
|
|
|
|
valid++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (forceLines) {
|
|
|
|
|
while (valid < length) {
|
|
|
|
|
html += "<div class='" + cssClass + "'> </div>";
|
|
|
|
|
valid++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getFutureDateText: function (date) {
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var weekday = [];
|
|
|
|
|
weekday[0] = Globalize.translate('OptionSunday');
|
|
|
|
|
weekday[1] = Globalize.translate('OptionMonday');
|
|
|
|
|
weekday[2] = Globalize.translate('OptionTuesday');
|
|
|
|
|
weekday[3] = Globalize.translate('OptionWednesday');
|
|
|
|
|
weekday[4] = Globalize.translate('OptionThursday');
|
|
|
|
|
weekday[5] = Globalize.translate('OptionFriday');
|
|
|
|
|
weekday[6] = Globalize.translate('OptionSaturday');
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var day = weekday[date.getDay()];
|
|
|
|
|
date = date.toLocaleDateString();
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (date.toLowerCase().indexOf(day.toLowerCase()) == -1) {
|
|
|
|
|
return day + " " + date;
|
2014-05-10 10:28:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return date;
|
|
|
|
|
},
|
2014-05-10 10:28:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPremiereDateText: function (item, date) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!date) {
|
2013-11-19 10:17:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var text = '';
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.AirTime) {
|
|
|
|
|
text += item.AirTime;
|
|
|
|
|
}
|
2013-12-26 19:23:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SeriesStudio) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (text) {
|
|
|
|
|
text += " on " + item.SeriesStudio;
|
|
|
|
|
} else {
|
|
|
|
|
text += item.SeriesStudio;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return text;
|
|
|
|
|
}
|
2013-10-25 13:58:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var day = LibraryBrowser.getFutureDateText(date);
|
2013-10-26 15:01:21 -07:00
|
|
|
|
|
2013-10-25 13:58:31 -07:00
|
|
|
|
if (item.AirTime) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
day += " at " + item.AirTime;
|
2013-10-25 13:58:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (item.SeriesStudio) {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
day += " on " + item.SeriesStudio;
|
2013-10-25 13:58:31 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return day;
|
|
|
|
|
},
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPosterViewDisplayName: function (item, displayAsSpecial, includeParentInfo) {
|
2013-10-24 11:38:57 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!item) {
|
|
|
|
|
throw new Error("null item passed into getPosterViewDisplayName");
|
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var name = item.EpisodeTitle || item.Name || '';
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "TvChannel") {
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Number) {
|
|
|
|
|
return item.Number + ' ' + name;
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
if (displayAsSpecial && item.Type == "Episode" && item.ParentIndexNumber == 0) {
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
name = Globalize.translate('ValueSpecialEpisodeName', name);
|
2014-05-23 16:58:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.Type == "Episode" && item.IndexNumber != null && item.ParentIndexNumber != null) {
|
2013-11-15 14:31:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var displayIndexNumber = item.IndexNumber;
|
2013-11-15 14:31:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var number = "E" + displayIndexNumber;
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (includeParentInfo !== false) {
|
|
|
|
|
number = "S" + item.ParentIndexNumber + ", " + number;
|
|
|
|
|
}
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IndexNumberEnd) {
|
2014-02-09 14:11:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
displayIndexNumber = item.IndexNumberEnd;
|
|
|
|
|
number += "-" + displayIndexNumber;
|
|
|
|
|
}
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
name = number + " - " + name;
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return name;
|
|
|
|
|
},
|
2013-05-23 21:02:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getOfflineIndicatorHtml: function (item) {
|
2013-04-09 21:38:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.LocationType == "Offline") {
|
|
|
|
|
return '<div class="posterRibbon offlinePosterRibbon">' + Globalize.translate('HeaderOffline') + '</div>';
|
|
|
|
|
}
|
2013-10-16 19:43:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == 'Episode') {
|
|
|
|
|
try {
|
2013-10-16 19:43:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var date = parseISO8601Date(item.PremiereDate, { toLocal: true });
|
2015-06-03 21:50:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.PremiereDate && (new Date().getTime() < date.getTime())) {
|
|
|
|
|
return '<div class="posterRibbon unairedPosterRibbon">' + Globalize.translate('HeaderUnaired') + '</div>';
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
2013-10-25 07:18:53 -07:00
|
|
|
|
|
2015-06-03 21:50:10 -07:00
|
|
|
|
}
|
2013-10-25 07:18:53 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<div class="posterRibbon missingPosterRibbon">' + Globalize.translate('HeaderMissing') + '</div>';
|
2013-10-16 19:43:55 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '';
|
|
|
|
|
},
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getPlayedIndicatorHtml: function (item) {
|
2013-04-09 21:38:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video" || item.MediaType == "Game" || item.MediaType == "Book") {
|
|
|
|
|
if (item.UserData.UnplayedItemCount) {
|
|
|
|
|
return '<div class="playedIndicator">' + item.UserData.UnplayedItemCount + '</div>';
|
|
|
|
|
}
|
2013-12-29 11:53:56 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type != 'TvChannel') {
|
|
|
|
|
if (item.UserData.PlayedPercentage && item.UserData.PlayedPercentage >= 100 || (item.UserData && item.UserData.Played)) {
|
|
|
|
|
return '<div class="playedIndicator"><iron-icon icon="check"></iron-icon></div>';
|
|
|
|
|
}
|
2014-07-07 18:41:03 -07:00
|
|
|
|
}
|
2013-12-29 11:53:56 -07:00
|
|
|
|
}
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '';
|
|
|
|
|
},
|
2013-04-09 21:38:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getGroupCountIndicator: function (item) {
|
2014-07-04 22:21:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ChildCount) {
|
|
|
|
|
return '<div class="playedIndicator">' + item.ChildCount + '</div>';
|
|
|
|
|
}
|
2014-07-04 22:21:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '';
|
|
|
|
|
},
|
2014-07-04 22:21:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getSyncIndicator: function (item) {
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SyncStatus == 'Synced') {
|
2015-06-02 10:46:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<div class="syncIndicator"><iron-icon icon="sync"></iron-icon></div>';
|
|
|
|
|
}
|
2015-06-02 10:46:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var syncPercent = item.SyncPercent;
|
|
|
|
|
if (syncPercent) {
|
|
|
|
|
return '<div class="syncIndicator"><iron-icon icon="sync"></iron-icon></div>';
|
|
|
|
|
}
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SyncStatus == 'Queued' || item.SyncStatus == 'Converting' || item.SyncStatus == 'ReadyToTransfer' || item.SyncStatus == 'Transferring') {
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<div class="syncIndicator"><iron-icon icon="sync"></iron-icon></div>';
|
|
|
|
|
}
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '';
|
|
|
|
|
},
|
2015-06-01 22:46:06 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getAveragePrimaryImageAspectRatio: function (items) {
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var values = [];
|
2013-04-02 15:53:31 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var ratio = items[i].PrimaryImageAspectRatio || 0;
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!ratio) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
values[values.length] = ratio;
|
2013-04-10 12:33:19 -07:00
|
|
|
|
}
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (!values.length) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// Use the median
|
|
|
|
|
values.sort(function (a, b) { return a - b; });
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var half = Math.floor(values.length / 2);
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var result;
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (values.length % 2)
|
|
|
|
|
result = values[half];
|
|
|
|
|
else
|
|
|
|
|
result = (values[half - 1] + values[half]) / 2.0;
|
2013-10-12 09:55:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// If really close to 2:3 (poster image), just return 2:3
|
|
|
|
|
if (Math.abs(0.66666666667 - result) <= .15) {
|
|
|
|
|
return 0.66666666667;
|
|
|
|
|
}
|
2013-10-03 08:51:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// If really close to 16:9 (episode image), just return 16:9
|
|
|
|
|
if (Math.abs(1.777777778 - result) <= .2) {
|
|
|
|
|
return 1.777777778;
|
|
|
|
|
}
|
2013-10-03 08:51:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// If really close to 1 (square image), just return 1
|
|
|
|
|
if (Math.abs(1 - result) <= .15) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2013-10-03 08:51:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// If really close to 4:3 (poster image), just return 2:3
|
|
|
|
|
if (Math.abs(1.33333333333 - result) <= .15) {
|
|
|
|
|
return 1.33333333333;
|
|
|
|
|
}
|
2013-10-03 08:51:05 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return result;
|
|
|
|
|
},
|
2013-11-08 08:35:36 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
metroColors: ["#6FBD45", "#4BB3DD", "#4164A5", "#E12026", "#800080", "#E1B222", "#008040", "#0094FF", "#FF00C7", "#FF870F", "#7F0037"],
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getRandomMetroColor: function () {
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var index = Math.floor(Math.random() * (LibraryBrowser.metroColors.length - 1));
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return LibraryBrowser.metroColors[index];
|
|
|
|
|
},
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getMetroColor: function (str) {
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (str) {
|
|
|
|
|
var character = String(str.substr(0, 1).charCodeAt());
|
|
|
|
|
var sum = 0;
|
|
|
|
|
for (var i = 0; i < character.length; i++) {
|
|
|
|
|
sum += parseInt(character.charAt(i));
|
|
|
|
|
}
|
|
|
|
|
var index = String(sum).substr(-1);
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return LibraryBrowser.metroColors[index];
|
|
|
|
|
} else {
|
|
|
|
|
return LibraryBrowser.getRandomMetroColor();
|
2013-04-10 12:33:19 -07:00
|
|
|
|
}
|
2013-04-01 22:14:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-05 11:35:37 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderName: function (item, nameElem, linkToElement, context) {
|
2013-05-04 21:49:49 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var name = LibraryBrowser.getPosterViewDisplayName(item, false, false);
|
2013-05-27 18:59:26 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
Dashboard.setPageTitle(name);
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (linkToElement) {
|
|
|
|
|
nameElem.html('<a class="detailPageParentLink" href="' + LibraryBrowser.getHref(item, context) + '">' + name + '</a>');
|
|
|
|
|
} else {
|
|
|
|
|
nameElem.html(name);
|
|
|
|
|
}
|
|
|
|
|
},
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderParentName: function (item, parentNameElem, context) {
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = [];
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var contextParam = context ? ('&context=' + context) : '';
|
2014-09-29 21:47:30 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.AlbumArtists) {
|
|
|
|
|
html.push(LibraryBrowser.getArtistLinksHtml(item.AlbumArtists, "detailPageParentLink"));
|
|
|
|
|
} else if (item.ArtistItems && item.ArtistItems.length && item.Type == "MusicVideo") {
|
|
|
|
|
html.push(LibraryBrowser.getArtistLinksHtml(item.ArtistItems, "detailPageParentLink"));
|
|
|
|
|
} else if (item.SeriesName && item.Type == "Episode") {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.SeriesId + contextParam + '">' + item.SeriesName + '</a>');
|
|
|
|
|
}
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SeriesName && item.Type == "Season") {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.SeriesId + contextParam + '">' + item.SeriesName + '</a>');
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.ParentIndexNumber != null && item.Type == "Episode") {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.SeasonId + contextParam + '">' + item.SeasonName + '</a>');
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.Album && item.Type == "Audio" && (item.AlbumId || item.ParentId)) {
|
|
|
|
|
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + (item.AlbumId || item.ParentId) + contextParam + '">' + item.Album + '</a>');
|
2013-07-22 16:59:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.Album && item.Type == "MusicVideo" && item.AlbumId) {
|
|
|
|
|
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.AlbumId + contextParam + '">' + item.Album + '</a>');
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else if (item.Album) {
|
|
|
|
|
html.push(item.Album);
|
|
|
|
|
} else if (item.Type == 'Program' && item.EpisodeTitle) {
|
|
|
|
|
html.push(item.Name);
|
|
|
|
|
}
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (html.length) {
|
|
|
|
|
parentNameElem.show().html(html.join(' - '));
|
|
|
|
|
} else {
|
|
|
|
|
parentNameElem.hide();
|
|
|
|
|
}
|
|
|
|
|
},
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderLinks: function (linksElem, item) {
|
2013-04-08 22:06:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var links = [];
|
2013-04-08 22:06:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.HomePageUrl) {
|
|
|
|
|
links.push('<a class="textlink" href="' + item.HomePageUrl + '" target="_blank">' + Globalize.translate('ButtonWebsite') + '</a>');
|
|
|
|
|
}
|
2013-04-12 07:13:47 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ExternalUrls) {
|
2013-04-14 08:14:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = item.ExternalUrls.length; i < length; i++) {
|
2014-02-07 15:40:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var url = item.ExternalUrls[i];
|
2014-02-09 14:11:11 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
links.push('<a class="textlink" href="' + url.Url + '" target="_blank">' + url.Name + '</a>');
|
|
|
|
|
}
|
2013-10-26 16:19:26 -07:00
|
|
|
|
}
|
2013-04-08 22:06:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (links.length) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = links.join(' / ');
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html = Globalize.translate('ValueLinks', html);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
linksElem.innerHTML = html;
|
2016-03-16 22:04:32 -07:00
|
|
|
|
linksElem.classList.remove('hide');
|
2013-04-08 22:06:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
2016-03-16 22:04:32 -07:00
|
|
|
|
linksElem.classList.add('hide');
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
},
|
2013-04-08 22:06:13 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
showLayoutMenu: function (button, currentLayout, views) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
var dispatchEvent = true;
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
if (!views) {
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
dispatchEvent = false;
|
|
|
|
|
// Add banner and list once all screens support them
|
|
|
|
|
views = button.getAttribute('data-layouts');
|
2015-09-01 15:04:54 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
views = views ? views.split(',') : ['List', 'Poster', 'PosterCard', 'Thumb', 'ThumbCard'];
|
|
|
|
|
}
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var menuItems = views.map(function (v) {
|
|
|
|
|
return {
|
|
|
|
|
name: Globalize.translate('Option' + v),
|
|
|
|
|
id: v,
|
2016-04-23 21:24:16 -07:00
|
|
|
|
selected: currentLayout == v
|
2016-02-17 19:55:15 -07:00
|
|
|
|
};
|
|
|
|
|
});
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['actionsheet'], function (actionsheet) {
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
actionsheet.show({
|
|
|
|
|
items: menuItems,
|
|
|
|
|
positionTo: button,
|
|
|
|
|
callback: function (id) {
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
if (dispatchEvent) {
|
|
|
|
|
button.dispatchEvent(new CustomEvent('layoutchange', {
|
|
|
|
|
detail: {
|
|
|
|
|
viewStyle: id
|
|
|
|
|
},
|
|
|
|
|
bubbles: true,
|
|
|
|
|
cancelable: false
|
|
|
|
|
}));
|
|
|
|
|
} else {
|
|
|
|
|
// TODO: remove jQuery
|
|
|
|
|
require(['jQuery'], function ($) {
|
|
|
|
|
$(button).trigger('layoutchange', [id]);
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
});
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getQueryPagingHtml: function (options) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var startIndex = options.startIndex;
|
|
|
|
|
var limit = options.limit;
|
|
|
|
|
var totalRecordCount = options.totalRecordCount;
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (limit && options.updatePageSizeSetting !== false) {
|
|
|
|
|
try {
|
|
|
|
|
appStorage.setItem(options.pageSizeKey || pageSizeKey, limit);
|
|
|
|
|
} catch (e) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var recordsEnd = Math.min(startIndex + limit, totalRecordCount);
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// 20 is the minimum page size
|
|
|
|
|
var showControls = totalRecordCount > 20 || limit < totalRecordCount;
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="listPaging">';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (showControls) {
|
|
|
|
|
html += '<span style="vertical-align:middle;">';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var startAtDisplay = totalRecordCount ? startIndex + 1 : 0;
|
|
|
|
|
html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '</span>';
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (showControls || options.viewButton || options.filterButton || options.sortButton || options.addLayoutButton) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div style="display:inline-block;margin-left:10px;">';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (showControls) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-icon-button class="btnPreviousPage" icon="arrow-back" ' + (startIndex ? '' : 'disabled') + '></paper-icon-button>';
|
|
|
|
|
html += '<paper-icon-button class="btnNextPage" icon="arrow-forward" ' + (startIndex + limit >= totalRecordCount ? 'disabled' : '') + '></paper-icon-button>';
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.addLayoutButton) {
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-icon-button title="' + Globalize.translate('ButtonSelectView') + '" class="btnChangeLayout" data-layouts="' + (options.layouts || '') + '" onclick="LibraryBrowser.showLayoutMenu(this, \'' + (options.currentLayout || '') + '\');" icon="view-comfy"></paper-icon-button>';
|
|
|
|
|
}
|
2015-08-15 16:10:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.sortButton) {
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-icon-button class="btnSort" title="' + Globalize.translate('ButtonSort') + '" icon="sort-by-alpha"></paper-icon-button>';
|
|
|
|
|
}
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.filterButton) {
|
2016-02-14 13:34:54 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-icon-button class="btnFilter" title="' + Globalize.translate('ButtonFilter') + '" icon="filter-list"></paper-icon-button>';
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '</div>';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (showControls && options.showLimit) {
|
2015-06-18 21:23:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var id = "selectPageSize";
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-04-23 21:24:16 -07:00
|
|
|
|
var pageSizes = options.pageSizes || [20, 50, 100, 200, 300, 400, 500];
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var optionsHtml = pageSizes.map(function (val) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (limit == val) {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<option value="' + val + '" selected="selected">' + val + '</option>';
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
return '<option value="' + val + '">' + val + '</option>';
|
|
|
|
|
}
|
|
|
|
|
}).join('');
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// Add styles to defeat jquery mobile
|
|
|
|
|
html += '<div class="pageSizeContainer"><label class="labelPageSize" for="' + id + '">' + Globalize.translate('LabelLimit') + '</label><select style="width:auto;" class="selectPageSize" id="' + id + '" data-inline="true" data-mini="true">' + optionsHtml + '</select></div>';
|
|
|
|
|
}
|
2014-07-19 21:46:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '</div>';
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
showSortMenu: function (options) {
|
2015-09-17 20:43:30 -07:00
|
|
|
|
|
2016-03-23 12:03:17 -07:00
|
|
|
|
require(['dialogHelper', 'paper-radio-button', 'paper-radio-group'], function (dialogHelper) {
|
2015-09-17 20:43:30 -07:00
|
|
|
|
|
2016-03-23 12:03:17 -07:00
|
|
|
|
var dlg = dialogHelper.createDialog({
|
2016-02-17 19:55:15 -07:00
|
|
|
|
removeOnClose: true,
|
|
|
|
|
modal: false,
|
|
|
|
|
entryAnimationDuration: 160,
|
|
|
|
|
exitAnimationDuration: 200
|
|
|
|
|
});
|
2016-01-30 13:59:09 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
dlg.classList.add('ui-body-a');
|
|
|
|
|
dlg.classList.add('background-theme-a');
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-03-31 11:46:03 -07:00
|
|
|
|
html += '<div style="margin:0;padding:1.25em 1.5em 1.5em;">';
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<h2 style="margin:0 0 .5em;">';
|
|
|
|
|
html += Globalize.translate('HeaderSortBy');
|
|
|
|
|
html += '</h2>';
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-radio-group class="groupSortBy" selected="' + (options.query.SortBy || '').replace(',', '_') + '">';
|
|
|
|
|
for (var i = 0, length = options.items.length; i < length; i++) {
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var option = options.items[i];
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<paper-radio-button class="menuSortBy" style="display:block;" data-id="' + option.id + '" name="' + option.id.replace(',', '_') + '">' + option.name + '</paper-radio-button>';
|
|
|
|
|
}
|
|
|
|
|
html += '</paper-radio-group>';
|
|
|
|
|
|
|
|
|
|
html += '<h2 style="margin: 1em 0 .5em;">';
|
|
|
|
|
html += Globalize.translate('HeaderSortOrder');
|
|
|
|
|
html += '</h2>';
|
|
|
|
|
html += '<paper-radio-group class="groupSortOrder" selected="' + (options.query.SortOrder || 'Ascending') + '">';
|
|
|
|
|
html += '<paper-radio-button name="Ascending" style="display:block;" class="menuSortOrder block">' + Globalize.translate('OptionAscending') + '</paper-radio-button>';
|
|
|
|
|
html += '<paper-radio-button name="Descending" style="display:block;" class="menuSortOrder block">' + Globalize.translate('OptionDescending') + '</paper-radio-button>';
|
|
|
|
|
html += '</paper-radio-group>';
|
|
|
|
|
html += '</div>';
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
dlg.innerHTML = html;
|
|
|
|
|
document.body.appendChild(dlg);
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-26 21:39:11 -07:00
|
|
|
|
// Seeing an issue in Firefox and IE where it's initially visible in the bottom right, then moves to the center
|
|
|
|
|
var delay = browserInfo.animate ? 0 : 100;
|
2016-03-16 14:30:49 -07:00
|
|
|
|
setTimeout(function () {
|
2016-03-23 12:03:17 -07:00
|
|
|
|
dialogHelper.open(dlg);
|
2016-02-26 21:39:11 -07:00
|
|
|
|
}, delay);
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-03-16 14:30:49 -07:00
|
|
|
|
dlg.querySelector('.groupSortBy').addEventListener('iron-select', function () {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var newValue = this.selected.replace('_', ',');
|
|
|
|
|
var changed = options.query.SortBy != newValue;
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
options.query.SortBy = newValue;
|
|
|
|
|
options.query.StartIndex = 0;
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.callback && changed) {
|
2016-02-26 12:02:53 -07:00
|
|
|
|
options.callback();
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-03-16 14:30:49 -07:00
|
|
|
|
dlg.querySelector('.groupSortOrder').addEventListener('iron-select', function () {
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var newValue = this.selected;
|
|
|
|
|
var changed = options.query.SortOrder != newValue;
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
options.query.SortOrder = newValue;
|
|
|
|
|
options.query.StartIndex = 0;
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (options.callback && changed) {
|
2016-02-26 12:02:53 -07:00
|
|
|
|
options.callback();
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
2015-09-18 10:50:24 -07:00
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-08-25 19:13:28 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getRatingHtml: function (item, metascore) {
|
2013-05-05 20:58:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = "";
|
2013-05-05 21:50:40 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CommunityRating) {
|
2013-05-05 21:50:40 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += "<div class='starRating' title='" + item.CommunityRating + "'></div>";
|
|
|
|
|
html += '<div class="starRatingValue">';
|
|
|
|
|
html += item.CommunityRating.toFixed(1);
|
|
|
|
|
html += '</div>';
|
|
|
|
|
}
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CriticRating != null) {
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CriticRating >= 60) {
|
|
|
|
|
html += '<div class="fresh rottentomatoesicon" title="Rotten Tomatoes"></div>';
|
|
|
|
|
} else {
|
|
|
|
|
html += '<div class="rotten rottentomatoesicon" title="Rotten Tomatoes"></div>';
|
|
|
|
|
}
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="criticRating" title="Rotten Tomatoes">' + item.CriticRating + '%</div>';
|
|
|
|
|
}
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//if (item.Metascore && metascore !== false) {
|
2014-01-14 22:01:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// if (item.Metascore >= 60) {
|
|
|
|
|
// html += '<div class="metascore metascorehigh" title="Metascore">' + item.Metascore + '</div>';
|
|
|
|
|
// }
|
|
|
|
|
// else if (item.Metascore >= 40) {
|
|
|
|
|
// html += '<div class="metascore metascoremid" title="Metascore">' + item.Metascore + '</div>';
|
|
|
|
|
// } else {
|
|
|
|
|
// html += '<div class="metascore metascorelow" title="Metascore">' + item.Metascore + '</div>';
|
|
|
|
|
// }
|
|
|
|
|
//}
|
2014-01-14 22:01:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getItemProgressBarHtml: function (item) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2014-01-14 13:24:56 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Recording" && item.CompletionPercentage) {
|
2014-01-14 22:01:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<progress class="itemProgressBar recordingProgressBar" min="0" max="100" value="' + item.CompletionPercentage + '"></progress>';
|
|
|
|
|
}
|
2014-01-14 22:01:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var pct = item.PlayedPercentage;
|
2013-04-15 19:36:12 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (pct && pct < 100) {
|
2013-04-15 19:36:12 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<progress class="itemProgressBar" min="0" max="100" value="' + pct + '"></progress>';
|
|
|
|
|
}
|
2013-04-15 19:36:12 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return null;
|
|
|
|
|
},
|
2013-05-03 19:33:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getUserDataButtonHtml: function (method, itemId, btnCssClass, icon, tooltip, style) {
|
2015-08-17 21:22:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var tagName = style == 'fab' ? 'paper-fab' : 'paper-icon-button';
|
2015-01-03 12:38:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return '<' + tagName + ' title="' + tooltip + '" data-itemid="' + itemId + '" icon="' + icon + '" class="' + btnCssClass + '" onclick="LibraryBrowser.' + method + '(this);return false;"></' + tagName + '>';
|
2015-01-03 12:38:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2015-01-03 12:38:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getUserDataIconsHtml: function (item, includePlayed, style) {
|
2013-05-03 19:33:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2013-05-03 19:33:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var userData = item.UserData || {};
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var itemId = item.Id;
|
2013-04-14 08:14:10 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (includePlayed !== false) {
|
|
|
|
|
var tooltipPlayed = Globalize.translate('TooltipPlayed');
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == 'Video' || item.Type == 'Series' || item.Type == 'Season' || item.Type == 'BoxSet' || item.Type == 'Playlist') {
|
|
|
|
|
if (item.Type != 'TvChannel') {
|
|
|
|
|
if (userData.Played) {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating btnUserItemRatingOn', 'check', tooltipPlayed, style);
|
|
|
|
|
} else {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating', 'check', tooltipPlayed, style);
|
|
|
|
|
}
|
2015-07-24 08:20:11 -07:00
|
|
|
|
}
|
2015-06-14 10:55:42 -07:00
|
|
|
|
}
|
2013-04-10 12:33:19 -07:00
|
|
|
|
}
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var tooltipLike = Globalize.translate('TooltipLike');
|
|
|
|
|
var tooltipDislike = Globalize.translate('TooltipDislike');
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (typeof userData.Likes == "undefined") {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating', 'thumb-down', tooltipDislike, style);
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating', 'thumb-up', tooltipLike, style);
|
|
|
|
|
}
|
|
|
|
|
else if (userData.Likes) {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating', 'thumb-down', tooltipDislike, style);
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating btnUserItemRatingOn', 'thumb-up', tooltipLike, style);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating btnUserItemRatingOn', 'thumb-down', tooltipDislike, style);
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating', 'thumb-up', tooltipLike, style);
|
|
|
|
|
}
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var tooltipFavorite = Globalize.translate('TooltipFavorite');
|
|
|
|
|
if (userData.IsFavorite) {
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating btnUserItemRatingOn', 'favorite', tooltipFavorite, style);
|
|
|
|
|
} else {
|
|
|
|
|
html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating', 'favorite', tooltipFavorite, style);
|
|
|
|
|
}
|
2013-04-10 06:53:44 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return html;
|
|
|
|
|
},
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
markPlayed: function (link) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var id = link.getAttribute('data-itemid');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var markAsPlayed = !link.classList.contains('btnUserItemRatingOn');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (markAsPlayed) {
|
|
|
|
|
ApiClient.markPlayed(Dashboard.getCurrentUserId(), id);
|
|
|
|
|
link.classList.add('btnUserItemRatingOn');
|
|
|
|
|
} else {
|
|
|
|
|
ApiClient.markUnplayed(Dashboard.getCurrentUserId(), id);
|
|
|
|
|
link.classList.remove('btnUserItemRatingOn');
|
|
|
|
|
}
|
|
|
|
|
},
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
markFavorite: function (link) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
// TODO: remove jQuery
|
|
|
|
|
require(['jQuery'], function ($) {
|
|
|
|
|
var id = link.getAttribute('data-itemid');
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var $link = $(link);
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var markAsFavorite = !$link.hasClass('btnUserItemRatingOn');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
ApiClient.updateFavoriteStatus(Dashboard.getCurrentUserId(), id, markAsFavorite);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (markAsFavorite) {
|
|
|
|
|
$link.addClass('btnUserItemRatingOn');
|
|
|
|
|
} else {
|
|
|
|
|
$link.removeClass('btnUserItemRatingOn');
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
markLike: function (link) {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
// TODO: remove jQuery
|
|
|
|
|
require(['jQuery'], function ($) {
|
|
|
|
|
var id = link.getAttribute('data-itemid');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var $link = $(link);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (!$link.hasClass('btnUserItemRatingOn')) {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, true);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.addClass('btnUserItemRatingOn');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
} else {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.removeClass('btnUserItemRatingOn');
|
|
|
|
|
}
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.prev().removeClass('btnUserItemRatingOn');
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
markDislike: function (link) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
// TODO: remove jQuery
|
2016-03-24 11:11:03 -07:00
|
|
|
|
require(['jQuery'], function ($) {
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var id = link.getAttribute('data-itemid');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var $link = $(link);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
if (!$link.hasClass('btnUserItemRatingOn')) {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, false);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.addClass('btnUserItemRatingOn');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
} else {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id);
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.removeClass('btnUserItemRatingOn');
|
|
|
|
|
}
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
$link.next().removeClass('btnUserItemRatingOn');
|
|
|
|
|
});
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderDetailImage: function (elem, item, editable, preferThumb) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imageTags = item.ImageTags || {};
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.PrimaryImageTag) {
|
|
|
|
|
imageTags.Primary = item.PrimaryImageTag;
|
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var url;
|
|
|
|
|
var shape = 'portrait';
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imageHeight = 360;
|
|
|
|
|
var detectRatio = false;
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (preferThumb && imageTags.Thumb) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.ImageTags.Thumb
|
|
|
|
|
});
|
|
|
|
|
shape = 'thumb';
|
|
|
|
|
}
|
|
|
|
|
else if (imageTags.Primary) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.ImageTags.Primary
|
|
|
|
|
});
|
|
|
|
|
detectRatio = true;
|
|
|
|
|
}
|
|
|
|
|
else if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.BackdropImageTags[0]
|
|
|
|
|
});
|
|
|
|
|
shape = 'thumb';
|
|
|
|
|
}
|
|
|
|
|
else if (imageTags.Thumb) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.ImageTags.Thumb
|
|
|
|
|
});
|
|
|
|
|
shape = 'thumb';
|
|
|
|
|
}
|
|
|
|
|
else if (imageTags.Disc) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Disc",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.ImageTags.Disc
|
|
|
|
|
});
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
url = ApiClient.getScaledImageUrl(item.AlbumId, {
|
|
|
|
|
type: "Primary",
|
|
|
|
|
maxHeight: imageHeight,
|
|
|
|
|
tag: item.AlbumPrimaryImageTag
|
|
|
|
|
});
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicGenre") {
|
|
|
|
|
url = "css/images/items/detail/audio.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.MediaType == "Game" || item.Type == "GameGenre") {
|
|
|
|
|
url = "css/images/items/detail/game.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.Type == "Person") {
|
|
|
|
|
url = "css/images/items/detail/person.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.Type == "Genre" || item.Type == "Studio") {
|
|
|
|
|
url = "css/images/items/detail/video.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else if (item.Type == "TvChannel") {
|
|
|
|
|
url = "css/images/items/detail/tv.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
url = "css/images/items/detail/video.png";
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div style="position:relative;">';
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (editable) {
|
|
|
|
|
html += "<a onclick='LibraryBrowser.editImages(\"" + item.Id + "\");' class='itemDetailGalleryLink' href='#'>";
|
|
|
|
|
}
|
2015-02-05 22:59:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (detectRatio && item.PrimaryImageAspectRatio) {
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.PrimaryImageAspectRatio >= 1.48) {
|
|
|
|
|
shape = 'thumb';
|
|
|
|
|
} else if (item.PrimaryImageAspectRatio >= .85 && item.PrimaryImageAspectRatio <= 1.34) {
|
|
|
|
|
shape = 'square';
|
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += "<img class='itemDetailImage lazy' src='css/images/empty.png' />";
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (editable) {
|
|
|
|
|
html += "</a>";
|
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var progressHtml = item.IsFolder || !item.UserData ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += '<div class="detailImageProgressContainer">';
|
|
|
|
|
if (progressHtml) {
|
|
|
|
|
html += progressHtml;
|
|
|
|
|
}
|
|
|
|
|
html += "</div>";
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html += "</div>";
|
2015-06-28 08:43:49 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.innerHTML = html;
|
2015-09-24 22:15:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (shape == 'thumb') {
|
|
|
|
|
elem.classList.add('thumbDetailImageContainer');
|
|
|
|
|
elem.classList.remove('portraitDetailImageContainer');
|
|
|
|
|
elem.classList.remove('squareDetailImageContainer');
|
|
|
|
|
}
|
|
|
|
|
else if (shape == 'square') {
|
|
|
|
|
elem.classList.remove('thumbDetailImageContainer');
|
|
|
|
|
elem.classList.remove('portraitDetailImageContainer');
|
|
|
|
|
elem.classList.add('squareDetailImageContainer');
|
|
|
|
|
} else {
|
|
|
|
|
elem.classList.remove('thumbDetailImageContainer');
|
|
|
|
|
elem.classList.add('portraitDetailImageContainer');
|
|
|
|
|
elem.classList.remove('squareDetailImageContainer');
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}
|
2015-02-02 21:54:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var img = elem.querySelector('img');
|
|
|
|
|
img.onload = function () {
|
|
|
|
|
if (img.src.indexOf('empty.png') == -1) {
|
|
|
|
|
img.classList.add('loaded');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
ImageLoader.lazyImage(img, url);
|
|
|
|
|
},
|
2015-08-23 19:08:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
refreshDetailImageUserData: function (elem, item) {
|
2015-08-23 19:08:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var progressHtml = item.IsFolder || !item.UserData ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
|
2015-08-23 19:08:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var detailImageProgressContainer = elem.querySelector('.detailImageProgressContainer');
|
2015-08-23 19:08:20 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
detailImageProgressContainer.innerHTML = progressHtml || '';
|
|
|
|
|
},
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getDisplayTime: function (date) {
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if ((typeof date).toString().toLowerCase() === 'string') {
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
date = parseISO8601Date(date, { toLocal: true });
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} catch (err) {
|
|
|
|
|
return date;
|
|
|
|
|
}
|
2015-05-22 12:16:14 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var lower = date.toLocaleTimeString().toLowerCase();
|
|
|
|
|
|
|
|
|
|
var hours = date.getHours();
|
|
|
|
|
var minutes = date.getMinutes();
|
|
|
|
|
|
|
|
|
|
var text;
|
|
|
|
|
|
|
|
|
|
if (lower.indexOf('am') != -1 || lower.indexOf('pm') != -1) {
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var suffix = hours > 11 ? 'pm' : 'am';
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hours = (hours % 12) || 12;
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
text = hours;
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (minutes) {
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
text += ':';
|
|
|
|
|
if (minutes < 10) {
|
|
|
|
|
text += '0';
|
|
|
|
|
}
|
|
|
|
|
text += minutes;
|
|
|
|
|
}
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
text += suffix;
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
text = hours + ':';
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
|
|
|
|
if (minutes < 10) {
|
|
|
|
|
text += '0';
|
|
|
|
|
}
|
|
|
|
|
text += minutes;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return text;
|
|
|
|
|
},
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
getMiscInfoHtml: function (item) {
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var miscInfo = [];
|
|
|
|
|
var text, date;
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsSeries && !item.IsRepeat) {
|
2015-05-22 12:16:14 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
require(['livetvcss']);
|
2016-04-26 11:28:04 -07:00
|
|
|
|
miscInfo.push('<span class="newTvProgram">' + Globalize.translate('AttributeNew') + '</span>');
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsLive) {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-04-26 11:28:04 -07:00
|
|
|
|
miscInfo.push('<span class="liveTvProgram">' + Globalize.translate('AttributeLive') + '</span>');
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ChannelId && item.ChannelName) {
|
|
|
|
|
if (item.Type == 'Program' || item.Type == 'Recording') {
|
|
|
|
|
miscInfo.push('<a class="textlink" href="itemdetails.html?id=' + item.ChannelId + '">' + item.ChannelName + '</a>');
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Episode" || item.MediaType == 'Photo') {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.PremiereDate) {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
try {
|
|
|
|
|
date = parseISO8601Date(item.PremiereDate, { toLocal: true });
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
text = date.toLocaleDateString();
|
|
|
|
|
miscInfo.push(text);
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
console.log("Error parsing date: " + item.PremiereDate);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-04 12:53:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.StartDate) {
|
2013-05-04 12:53:13 -07:00
|
|
|
|
|
|
|
|
|
try {
|
2016-02-17 19:55:15 -07:00
|
|
|
|
date = parseISO8601Date(item.StartDate, { toLocal: true });
|
2013-05-04 12:53:13 -07:00
|
|
|
|
|
2013-05-11 23:05:51 -07:00
|
|
|
|
text = date.toLocaleDateString();
|
2013-05-04 12:53:13 -07:00
|
|
|
|
miscInfo.push(text);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
|
|
|
|
|
if (item.Type != "Recording") {
|
|
|
|
|
text = LibraryBrowser.getDisplayTime(date);
|
|
|
|
|
miscInfo.push(text);
|
|
|
|
|
}
|
2013-05-04 12:53:13 -07:00
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log("Error parsing date: " + item.PremiereDate);
|
2013-05-04 12:53:13 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ProductionYear && item.Type == "Series") {
|
2013-12-04 13:55:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Status == "Continuing") {
|
|
|
|
|
miscInfo.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear));
|
2013-12-21 11:37:34 -07:00
|
|
|
|
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (item.ProductionYear) {
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
text = item.ProductionYear;
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.EndDate) {
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
try {
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var endYear = parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
|
2013-06-09 06:35:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (endYear != item.ProductionYear) {
|
|
|
|
|
text += "-" + parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
|
|
|
|
|
}
|
2013-06-29 09:21:22 -07:00
|
|
|
|
|
2013-06-09 06:35:50 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
catch (e) {
|
|
|
|
|
console.log("Error parsing date: " + item.EndDate);
|
|
|
|
|
}
|
2013-04-24 13:28:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(text);
|
|
|
|
|
}
|
2013-04-24 13:28:42 -07:00
|
|
|
|
}
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type != "Series" && item.Type != "Episode" && item.MediaType != 'Photo') {
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.ProductionYear) {
|
2013-04-25 17:52:55 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(item.ProductionYear);
|
2013-04-24 13:28:42 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
else if (item.PremiereDate) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
text = parseISO8601Date(item.PremiereDate, { toLocal: true }).getFullYear();
|
|
|
|
|
miscInfo.push(text);
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
console.log("Error parsing date: " + item.PremiereDate);
|
|
|
|
|
}
|
2013-04-24 13:28:42 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var minutes;
|
2013-12-03 21:18:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.RunTimeTicks && item.Type != "Series") {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Type == "Audio") {
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(Dashboard.getDisplayTime(item.RunTimeTicks));
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
minutes = item.RunTimeTicks / 600000000;
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
minutes = minutes || 1;
|
2013-04-22 13:06:43 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(Math.round(minutes) + "min");
|
|
|
|
|
}
|
2013-04-22 13:06:43 -07:00
|
|
|
|
}
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.CumulativeRunTimeTicks && item.Type != "Series" && item.Type != "Season") {
|
2015-08-19 21:06:49 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(Dashboard.getDisplayTime(item.CumulativeRunTimeTicks));
|
|
|
|
|
}
|
2015-08-19 21:06:49 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
|
|
|
|
|
miscInfo.push(item.OfficialRating);
|
|
|
|
|
}
|
2013-05-04 12:53:13 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.IsHD) {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
miscInfo.push(Globalize.translate('LabelHDProgram'));
|
|
|
|
|
}
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//if (item.Audio) {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
// miscInfo.push(item.Audio);
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
//}
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Video3DFormat) {
|
|
|
|
|
miscInfo.push("3D");
|
|
|
|
|
}
|
2013-04-10 22:27:27 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == 'Photo' && item.Width && item.Height) {
|
|
|
|
|
miscInfo.push(item.Width + "x" + item.Height);
|
|
|
|
|
}
|
2014-08-28 17:49:25 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.SeriesTimerId) {
|
|
|
|
|
var html = '';
|
|
|
|
|
html += '<a href="livetvseriestimer.html?id=' + item.SeriesTimerId + '" title="' + Globalize.translate('ButtonViewSeriesRecording') + '">';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '</a>';
|
|
|
|
|
miscInfo.push(html);
|
|
|
|
|
require(['livetvcss']);
|
|
|
|
|
}
|
|
|
|
|
else if (item.TimerId) {
|
2015-08-18 12:45:41 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
html += '<a href="livetvtimer.html?id=' + item.TimerId + '">';
|
|
|
|
|
html += '<div class="timerCircle"></div>';
|
|
|
|
|
html += '</a>';
|
|
|
|
|
miscInfo.push(html);
|
|
|
|
|
require(['livetvcss']);
|
|
|
|
|
}
|
2015-08-16 21:08:33 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return miscInfo.join(' ');
|
|
|
|
|
},
|
2013-04-10 10:11:23 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderOverview: function (elems, item) {
|
2013-04-21 21:38:03 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
for (var i = 0, length = elems.length; i < length; i++) {
|
|
|
|
|
var elem = elems[i];
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var overview = item.Overview || '';
|
2013-04-21 21:38:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (overview) {
|
|
|
|
|
elem.innerHTML = overview;
|
2015-08-17 21:22:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.classList.remove('empty');
|
2016-03-16 22:04:32 -07:00
|
|
|
|
|
|
|
|
|
var anchors = elem.querySelectorAll('a');
|
|
|
|
|
for (var j = 0, length2 = anchors.length; j < length2; j++) {
|
|
|
|
|
anchors[j].setAttribute("target", "_blank");
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
elem.innerHTML = '';
|
2015-08-17 21:22:45 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.classList.add('empty');
|
|
|
|
|
}
|
2016-03-16 22:04:32 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-21 21:38:03 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderStudios: function (elem, item, isStatic) {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.Studios && item.Studios.length && item.Type != "Series") {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = item.Studios.length; i < length; i++) {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (i > 0) {
|
|
|
|
|
html += ' / ';
|
|
|
|
|
}
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isStatic) {
|
|
|
|
|
html += item.Studios[i].Name;
|
|
|
|
|
} else {
|
|
|
|
|
html += '<a class="textlink" href="itemdetails.html?id=' + item.Studios[i].Id + '">' + item.Studios[i].Name + '</a>';
|
|
|
|
|
}
|
2015-07-03 04:51:45 -07:00
|
|
|
|
}
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var translationKey = item.Studios.length > 1 ? "ValueStudios" : "ValueStudio";
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
html = Globalize.translate(translationKey, html);
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.show().html(html).trigger('create');
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} else {
|
|
|
|
|
elem.hide();
|
|
|
|
|
}
|
|
|
|
|
},
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderGenres: function (elem, item, limit, isStatic) {
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var html = '';
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var genres = item.Genres || [];
|
2013-07-18 07:59:58 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
for (var i = 0, length = genres.length; i < length; i++) {
|
2013-06-29 09:21:22 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (limit && i >= limit) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-01-31 19:41:35 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (i > 0) {
|
|
|
|
|
html += '<span> / </span>';
|
|
|
|
|
}
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var param = item.Type == "Audio" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre";
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.MediaType == "Game") {
|
|
|
|
|
param = "gamegenre";
|
|
|
|
|
}
|
2013-04-10 12:25:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (isStatic) {
|
|
|
|
|
html += genres[i];
|
|
|
|
|
} else {
|
|
|
|
|
html += '<a class="textlink" href="itemdetails.html?' + param + '=' + ApiClient.encodeName(genres[i]) + '">' + genres[i] + '</a>';
|
|
|
|
|
}
|
2015-07-03 04:51:45 -07:00
|
|
|
|
}
|
2013-12-21 11:37:34 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.html(html).trigger('create');
|
|
|
|
|
},
|
2013-04-18 07:27:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderPremiereDate: function (elem, item) {
|
|
|
|
|
if (item.PremiereDate) {
|
|
|
|
|
try {
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var date = parseISO8601Date(item.PremiereDate, { toLocal: true });
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var translationKey = new Date().getTime() > date.getTime() ? "ValuePremiered" : "ValuePremieres";
|
2014-09-16 18:38:50 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
elem.show().html(Globalize.translate(translationKey, date.toLocaleDateString()));
|
2013-04-24 13:28:42 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
} catch (err) {
|
|
|
|
|
elem.hide();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2013-04-18 22:08:18 -07:00
|
|
|
|
elem.hide();
|
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
},
|
2013-04-12 17:42:51 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderAwardSummary: function (elem, item) {
|
|
|
|
|
if (item.AwardSummary) {
|
|
|
|
|
elem.show().html(Globalize.translate('ValueAwards', item.AwardSummary));
|
|
|
|
|
} else {
|
|
|
|
|
elem.hide();
|
|
|
|
|
}
|
|
|
|
|
},
|
2014-01-18 11:10:21 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
renderDetailPageBackdrop: function (page, item) {
|
2013-05-15 07:12:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var screenWidth = screen.availWidth;
|
2013-05-15 07:12:24 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
var imgUrl;
|
|
|
|
|
var hasbackdrop = false;
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
var itemBackdropElement = page.querySelector('#itemBackdrop');
|
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
|
|
|
|
index: 0,
|
|
|
|
|
maxWidth: screenWidth,
|
|
|
|
|
tag: item.BackdropImageTags[0]
|
|
|
|
|
});
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
itemBackdropElement.classList.add('noFade');
|
|
|
|
|
itemBackdropElement.classList.remove('noBackdrop');
|
|
|
|
|
ImageLoader.lazyImage(itemBackdropElement, imgUrl);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hasbackdrop = true;
|
|
|
|
|
}
|
|
|
|
|
else if (item.ParentBackdropItemId && item.ParentBackdropImageTags && item.ParentBackdropImageTags.length) {
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
imgUrl = ApiClient.getScaledImageUrl(item.ParentBackdropItemId, {
|
|
|
|
|
type: 'Backdrop',
|
|
|
|
|
index: 0,
|
|
|
|
|
tag: item.ParentBackdropImageTags[0],
|
|
|
|
|
maxWidth: screenWidth
|
|
|
|
|
});
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
itemBackdropElement.classList.add('noFade');
|
|
|
|
|
itemBackdropElement.classList.remove('noBackdrop');
|
|
|
|
|
ImageLoader.lazyImage(itemBackdropElement, imgUrl);
|
2016-02-17 19:55:15 -07:00
|
|
|
|
hasbackdrop = true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
|
2016-03-16 22:04:32 -07:00
|
|
|
|
itemBackdropElement.classList.add('noBackdrop');
|
|
|
|
|
itemBackdropElement.style.backgroundImage = '';
|
2016-02-17 19:55:15 -07:00
|
|
|
|
}
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return hasbackdrop;
|
2013-05-14 21:05:52 -07:00
|
|
|
|
}
|
2016-02-17 19:55:15 -07:00
|
|
|
|
};
|
2015-08-18 10:54:29 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
if (libraryBrowser.enableFullPaperTabs()) {
|
|
|
|
|
document.documentElement.classList.add('fullPaperLibraryTabs');
|
|
|
|
|
} else {
|
|
|
|
|
document.documentElement.classList.add('basicPaperLibraryTabs');
|
2013-04-28 13:02:14 -07:00
|
|
|
|
}
|
2013-04-10 12:33:19 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
return libraryBrowser;
|
2015-08-24 20:13:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
})(window, document, screen);
|
2015-08-24 20:13:04 -07:00
|
|
|
|
|
2016-02-17 19:55:15 -07:00
|
|
|
|
window.LibraryBrowser = libraryBrowser;
|
|
|
|
|
|
|
|
|
|
return libraryBrowser;
|
|
|
|
|
});
|