jellyfin-web/dashboard-ui/scripts/librarybrowser.js

2896 lines
99 KiB
JavaScript
Raw Normal View History

2014-07-15 12:16:16 -07:00
var LibraryBrowser = (function (window, document, $, screen, store) {
2013-04-08 22:06:13 -07:00
2014-12-18 21:20:07 -07:00
var pageSizeKey = 'pagesize_v4';
2014-08-01 19:34:45 -07:00
var defaultBackground = "#333";
2013-04-21 21:38:03 -07:00
2013-04-10 12:33:19 -07:00
return {
2014-09-09 17:28:59 -07:00
getDefaultPageSize: function (key, defaultValue) {
2013-04-09 21:38:04 -07:00
2014-09-09 17:28:59 -07:00
var saved = store.getItem(key || pageSizeKey);
2013-05-15 12:26:52 -07:00
if (saved) {
return parseInt(saved);
}
2014-09-09 17:28:59 -07:00
if (defaultValue) {
return defaultValue;
}
// Chrome seems to have virtualization built-in and can handle large lists easily
var isChrome = $.browser.chrome;
2014-12-10 23:20:28 -07:00
return isChrome ? 200 : 100;
2013-04-10 12:33:19 -07:00
},
2013-04-01 22:14:37 -07:00
getDefaultItemsView: function (view, mobileView) {
2014-08-16 22:38:13 -07:00
return $.browser.mobile ? mobileView : view;
},
2013-10-12 09:55:58 -07:00
loadSavedQueryValues: function (key, query) {
2014-07-15 12:16:16 -07:00
var values = store.getItem(key + '_' + Dashboard.getCurrentUserId());
2013-10-16 19:43:55 -07:00
2014-04-06 10:53:23 -07:00
if (values) {
2013-10-12 09:55:58 -07:00
2014-04-06 10:53:23 -07:00
values = JSON.parse(values);
2013-10-12 09:55:58 -07:00
2014-04-06 10:53:23 -07:00
return $.extend(query, values);
}
2013-10-12 09:55:58 -07:00
return query;
},
saveQueryValues: function (key, query) {
var values = {};
if (query.SortBy) {
values.SortBy = query.SortBy;
}
if (query.SortOrder) {
values.SortOrder = query.SortOrder;
}
2014-07-02 11:34:08 -07:00
try {
2014-07-15 12:16:16 -07:00
store.setItem(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values));
2014-07-02 11:34:08 -07:00
} catch (e) {
2014-07-02 11:34:08 -07:00
}
2013-10-12 09:55:58 -07:00
},
2014-01-14 08:50:39 -07:00
saveViewSetting: function (key, value) {
2014-07-02 11:34:08 -07:00
try {
2014-07-15 12:16:16 -07:00
store.setItem(key + '_' + Dashboard.getCurrentUserId() + '_view', value);
2014-07-02 11:34:08 -07:00
} catch (e) {
}
2014-01-13 09:25:18 -07:00
},
getSavedViewSetting: function (key) {
var deferred = $.Deferred();
2014-07-15 12:16:16 -07:00
var val = store.getItem(key + '_' + Dashboard.getCurrentUserId() + '_view');
2014-01-13 09:25:18 -07:00
deferred.resolveWith(null, [val]);
return deferred.promise();
},
2013-10-12 09:55:58 -07:00
2013-10-24 10:49:24 -07:00
getDateParamValue: function (date) {
function formatDigit(i) {
return i < 10 ? "0" + i : i;
}
var d = date;
return "" + d.getFullYear() + formatDigit(d.getMonth() + 1) + formatDigit(d.getDate()) + formatDigit(d.getHours()) + formatDigit(d.getMinutes()) + formatDigit(d.getSeconds());
},
playAllFromHere: function (fn, index) {
2014-08-21 08:55:35 -07:00
fn(index, 100, "MediaSources,Chapters").done(function (result) {
2014-08-21 08:55:35 -07:00
MediaController.play({
items: result.Items
});
});
},
queueAllFromHere: function (query, index) {
fn(index, 100, "MediaSources,Chapters").done(function (result) {
2014-08-21 08:55:35 -07:00
MediaController.queue({
items: result.Items
});
});
},
getItemCountsHtml: function (options, item) {
var counts = [];
var childText;
if (item.Type == 'Playlist') {
childText = '';
if (item.CumulativeRunTimeTicks) {
var minutes = item.CumulativeRunTimeTicks / 600000000;
minutes = minutes || 1;
2014-09-14 17:39:24 -07:00
childText += Globalize.translate('ValueMinutes', Math.round(minutes));
} else {
2014-09-14 17:39:24 -07:00
childText += Globalize.translate('ValueMinutes', 0);
}
counts.push(childText);
}
else if (options.context == "movies") {
if (item.MovieCount) {
2014-09-16 18:38:50 -07:00
childText = item.MovieCount == 1 ?
Globalize.translate('ValueOneMovie') :
Globalize.translate('ValueMovieCount', item.MovieCount);
counts.push(childText);
}
if (item.TrailerCount) {
2014-09-16 18:38:50 -07:00
childText = item.TrailerCount == 1 ?
Globalize.translate('ValueOneTrailer') :
Globalize.translate('ValueTrailerCount', item.TrailerCount);
counts.push(childText);
}
2014-07-19 21:46:29 -07:00
} else if (options.context == "tv") {
if (item.SeriesCount) {
2014-09-16 18:38:50 -07:00
childText = item.SeriesCount == 1 ?
Globalize.translate('ValueOneSeries') :
Globalize.translate('ValueSeriesCount', item.SeriesCount);
counts.push(childText);
}
if (item.EpisodeCount) {
2014-09-16 18:38:50 -07:00
childText = item.EpisodeCount == 1 ?
Globalize.translate('ValueOneEpisode') :
Globalize.translate('ValueEpisodeCount', item.EpisodeCount);
counts.push(childText);
}
2014-07-19 21:46:29 -07:00
} else if (options.context == "games") {
if (item.GameCount) {
2014-09-16 18:38:50 -07:00
childText = item.GameCount == 1 ?
Globalize.translate('ValueOneGame') :
Globalize.translate('ValueGameCount', item.GameCount);
counts.push(childText);
}
2014-07-19 21:46:29 -07:00
} else if (options.context == "music") {
2013-09-18 16:33:27 -07:00
if (item.AlbumCount) {
2014-09-16 18:38:50 -07:00
childText = item.AlbumCount == 1 ?
Globalize.translate('ValueOneAlbum') :
Globalize.translate('ValueAlbumCount', item.AlbumCount);
2013-09-18 16:33:27 -07:00
counts.push(childText);
}
if (item.SongCount) {
2014-09-16 18:38:50 -07:00
childText = item.SongCount == 1 ?
Globalize.translate('ValueOneSong') :
Globalize.translate('ValueSongCount', item.SongCount);
counts.push(childText);
}
if (item.MusicVideoCount) {
2014-09-16 18:38:50 -07:00
childText = item.MusicVideoCount == 1 ?
Globalize.translate('ValueOneMusicVideo') :
Globalize.translate('ValueMusicVideoCount', item.MusicVideoCount);
counts.push(childText);
}
}
2013-12-29 19:41:22 -07:00
return counts.join(' • ');
},
2015-03-13 10:25:28 -07:00
getArtistLinksHtml: function (artists, cssClass) {
2015-03-13 08:54:20 -07:00
var html = [];
for (var i = 0, length = artists.length; i < length; i++) {
var artist = artists[i];
var css = cssClass ? (' class="' + cssClass + '"') : '';
html.push('<a' + css + ' href="itembynamedetails.html?context=music&id=' + artist.Id + '">' + artist.Name + '</a>');
}
html = html.join(' / ');
return html;
},
2014-08-07 21:36:51 -07:00
showPlayMenu: function (positionTo, itemId, itemType, isFolder, mediaType, resumePositionTicks, showAddToPlaylist) {
2013-05-23 18:47:07 -07:00
2014-09-15 20:33:30 -07:00
var externalPlayers = ExternalPlayer.getExternalPlayers();
2014-03-29 11:20:42 -07:00
if (!resumePositionTicks && mediaType != "Audio" && !isFolder) {
2014-09-15 20:33:30 -07:00
if (!externalPlayers.length || mediaType != "Video") {
MediaController.play(itemId);
return;
}
2013-04-30 10:21:21 -07:00
}
$('.playFlyout').popup("close").remove();
var html = '<div data-role="popup" class="playFlyout" data-history="false" data-theme="a">';
2013-04-30 10:21:21 -07:00
2014-06-25 08:12:39 -07:00
html += '<ul data-role="listview" style="min-width: 180px;">';
2014-09-14 17:39:24 -07:00
html += '<li data-role="list-divider">' + Globalize.translate('HeaderMenu') + '</li>';
2013-04-30 10:21:21 -07:00
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="MediaController.play(\'' + itemId + '\');LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonPlay') + '</a></li>';
2013-04-30 10:21:21 -07:00
2014-09-15 20:33:30 -07:00
if (!isFolder && externalPlayers.length) {
html += '<li><a href="#" onclick="LibraryBrowser.closePlayMenu();ExternalPlayer.showMenu(\'' + itemId + '\');">' + Globalize.translate('ButtonPlayExternalPlayer') + '</a></li>';
}
2013-06-07 09:06:32 -07:00
if (resumePositionTicks) {
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="MediaController.play({ids:[\'' + itemId + '\'],startPositionTicks:' + resumePositionTicks + '});LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonResume') + '</a></li>';
2013-06-07 09:06:32 -07:00
}
2013-04-30 10:21:21 -07:00
2014-07-15 12:16:16 -07:00
if (MediaController.canQueueMediaType(mediaType, itemType)) {
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="MediaController.queue(\'' + itemId + '\');LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonQueue') + '</a></li>';
2013-04-30 10:21:21 -07:00
}
2014-06-28 12:35:30 -07:00
if (itemType == "Audio" || itemType == "MusicAlbum" || itemType == "MusicArtist" || itemType == "MusicGenre") {
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="MediaController.instantMix(\'' + itemId + '\');LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonInstantMix') + '</a></li>';
2014-06-28 12:35:30 -07:00
}
if (isFolder || itemType == "MusicArtist" || itemType == "MusicGenre") {
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="MediaController.shuffle(\'' + itemId + '\');LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonShuffle') + '</a></li>';
2014-06-28 12:35:30 -07:00
}
2014-08-07 21:36:51 -07:00
if (showAddToPlaylist) {
2014-09-14 17:39:24 -07:00
html += '<li><a href="#" onclick="PlaylistManager.showPanel([\'' + itemId + '\']);LibraryBrowser.closePlayMenu();">' + Globalize.translate('ButtonAddToPlaylist') + '</a></li>';
2014-08-07 21:36:51 -07:00
}
2013-04-30 10:21:21 -07:00
html += '</ul>';
html += '</div>';
$($.mobile.activePage).append(html);
$('.playFlyout').popup({ positionTo: positionTo || "window" }).trigger('create').popup("open").on("popupafterclose", function () {
$(this).off("popupafterclose").remove();
2014-08-24 08:48:06 -07:00
}).parents(".ui-popup-container");
2013-04-30 10:21:21 -07:00
},
closePlayMenu: function () {
$('.playFlyout').popup("close").remove();
},
2014-08-07 21:36:51 -07:00
getMoreCommands: function (item, user) {
var commands = [];
2015-02-02 21:54:52 -07:00
if (BoxSetEditor.supportsAddingToCollection(item)) {
commands.push('addtocollection');
}
2014-08-07 21:36:51 -07:00
if (PlaylistManager.supportsPlaylists(item)) {
commands.push('playlist');
}
2014-10-06 16:58:46 -07:00
if (item.Type == 'BoxSet' || item.Type == 'Playlist') {
commands.push('delete');
}
2015-02-05 22:39:07 -07:00
else if (item.CanDelete) {
2014-10-06 16:58:46 -07:00
commands.push('delete');
}
2014-12-19 23:06:27 -07:00
if (user.Policy.IsAdministrator) {
2014-08-07 21:36:51 -07:00
if (item.Type != "Recording" && item.Type != "Program") {
commands.push('edit');
}
}
2014-10-06 16:58:46 -07:00
commands.push('refresh');
2015-02-11 09:23:24 -07:00
if (SyncManager.isAvailable(item, user)) {
2014-12-10 23:20:28 -07:00
commands.push('sync');
}
2015-02-05 22:39:07 -07:00
if (item.CanDownload) {
commands.push('download');
}
2014-08-07 21:36:51 -07:00
return commands;
},
2014-10-06 16:58:46 -07:00
refreshItem: function (itemId) {
ApiClient.refreshItem(itemId, {
Recursive: true,
ImageRefreshMode: 'FullRefresh',
MetadataRefreshMode: 'FullRefresh',
ReplaceAllImages: false,
ReplaceAllMetadata: true
});
Dashboard.alert(Globalize.translate('MessageRefreshQueued'));
},
deleteItem: function (itemId) {
// The timeout allows the flyout to close
setTimeout(function () {
var msg = "<p>" + Globalize.translate('ConfirmDeleteItem') + "</p>";
Dashboard.confirm(msg, Globalize.translate('HeaderDeleteItem'), function (result) {
if (result) {
ApiClient.deleteItem(itemId);
$(LibraryBrowser).trigger('itemdeleting', [itemId]);
}
});
2014-12-26 10:45:06 -07:00
2014-10-06 16:58:46 -07:00
}, 250);
},
2014-08-07 21:36:51 -07:00
showMoreCommands: function (positionTo, itemId, commands) {
$('.playFlyout').popup("close").remove();
var html = '<div data-role="popup" class="playFlyout" data-history="false" data-theme="a">';
html += '<ul data-role="listview" style="min-width: 180px;">';
2014-09-14 17:39:24 -07:00
html += '<li data-role="list-divider">' + Globalize.translate('HeaderMenu') + '</li>';
2014-08-07 21:36:51 -07:00
2015-02-02 21:54:52 -07:00
if (commands.indexOf('addtocollection') != -1) {
2015-02-05 22:39:07 -07:00
html += '<li data-icon="plus"><a href="#" onclick="$(\'.playFlyout\').popup(\'close\');BoxSetEditor.showPanel([\'' + itemId + '\']);">' + Globalize.translate('ButtonAddToCollection') + '</a></li>';
2015-02-02 21:54:52 -07:00
}
2014-08-07 21:36:51 -07:00
if (commands.indexOf('playlist') != -1) {
2015-02-05 22:39:07 -07:00
html += '<li data-icon="plus"><a href="#" onclick="$(\'.playFlyout\').popup(\'close\');PlaylistManager.showPanel([\'' + itemId + '\']);">' + Globalize.translate('ButtonAddToPlaylist') + '</a></li>';
2014-08-07 21:36:51 -07:00
}
2015-02-05 22:39:07 -07:00
if (commands.indexOf('delete') != -1) {
html += '<li data-icon="delete"><a class="btnMoreMenuDelete" href="#" onclick="$(\'.playFlyout\').popup(\'close\');LibraryBrowser.deleteItem([\'' + itemId + '\']);">' + Globalize.translate('ButtonDelete') + '</a></li>';
2014-08-07 21:36:51 -07:00
}
2015-02-05 22:39:07 -07:00
if (commands.indexOf('download') != -1) {
var downloadHref = ApiClient.getUrl("Items/" + itemId + "/Download", {
api_key: ApiClient.accessToken()
});
html += '<li data-icon="arrow-d"><a class="btnMoreMenuDownload" data-ajax="false" href="' + downloadHref + '" onclick="$(\'.playFlyout\').popup(\'close\');">' + Globalize.translate('ButtonDownload') + '</a></li>';
2014-10-06 16:58:46 -07:00
}
2015-02-05 22:39:07 -07:00
if (commands.indexOf('edit') != -1) {
html += '<li data-icon="edit"><a href="edititemmetadata.html?id=' + itemId + '">' + Globalize.translate('ButtonEdit') + '</a></li>';
}
if (commands.indexOf('refresh') != -1) {
html += '<li data-icon="refresh"><a class="btnMoreMenuRefresh" href="#">' + Globalize.translate('ButtonRefresh') + '</a></li>';
2014-10-06 16:58:46 -07:00
}
2014-08-07 21:36:51 -07:00
html += '</ul>';
html += '</div>';
$($.mobile.activePage).append(html);
2014-10-06 16:58:46 -07:00
var elem = $('.playFlyout').popup({ positionTo: positionTo || "window" }).trigger('create').popup("open").on("popupafterclose", function () {
2014-08-07 21:36:51 -07:00
$(this).off("popupafterclose").remove();
2014-10-06 16:58:46 -07:00
});
$('.btnMoreMenuRefresh', elem).on('click', function () {
$('.playFlyout').popup('close');
2014-10-06 16:58:46 -07:00
ApiClient.refreshItem(itemId, {
Recursive: true,
ImageRefreshMode: 'FullRefresh',
MetadataRefreshMode: 'FullRefresh',
ReplaceAllImages: false,
ReplaceAllMetadata: true
}).done(function () {
});
});
2014-08-07 21:36:51 -07:00
},
2014-07-16 20:17:14 -07:00
getHref: function (item, context, topParentId) {
2013-04-30 10:21:21 -07:00
2014-08-14 06:24:30 -07:00
var href = LibraryBrowser.getHrefInternal(item, context);
2014-05-29 12:34:20 -07:00
if (context) {
href += href.indexOf('?') == -1 ? "?context=" : "&context=";
href += context;
2014-05-29 12:34:20 -07:00
}
if (topParentId == null && context != 'playlists') {
2014-07-16 20:17:14 -07:00
topParentId = LibraryMenu.getTopParentId();
}
if (topParentId) {
href += href.indexOf('?') == -1 ? "?topParentId=" : "&topParentId=";
href += topParentId;
}
2014-05-29 12:34:20 -07:00
return href;
},
2014-08-14 06:24:30 -07:00
getHrefInternal: function (item, context) {
2013-04-10 22:27:27 -07:00
2014-04-07 21:17:18 -07:00
if (!item) {
throw new Error('item cannot be null');
}
2014-05-04 17:46:52 -07:00
2013-04-10 22:27:27 -07:00
if (item.url) {
return item.url;
}
2013-04-27 06:05:33 -07:00
// Handle search hints
var id = item.Id || item.ItemId;
2014-06-07 12:46:24 -07:00
if (item.CollectionType == 'livetv') {
return 'livetvsuggested.html';
}
if (item.CollectionType == 'channels') {
2015-05-07 07:04:10 -07:00
if (AppInfo.enableLatestChannelItems) {
return 'channelslatest.html';
} else {
return 'channels.html';
}
2014-06-07 12:46:24 -07:00
}
2014-08-14 06:24:30 -07:00
if (context != 'folders') {
if (item.CollectionType == 'movies') {
2015-04-02 09:26:42 -07:00
return 'moviesrecommended.html?topParentId=' + item.Id;
2014-08-14 06:24:30 -07:00
}
2014-06-07 12:46:24 -07:00
2014-08-14 06:24:30 -07:00
if (item.CollectionType == 'boxsets') {
return 'collections.html?topParentId=' + item.Id;
}
2014-05-06 19:28:19 -07:00
2014-08-14 06:24:30 -07:00
if (item.CollectionType == 'tvshows') {
return 'tvrecommended.html?topParentId=' + item.Id;
}
2014-05-06 19:28:19 -07:00
2014-08-14 06:24:30 -07:00
if (item.CollectionType == 'music') {
return 'musicrecommended.html?topParentId=' + item.Id;
}
2014-05-06 19:28:19 -07:00
2014-08-14 06:24:30 -07:00
if (item.CollectionType == 'games') {
return 'gamesrecommended.html?topParentId=' + item.Id;
}
if (item.CollectionType == 'playlists') {
return 'playlists.html?topParentId=' + item.Id;
}
2015-04-19 08:54:20 -07:00
if (item.CollectionType == 'photos') {
return 'photos.html?topParentId=' + item.Id;
}
}
2014-05-06 19:28:19 -07:00
if (item.Type == 'CollectionFolder') {
return 'itemlist.html?topParentId=' + item.Id + '&parentid=' + item.Id;
}
2015-04-19 08:54:20 -07:00
if (item.Type == "PhotoAlbum" && context == 'photos') {
return "photos.html?parentId=" + id;
}
if (item.Type == "Playlist") {
return "playlistedit.html?id=" + id;
}
2014-03-17 18:45:41 -07:00
if (item.Type == "TvChannel") {
return "livetvchannel.html?id=" + id;
}
2014-03-18 10:05:57 -07:00
if (item.Type == "Channel") {
return "channelitems.html?id=" + id;
}
if (item.Type == "ChannelFolderItem") {
return "channelitems.html?id=" + item.ChannelId + '&folderId=' + item.Id;
2014-05-04 17:46:52 -07:00
}
2014-01-02 21:58:22 -07:00
if (item.Type == "Program") {
return "livetvprogram.html?id=" + id;
}
2013-04-10 22:27:27 -07:00
if (item.Type == "Series") {
2013-04-27 06:05:33 -07:00
return "itemdetails.html?id=" + id;
2013-04-10 22:27:27 -07:00
}
2013-04-16 21:21:24 -07:00
if (item.Type == "Season") {
2013-04-27 06:05:33 -07:00
return "itemdetails.html?id=" + id;
2013-04-16 21:21:24 -07:00
}
2013-04-10 22:27:27 -07:00
if (item.Type == "BoxSet") {
2013-04-27 06:05:33 -07:00
return "itemdetails.html?id=" + id;
2013-04-10 22:27:27 -07:00
}
2013-04-22 08:10:54 -07:00
if (item.Type == "MusicAlbum") {
2013-04-27 06:05:33 -07:00
return "itemdetails.html?id=" + id;
2013-04-22 08:10:54 -07:00
}
2013-09-21 14:00:04 -07:00
if (item.Type == "GameSystem") {
return "itemdetails.html?id=" + id;
}
if (item.Type == "Genre") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
}
2013-06-10 20:31:00 -07:00
if (item.Type == "MusicGenre") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
2013-06-10 20:31:00 -07:00
}
2013-07-01 10:17:33 -07:00
if (item.Type == "GameGenre") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
2013-07-01 10:17:33 -07:00
}
if (item.Type == "Studio") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
}
if (item.Type == "Person") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
}
2013-12-28 16:09:24 -07:00
if (item.Type == "Recording") {
return "livetvrecording.html?id=" + id;
}
2013-11-26 09:22:11 -07:00
2013-11-21 13:48:26 -07:00
if (item.Type == "MusicArtist") {
2014-06-28 12:35:30 -07:00
return "itembynamedetails.html?id=" + id;
2013-04-21 21:38:03 -07:00
}
2013-04-10 22:27:27 -07:00
2014-05-29 12:34:20 -07:00
if (item.IsFolder) {
return id ? "itemlist.html?parentId=" + id : "#";
}
2013-04-10 22:27:27 -07:00
2014-05-29 12:34:20 -07:00
return "itemdetails.html?id=" + id;
2013-04-10 22:27:27 -07:00
},
2013-04-21 21:38:03 -07:00
getImageUrl: function (item, type, index, options) {
2013-04-11 20:50:47 -07:00
options = options || {};
2013-04-21 21:38:03 -07:00
options.type = type;
options.index = index;
if (type == 'Backdrop') {
options.tag = item.BackdropImageTags[index];
2014-07-19 21:46:29 -07:00
} else if (type == 'Screenshot') {
2013-05-07 11:57:16 -07:00
options.tag = item.ScreenshotImageTags[index];
2014-07-19 21:46:29 -07:00
} else if (type == 'Primary') {
2013-05-07 11:57:16 -07:00
options.tag = item.PrimaryImageTag || item.ImageTags[type];
2014-07-19 21:46:29 -07:00
} else {
2013-04-21 21:38:03 -07:00
options.tag = item.ImageTags[type];
}
2013-04-27 06:05:33 -07:00
// For search hints
return ApiClient.getScaledImageUrl(item.Id || item.ItemId, options);
2013-04-11 20:50:47 -07:00
},
2014-08-16 22:38:13 -07:00
getListViewIndex: function (item, options) {
2014-08-16 22:38:13 -07:00
if (options.index == 'disc') {
2014-09-14 17:39:24 -07:00
return item.ParentIndexNumber == null ? '' : Globalize.translate('ValueDiscNumber', item.ParentIndexNumber);
2014-08-16 22:38:13 -07:00
}
var sortBy = (options.sortBy || '').toLowerCase();
var code, name;
if (sortBy.indexOf('sortname') == 0) {
if (item.Type == 'Episode') return '';
// SortName
2015-01-27 15:45:59 -07:00
name = (item.SortName || item.Name || '?')[0].toUpperCase();
code = name.charCodeAt(0);
if (code < 65 || code > 90) {
return '#';
}
return name.toUpperCase();
}
if (sortBy.indexOf('officialrating') == 0) {
2014-09-14 17:39:24 -07:00
return item.OfficialRating || Globalize.translate('HeaderUnrated');
}
if (sortBy.indexOf('communityrating') == 0) {
if (item.CommunityRating == null) {
2014-09-14 17:39:24 -07:00
return Globalize.translate('HeaderUnrated');
}
return Math.floor(item.CommunityRating);
}
if (sortBy.indexOf('criticrating') == 0) {
if (item.CriticRating == null) {
2014-09-14 17:39:24 -07:00
return Globalize.translate('HeaderUnrated');
}
return Math.floor(item.CriticRating);
}
if (sortBy.indexOf('metascore') == 0) {
if (item.Metascore == null) {
2014-09-14 17:39:24 -07:00
return Globalize.translate('HeaderUnrated');
}
return Math.floor(item.Metascore);
}
if (sortBy.indexOf('albumartist') == 0) {
// SortName
if (!item.AlbumArtist) return '';
name = item.AlbumArtist[0].toUpperCase();
code = name.charCodeAt(0);
if (code < 65 || code > 90) {
return '#';
}
return name.toUpperCase();
}
return '';
},
2013-04-10 22:27:27 -07:00
2014-08-01 19:34:45 -07:00
getUserDataCssClass: function (key) {
2014-09-29 21:47:30 -07:00
2014-10-04 11:05:24 -07:00
if (!key) return '';
return 'libraryItemUserData' + key.replace(new RegExp(' ', 'g'), '');
2014-07-26 10:30:15 -07:00
},
getListViewHtml: function (options) {
var outerHtml = "";
2014-07-26 10:30:15 -07:00
outerHtml += '<ul data-role="listview" class="itemsListview">';
if (options.title) {
outerHtml += '<li data-role="list-divider">';
outerHtml += options.title;
outerHtml += '</li>';
}
var index = 0;
var groupTitle = '';
outerHtml += options.items.map(function (item) {
var html = '';
if (options.showIndex !== false) {
2014-08-16 22:38:13 -07:00
var itemGroupTitle = LibraryBrowser.getListViewIndex(item, options);
if (itemGroupTitle != groupTitle) {
html += '<li data-role="list-divider">';
html += itemGroupTitle;
html += '</li>';
groupTitle = itemGroupTitle;
}
}
var dataAttributes = LibraryBrowser.getItemDataAttributes(item, options, index);
2014-07-19 21:46:29 -07:00
2014-08-15 09:35:41 -07:00
var cssClass = options.smallIcon ? 'ui-li-has-icon listItem' : 'ui-li-has-thumb listItem';
2014-07-19 21:46:29 -07:00
if (item.UserData) {
2014-07-26 10:30:15 -07:00
cssClass += ' ' + LibraryBrowser.getUserDataCssClass(item.UserData.Key);
2014-07-19 21:46:29 -07:00
}
2014-08-30 07:26:29 -07:00
var href = LibraryBrowser.getHref(item, options.context);
2015-05-14 10:16:29 -07:00
html += '<li class="' + cssClass + '"' + dataAttributes + ' data-itemid="' + item.Id + '" data-playlistitemid="' + (item.PlaylistItemId || '') + '" data-href="' + href + '" data-icon="false">';
2014-08-30 07:26:29 -07:00
2015-03-01 22:16:29 -07:00
var defaultAction = options.defaultAction;
if (defaultAction == 'play' || defaultAction == 'playallfromhere') {
if (item.PlayAccess != 'Full') {
defaultAction = null;
}
}
2015-05-09 21:29:04 -07:00
var defaultActionAttribute = defaultAction ? (' data-action="' + defaultAction + '" class="itemWithAction mediaItem"') : ' class="mediaItem"';
html += '<a' + defaultActionAttribute + ' href="' + href + '">';
var imgUrl;
2014-08-15 09:35:41 -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-08-15 09:35:41 -07:00
if (item.ImageTags.Primary) {
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
2014-08-15 09:35:41 -07:00
width: downloadWidth,
tag: item.ImageTags.Primary,
type: "Primary",
2014-07-07 18:41:03 -07:00
index: 0,
minScale: minScale
});
}
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
imgUrl = ApiClient.getScaledImageUrl(item.AlbumId, {
type: "Primary",
2014-08-15 09:35:41 -07:00
width: downloadWidth,
tag: item.AlbumPrimaryImageTag,
minScale: minScale
});
}
else if (item.AlbumId && item.SeriesPrimaryImageTag) {
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
type: "Primary",
2014-08-15 09:35:41 -07:00
width: downloadWidth,
tag: item.SeriesPrimaryImageTag,
minScale: minScale
});
}
else if (item.ParentPrimaryImageTag) {
imgUrl = ApiClient.getImageUrl(item.ParentPrimaryImageItemId, {
type: "Primary",
2014-08-15 09:35:41 -07:00
width: downloadWidth,
tag: item.ParentPrimaryImageTag,
minScale: minScale
});
}
if (imgUrl) {
2015-01-22 23:15:15 -07:00
var minLazyIndex = 16;
2014-08-15 09:35:41 -07:00
if (options.smallIcon) {
2015-01-22 23:15:15 -07:00
if (index < minLazyIndex) {
2014-08-15 09:35:41 -07:00
html += '<div class="listviewIcon ui-li-icon" style="background-image:url(\'' + imgUrl + '\');"></div>';
} else {
html += '<div class="listviewIcon ui-li-icon lazy" data-src="' + imgUrl + '"></div>';
}
} else {
2015-01-22 23:15:15 -07:00
if (index < minLazyIndex) {
2014-08-15 09:35:41 -07:00
html += '<div class="listviewImage ui-li-thumb" style="background-image:url(\'' + imgUrl + '\');"></div>';
} else {
html += '<div class="listviewImage ui-li-thumb lazy" data-src="' + imgUrl + '"></div>';
}
}
}
var textlines = [];
if (item.Type == 'Episode') {
2014-09-14 17:39:24 -07:00
textlines.push(item.SeriesName || '&nbsp;');
2014-07-19 21:46:29 -07:00
} else if (item.Type == 'MusicAlbum') {
2014-09-14 17:39:24 -07:00
textlines.push(item.AlbumArtist || '&nbsp;');
}
2014-08-17 11:12:17 -07:00
var displayName = LibraryBrowser.getPosterViewDisplayName(item);
if (options.showIndexNumber && item.IndexNumber != null) {
displayName = item.IndexNumber + ". " + displayName;
}
textlines.push(displayName);
2014-08-15 09:35:41 -07:00
if (item.Type == 'Audio') {
2015-03-13 10:25:28 -07:00
textlines.push(item.ArtistItems.map(function (a) {
return a.Name;
}).join(', ') || '&nbsp;');
2014-08-15 09:35:41 -07:00
}
if (item.Type == 'Game') {
2014-09-14 17:39:24 -07:00
textlines.push(item.GameSystem || '&nbsp;');
}
else if (item.Type == 'MusicGenre') {
2014-09-14 17:39:24 -07:00
textlines.push('&nbsp;');
}
else if (item.Type == 'MusicArtist') {
2014-09-14 17:39:24 -07:00
textlines.push('&nbsp;');
}
else {
textlines.push(LibraryBrowser.getMiscInfoHtml(item));
}
html += '<h3>';
html += textlines[0];
html += '</h3>';
if (textlines.length > 1) {
html += '<p>';
html += textlines[1];
html += '</p>';
}
html += '<div class="ui-li-aside">';
html += textlines[2] || LibraryBrowser.getRatingHtml(item, false);
html += '</div>';
if (item.Type == 'Series' || item.Type == 'Season' || item.Type == 'BoxSet' || item.MediaType == 'Video') {
if (item.UserData.UnplayedItemCount) {
2015-01-05 20:25:23 -07:00
//html += '<span class="ui-li-count">' + item.UserData.UnplayedItemCount + '</span>';
2014-07-19 21:46:29 -07:00
} else if (item.UserData.Played && item.Type != 'TvChannel') {
html += '<div class="playedIndicator"><div class="ui-icon-check ui-btn-icon-notext"></div></div>';
}
}
html += '</a>';
2015-05-14 10:16:29 -07:00
html += '<button type="button" data-role="none" class="listviewMenuButton imageButton listViewMoreButton" data-icon="none">';
html += '<i class="fa fa-ellipsis-v"></i>';
html += '</button>';
html += '</li>';
2014-08-21 08:55:35 -07:00
index++;
return html;
}).join('');
outerHtml += '</ul>';
return outerHtml;
},
getItemDataAttributes: function (item, options, index) {
2014-07-19 21:46:29 -07:00
var atts = [];
2014-08-05 21:18:13 -07:00
var itemCommands = LibraryBrowser.getItemCommands(item, options);
2014-07-19 21:46:29 -07:00
atts.push('data-itemid="' + item.Id + '"');
atts.push('data-commands="' + itemCommands.join(',') + '"');
atts.push('data-context="' + (options.context || '') + '"');
atts.push('data-itemtype="' + item.Type + '"');
atts.push('data-mediatype="' + (item.MediaType || '') + '"');
2015-03-04 13:37:35 -07:00
if (item.UserData.PlaybackPositionTicks) {
atts.push('data-positionticks="' + (item.UserData.PlaybackPositionTicks || 0) + '"');
}
2014-07-19 21:46:29 -07:00
atts.push('data-playaccess="' + (item.PlayAccess || '') + '"');
atts.push('data-locationtype="' + (item.LocationType || '') + '"');
atts.push('data-index="' + index + '"');
2014-07-19 21:46:29 -07:00
2015-05-14 19:16:57 -07:00
if (options.showDetailsMenu) {
atts.push('data-detailsmenu="true"');
}
2014-07-19 21:46:29 -07:00
var html = atts.join(' ');
if (html) {
html = ' ' + html;
}
return html;
},
2014-08-05 21:18:13 -07:00
getItemCommands: function (item, options) {
2014-07-19 21:46:29 -07:00
var itemCommands = [];
//if (MediaController.canPlay(item)) {
// itemCommands.push('playmenu');
//}
if (item.Type != "Recording" && item.Type != "Program") {
itemCommands.push('edit');
}
if (item.LocalTrailerCount) {
itemCommands.push('trailer');
}
if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist" || item.Type == "MusicGenre") {
2014-07-19 21:46:29 -07:00
itemCommands.push('instantmix');
}
if (item.IsFolder || item.Type == "MusicArtist" || item.Type == "MusicGenre") {
itemCommands.push('shuffle');
}
if (PlaylistManager.supportsPlaylists(item)) {
2014-08-05 21:18:13 -07:00
if (options.showRemoveFromPlaylist) {
itemCommands.push('removefromplaylist');
} else {
itemCommands.push('playlist');
}
}
2015-01-23 21:50:45 -07:00
if (BoxSetEditor.supportsAddingToCollection(item)) {
itemCommands.push('addtocollection');
}
2014-08-21 08:55:35 -07:00
if (options.playFromHere) {
itemCommands.push('playfromhere');
itemCommands.push('queuefromhere');
}
2014-11-18 19:45:12 -07:00
// There's no detail page with a dedicated delete function
2015-01-23 21:50:45 -07:00
if (item.Type == 'Playlist' || item.Type == 'BoxSet') {
2015-02-05 22:39:07 -07:00
if (item.CanDelete) {
itemCommands.push('delete');
}
2014-11-18 19:45:12 -07:00
}
2014-12-10 23:20:28 -07:00
if (SyncManager.isAvailable(item)) {
itemCommands.push('sync');
}
2014-07-19 21:46:29 -07:00
return itemCommands;
},
2015-05-06 20:11:51 -07:00
screenWidth: function () {
2015-05-06 22:12:13 -07:00
2015-05-06 20:11:51 -07:00
var screenWidth = $(window).width();
return screenWidth;
},
2015-05-16 12:09:02 -07:00
shapes: ['square', 'portrait', 'banner', 'smallBackdrop', 'homePageSmallBackdrop', 'backdrop', 'overflowBackdrop', 'overflowPortrait', 'overflowSquare'],
2015-05-06 21:14:35 -07:00
getPostersPerRow: function (screenWidth) {
2015-05-06 20:11:51 -07:00
2015-05-06 22:12:13 -07:00
function getValue(shape) {
2015-05-06 20:11:51 -07:00
2015-05-06 22:12:13 -07:00
var div = $('<div class="card ' + shape + 'Card"><div class="cardBox"><div class="cardImage"></div></div></div>').appendTo(document.body);
var width = screenWidth / $('.cardImage', div).innerWidth();
div.remove();
2015-05-13 22:42:55 -07:00
return Math.floor(width);
2015-05-06 22:12:13 -07:00
}
2015-05-06 20:11:51 -07:00
2015-05-06 22:12:13 -07:00
var info = {};
2015-05-06 20:11:51 -07:00
2015-05-16 12:09:02 -07:00
for (var i = 0, length = LibraryBrowser.shapes.length; i < length; i++) {
var currentShape = LibraryBrowser.shapes[i];
info[currentShape] = getValue(currentShape);
}
2015-05-06 22:12:13 -07:00
return info;
2015-05-06 20:11:51 -07:00
},
2015-05-06 21:14:35 -07:00
posterSizes: [],
2015-05-06 20:11:51 -07:00
2015-05-06 21:14:35 -07:00
getPosterViewInfo: function () {
2015-05-06 20:11:51 -07:00
var screenWidth = LibraryBrowser.screenWidth();
2015-05-06 21:14:35 -07:00
var cachedResults = LibraryBrowser.posterSizes;
for (var i = 0, length = cachedResults.length; i < length; i++) {
2015-05-06 22:12:13 -07:00
2015-05-06 21:14:35 -07:00
if (cachedResults[i].screenWidth == screenWidth) {
return cachedResults[i];
}
}
var result = LibraryBrowser.getPosterViewInfoInternal(screenWidth);
cachedResults.push(result);
return result;
},
getPosterViewInfoInternal: function (screenWidth) {
var imagesPerRow = LibraryBrowser.getPostersPerRow(screenWidth);
2015-05-16 12:09:02 -07:00
var result = {};
result.screenWidth = screenWidth;
2015-05-12 21:55:19 -07:00
if (!AppInfo.hasLowImageBandwidth) {
2015-05-06 20:11:51 -07:00
screenWidth *= 1.25;
}
2015-05-16 12:09:02 -07:00
var roundTo = 100;
2015-05-06 21:14:35 -07:00
2015-05-16 12:09:02 -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
2015-05-16 12:09:02 -07:00
var shapeWidth = screenWidth / imagesPerRow[currentShape];
2015-05-06 21:14:35 -07:00
2015-05-16 12:09:02 -07:00
if (!AppInfo.isTouchPreferred) {
2015-05-06 21:14:35 -07:00
2015-05-16 12:09:02 -07:00
shapeWidth = Math.round(shapeWidth / roundTo) * roundTo;
}
2015-05-06 20:11:51 -07:00
2015-05-16 12:09:02 -07:00
result[currentShape + 'Width'] = Math.round(shapeWidth);
2015-05-06 22:12:13 -07:00
}
2015-05-16 12:09:02 -07:00
return result;
2015-05-06 20:11:51 -07:00
},
2013-04-10 22:27:27 -07:00
getPosterViewHtml: function (options) {
2013-04-02 15:53:31 -07:00
2013-04-10 12:33:19 -07:00
var items = options.items;
2013-10-24 10:49:24 -07:00
var currentIndexValue;
2013-04-02 15:53:31 -07:00
2013-04-25 17:52:55 -07:00
options.shape = options.shape || "portrait";
2013-04-10 12:33:19 -07:00
var html = "";
2013-04-02 15:53:31 -07:00
2015-05-12 06:58:03 -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
2014-08-01 19:34:45 -07:00
if (options.shape == 'auto' || options.shape == 'autohome') {
2014-01-04 22:15:38 -07:00
2015-05-12 06:58:03 -07:00
if (isThumbAspectRatio) {
2015-01-22 23:15:15 -07:00
options.shape = options.shape == 'auto' ? 'backdrop' : 'backdrop';
2015-05-12 06:58:03 -07:00
} else if (isSquareAspectRatio) {
2014-05-17 14:23:48 -07:00
options.coverImage = true;
2015-01-04 07:18:28 -07:00
options.shape = 'square';
2014-07-19 21:46:29 -07:00
} else if (primaryImageAspectRatio && primaryImageAspectRatio > 1.9) {
2014-05-17 14:23:48 -07:00
options.shape = 'banner';
options.coverImage = true;
2014-07-19 21:46:29 -07:00
} else if (primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 0.6666667) < .2) {
2015-01-22 23:15:15 -07:00
options.shape = options.shape == 'auto' ? 'portrait' : 'portrait';
2014-07-19 21:46:29 -07:00
} else {
2015-01-22 23:15:15 -07:00
options.shape = options.defaultShape || (options.shape == 'auto' ? 'portrait' : 'portrait');
2014-06-19 21:50:30 -07:00
}
2014-01-04 22:15:38 -07:00
}
2014-01-05 18:59:21 -07:00
2015-05-06 22:12:13 -07:00
var posterInfo = LibraryBrowser.getPosterViewInfo();
2015-05-06 20:11:51 -07:00
2015-05-16 12:09:02 -07:00
var thumbWidth = posterInfo.backdropWidth;
var posterWidth = posterInfo.portraitWidth;
var squareSize = posterInfo.squareWidth;
2015-05-06 22:12:13 -07:00
var bannerWidth = posterInfo.bannerWidth;
2015-05-12 06:58:03 -07:00
if (isThumbAspectRatio) {
posterWidth = thumbWidth;
}
else if (isSquareAspectRatio) {
posterWidth = squareSize;
}
2015-05-16 12:09:02 -07:00
if (options.shape == 'overflowBackdrop') {
thumbWidth = posterInfo.overflowBackdropWidth;
2015-05-06 22:12:13 -07:00
}
2015-05-16 12:09:02 -07:00
else if (options.shape == 'overflowPortrait') {
posterWidth = posterInfo.overflowPortraitWidth;
2015-05-12 06:58:03 -07:00
}
2015-05-16 12:09:02 -07:00
else if (options.shape == 'overflowSquare') {
squareSize = posterInfo.overflowSquareWidth;
2015-05-12 06:58:03 -07:00
}
2015-05-16 12:09:02 -07:00
else if (options.shape == 'smallBackdrop') {
thumbWidth = posterInfo.smallBackdropWidth;
2015-05-12 06:58:03 -07:00
}
2015-05-16 12:09:02 -07:00
else if (options.shape == 'homePageSmallBackdrop') {
thumbWidth = posterInfo.homePageSmallBackdropWidth;
posterWidth = posterInfo.homePageSmallBackdropWidth;
2015-05-06 22:12:13 -07:00
}
2015-05-10 06:06:12 -07:00
else if (options.shape == 'detailPagePortrait') {
posterWidth = 200;
}
2015-05-16 12:09:02 -07:00
else if (options.shape == 'detailPageSquare') {
posterWidth = 200;
squareSize = 200;
}
2015-05-10 06:06:12 -07:00
else if (options.shape == 'detailPage169') {
2015-05-11 16:04:16 -07:00
posterWidth = 320;
thumbWidth = 320;
2015-05-10 06:06:12 -07:00
}
2015-05-16 12:09:02 -07:00
2015-05-08 12:10:53 -07:00
var dateText;
2013-04-10 12:33:19 -07:00
for (var i = 0, length = items.length; i < length; i++) {
2013-04-02 15:53:31 -07:00
2013-04-25 17:52:55 -07:00
var item = items[i];
2013-04-02 15:53:31 -07:00
2015-05-08 12:10:53 -07:00
dateText = null;
2014-04-03 15:50:04 -07:00
primaryImageAspectRatio = LibraryBrowser.getAveragePrimaryImageAspectRatio([item]);
2014-01-22 17:39:26 -07:00
2015-03-19 10:34:53 -07:00
if (options.showPremiereDateIndex) {
2013-10-24 10:49:24 -07:00
2015-03-19 10:34:53 -07:00
if (item.PremiereDate) {
try {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
dateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.PremiereDate, { toLocal: true }), true);
2013-10-24 10:49:24 -07:00
2015-03-19 10:34:53 -07:00
} catch (err) {
}
}
2015-05-08 12:10:53 -07:00
var newIndexValue = dateText || Globalize.translate('HeaderUnknownDate');
2015-03-19 10:34:53 -07:00
2015-05-08 12:10:53 -07:00
if (newIndexValue != currentIndexValue) {
2015-03-19 10:34:53 -07:00
2015-05-08 12:10:53 -07:00
html += '<h2 class="timelineHeader detailSectionHeader" style="text-align:center;">' + newIndexValue + '</h2>';
currentIndexValue = newIndexValue;
2013-10-24 10:49:24 -07:00
}
}
2015-03-19 10:34:53 -07:00
else if (options.showStartDateIndex) {
if (item.StartDate) {
try {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
dateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.StartDate, { toLocal: true }), true);
2015-03-19 10:34:53 -07:00
} catch (err) {
}
}
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
var newIndexValue = dateText || Globalize.translate('HeaderUnknownDate');
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
if (newIndexValue != currentIndexValue) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
html += '<h2 class="timelineHeader detailSectionHeader" style="text-align:center;">' + newIndexValue + '</h2>';
currentIndexValue = newIndexValue;
2013-10-24 10:49:24 -07:00
}
2014-07-19 21:46:29 -07:00
} else if (options.timeline) {
2014-09-14 17:39:24 -07:00
var year = item.ProductionYear || Globalize.translate('HeaderUnknownYear');
2014-01-02 14:21:06 -07:00
if (year != currentIndexValue) {
html += '<h2 class="timelineHeader detailSectionHeader">' + year + '</h2>';
currentIndexValue = year;
}
}
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
html += LibraryBrowser.getPosterViewItemHtml(item, i, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth);
}
2013-04-02 15:53:31 -07:00
2015-05-08 12:10:53 -07:00
return html;
},
2013-12-22 10:16:24 -07:00
2015-05-08 12:10:53 -07:00
getPosterViewItemHtml: function (item, index, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth) {
2015-05-08 12:10:53 -07:00
var html = '';
var imgUrl = null;
var icon;
var background = null;
var width = null;
var height = null;
2014-06-30 21:06:28 -07:00
2015-05-08 12:10:53 -07:00
var forceName = false;
2014-06-30 21:06:28 -07:00
2015-05-08 12:10:53 -07:00
var enableImageEnhancers = options.enableImageEnhancers !== false;
2014-06-30 21:06:28 -07:00
2015-05-08 12:10:53 -07:00
if (options.autoThumb && item.ImageTags && item.ImageTags.Primary && item.PrimaryImageAspectRatio && item.PrimaryImageAspectRatio >= 1.5) {
2014-06-30 21:06:28 -07:00
2015-05-08 12:10:53 -07:00
width = posterWidth;
height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null;
2014-06-30 21:06:28 -07:00
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getImageUrl(item.Id, {
type: "Primary",
height: height,
width: width,
tag: item.ImageTags.Primary,
enableImageEnhancers: enableImageEnhancers
});
2013-04-25 17:52:55 -07:00
2015-05-08 12:10:53 -07:00
} else if (options.autoThumb && item.ImageTags && item.ImageTags.Thumb) {
2013-04-10 22:27:27 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (options.preferBackdrop && item.BackdropImageTags && item.BackdropImageTags.length) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (options.preferThumb && item.ImageTags && item.ImageTags.Thumb) {
2014-03-30 18:00:47 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (options.preferBanner && item.ImageTags && item.ImageTags.Banner) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (options.preferThumb && item.SeriesThumbImageTag && options.inheritThumb !== false) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
type: "Thumb",
maxWidth: thumbWidth,
tag: item.SeriesThumbImageTag,
enableImageEnhancers: enableImageEnhancers
});
2013-12-22 10:16:24 -07:00
2015-05-08 12:10:53 -07:00
} else if (options.preferThumb && item.ParentThumbItemId && options.inheritThumb !== false) {
2013-12-22 10:16:24 -07:00
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getThumbImageUrl(item.ParentThumbItemId, {
type: "Thumb",
maxWidth: thumbWidth,
enableImageEnhancers: enableImageEnhancers
});
2015-05-08 12:10:53 -07:00
} else if (options.preferThumb && item.BackdropImageTags && item.BackdropImageTags.length) {
2013-04-02 15:53:31 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
forceName = true;
2013-04-02 15:53:31 -07:00
2015-05-08 12:10:53 -07:00
} else if (item.ImageTags && item.ImageTags.Primary) {
2015-05-08 12:10:53 -07:00
width = posterWidth;
height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null;
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getImageUrl(item.Id, {
type: "Primary",
height: height,
width: width,
tag: item.ImageTags.Primary,
enableImageEnhancers: enableImageEnhancers
});
2015-05-08 12:10:53 -07:00
}
else if (item.ParentPrimaryImageTag) {
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getImageUrl(item.ParentPrimaryImageItemId, {
type: "Primary",
width: posterWidth,
tag: item.ParentPrimaryImageTag,
enableImageEnhancers: enableImageEnhancers
});
}
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
2015-05-08 12:10:53 -07:00
height = squareSize;
width = primaryImageAspectRatio ? Math.round(height * primaryImageAspectRatio) : null;
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getScaledImageUrl(item.AlbumId, {
type: "Primary",
height: height,
width: width,
tag: item.AlbumPrimaryImageTag,
enableImageEnhancers: enableImageEnhancers
});
2013-04-25 17:52:55 -07:00
2015-05-08 12:10:53 -07:00
}
else if (item.Type == 'Season' && item.ImageTags && item.ImageTags.Thumb) {
2013-04-10 22:27:27 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
}
else if (item.BackdropImageTags && item.BackdropImageTags.length) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (item.ImageTags && item.ImageTags.Thumb) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -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
2015-05-08 12:10:53 -07:00
} else if (item.SeriesThumbImageTag) {
2013-10-24 10:49:24 -07:00
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, {
type: "Thumb",
maxWidth: thumbWidth,
tag: item.SeriesThumbImageTag,
enableImageEnhancers: enableImageEnhancers
});
2013-04-10 22:27:27 -07:00
2015-05-08 12:10:53 -07:00
} else if (item.ParentThumbItemId) {
2015-05-08 12:10:53 -07:00
imgUrl = ApiClient.getThumbImageUrl(item, {
type: "Thumb",
maxWidth: thumbWidth,
enableImageEnhancers: enableImageEnhancers
});
2013-12-28 16:09:24 -07:00
2015-05-08 12:10:53 -07:00
} else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist") {
2013-12-28 16:09:24 -07:00
2015-05-08 12:10:53 -07:00
if (item.Name && options.showTitle) {
icon = 'fa-music';
}
background = defaultBackground;
2013-04-10 22:27:27 -07:00
2015-05-08 12:10:53 -07:00
} else if (item.Type == "Recording" || item.Type == "Program" || item.Type == "TvChannel") {
2015-05-08 12:10:53 -07:00
if (item.Name && options.showTitle) {
icon = 'fa-folder-open';
2013-04-03 05:03:13 -07:00
}
2013-04-10 12:33:19 -07:00
2015-05-08 12:10:53 -07:00
background = defaultBackground;
} else if (item.MediaType == "Video" || item.Type == "Season" || item.Type == "Series") {
2015-05-08 12:10:53 -07:00
if (item.Name && options.showTitle) {
icon = 'fa-video-camera';
2013-09-08 14:16:13 -07:00
}
2015-05-08 12:10:53 -07:00
background = defaultBackground;
} else if (item.Type == "Person") {
2013-09-08 14:16:13 -07:00
2015-05-08 12:10:53 -07:00
if (item.Name && options.showTitle) {
icon = 'fa-user';
}
background = defaultBackground;
} else {
if (item.Name && options.showTitle) {
icon = 'fa-folder-open';
}
background = defaultBackground;
}
2015-05-08 12:10:53 -07:00
var cssClass = "card";
2014-03-18 21:59:45 -07:00
2015-05-08 12:10:53 -07:00
cssClass += ' ' + options.shape + 'Card';
2015-05-08 12:10:53 -07:00
var mediaSourceCount = item.MediaSourceCount || 1;
2015-05-08 12:10:53 -07:00
var href = options.linkItem === false ? '#' : LibraryBrowser.getHref(item, options.context);
2015-05-08 12:10:53 -07:00
if (item.UserData) {
cssClass += ' ' + LibraryBrowser.getUserDataCssClass(item.UserData.Key);
}
2014-07-19 21:46:29 -07:00
2015-05-11 12:59:59 -07:00
if (options.showChildCountIndicator && item.ChildCount && options.showLatestItemsPopup !== false) {
2015-05-08 12:10:53 -07:00
cssClass += ' groupedCard';
}
2015-05-08 12:10:53 -07:00
if (options.showTitle && !options.overlayText) {
cssClass += ' bottomPaddedCard';
}
2015-05-08 12:10:53 -07:00
var dataAttributes = LibraryBrowser.getItemDataAttributes(item, options, index);
2014-05-10 22:11:53 -07:00
2015-05-08 12:10:53 -07:00
var defaultAction = options.defaultAction;
if (defaultAction == 'play' || defaultAction == 'playallfromhere') {
if (item.PlayAccess != 'Full') {
defaultAction = null;
2013-04-25 17:52:55 -07:00
}
2015-05-08 12:10:53 -07:00
}
var defaultActionAttribute = defaultAction ? (' data-action="' + defaultAction + '"') : '';
2013-04-03 21:21:46 -07:00
2015-05-08 12:10:53 -07:00
// card
html += '<div' + dataAttributes + ' class="' + cssClass + '">';
2013-04-03 21:21:46 -07:00
2015-05-08 12:10:53 -07:00
var style = "";
2015-05-08 12:10:53 -07:00
if (imgUrl && !options.lazy) {
style += 'background-image:url(\'' + imgUrl + '\');';
}
2015-05-08 12:10:53 -07:00
if (background) {
style += "background-color:" + background + ";";
}
2015-05-08 12:10:53 -07:00
var imageCssClass = 'cardImage';
2015-05-08 12:10:53 -07:00
if (icon) {
imageCssClass += " iconCardImage";
}
if (options.coverImage) {
imageCssClass += " coveredCardImage";
}
if (options.centerImage) {
imageCssClass += " centeredCardImage";
}
2015-05-08 12:10:53 -07:00
var dataSrc = "";
2014-11-11 21:51:40 -07:00
2015-05-08 12:10:53 -07:00
if (options.lazy && imgUrl) {
imageCssClass += " lazy";
dataSrc = ' data-src="' + imgUrl + '"';
}
2014-11-11 21:51:40 -07:00
2015-05-08 12:10:53 -07:00
var cardboxCssClass = 'cardBox';
2014-11-11 21:51:40 -07:00
2015-05-08 12:10:53 -07:00
if (options.cardLayout) {
cardboxCssClass += ' visualCardBox';
}
html += '<div class="' + cardboxCssClass + '">';
html += '<div class="cardScalable">';
2013-12-28 22:32:03 -07:00
2015-05-08 12:10:53 -07:00
html += '<div class="cardPadder"></div>';
2014-01-14 22:01:58 -07:00
2015-05-08 12:10:53 -07:00
var anchorCssClass = "cardContent";
2015-05-09 21:29:04 -07:00
anchorCssClass += ' mediaItem';
2015-05-08 12:10:53 -07:00
if (options.defaultAction) {
anchorCssClass += ' itemWithAction';
}
2014-02-28 21:12:56 -07:00
2015-05-08 12:10:53 -07:00
html += '<a class="' + anchorCssClass + '" href="' + href + '"' + defaultActionAttribute + '>';
html += '<div class="' + imageCssClass + '" style="' + style + '"' + dataSrc + '>';
if (icon) {
html += '<i class="fa ' + icon + '"></i>';
}
html += '</div>';
2015-05-08 12:10:53 -07:00
html += '<div class="cardOverlayTarget"></div>';
2015-05-08 12:10:53 -07:00
if (item.LocationType == "Offline" || item.LocationType == "Virtual") {
if (options.showLocationTypeIndicator !== false) {
html += LibraryBrowser.getOfflineIndicatorHtml(item);
}
2015-05-08 12:10:53 -07:00
} else if (options.showUnplayedIndicator !== false) {
html += LibraryBrowser.getPlayedIndicatorHtml(item);
} else if (options.showChildCountIndicator) {
html += LibraryBrowser.getGroupCountIndicator(item);
}
2013-04-03 21:21:46 -07:00
2015-05-08 12:10:53 -07:00
if (mediaSourceCount > 1) {
html += '<div class="mediaSourceIndicator">' + mediaSourceCount + '</div>';
}
if (item.IsUnidentified) {
html += '<div class="unidentifiedIndicator"><div class="ui-icon-alert ui-btn-icon-notext"></div></div>';
}
2013-04-25 20:33:54 -07:00
2015-05-08 12:10:53 -07:00
var progressHtml = options.showProgress === false || item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
2013-04-03 21:21:46 -07:00
2015-05-08 12:10:53 -07:00
var footerOverlayed = false;
2013-12-22 10:16:24 -07:00
2015-05-08 12:10:53 -07:00
if (options.overlayText || (forceName && !options.showTitle)) {
2015-05-11 09:32:15 -07:00
var footerCssClass = progressHtml ? 'cardFooter fullCardFooter' : 'cardFooter';
html += LibraryBrowser.getCardFooterText(item, options, imgUrl, forceName, footerCssClass, progressHtml);
2015-05-08 12:10:53 -07:00
footerOverlayed = true;
}
else if (progressHtml) {
2015-05-11 12:59:59 -07:00
html += '<div class="cardFooter fullCardFooter lightCardFooter">';
2015-05-08 12:10:53 -07:00
html += "<div class='cardProgress cardText'>";
html += progressHtml;
html += "</div>";
//cardFooter
2014-11-10 20:41:19 -07:00
html += "</div>";
2014-08-01 19:34:45 -07:00
2015-05-08 12:10:53 -07:00
progressHtml = '';
2014-08-01 19:34:45 -07:00
}
2015-05-08 12:10:53 -07:00
// cardContent
html += '</a>';
// cardScalable
html += '</div>';
if (!options.overlayText && !footerOverlayed) {
html += LibraryBrowser.getCardFooterText(item, options, imgUrl, forceName, 'cardFooter outerCardFooter', progressHtml);
}
// cardBox
html += '</div>';
// card
html += "</div>";
2014-08-01 19:34:45 -07:00
return html;
},
getCardFooterText: function (item, options, imgUrl, forceName, footerClass, progressHtml) {
2013-05-03 19:33:44 -07:00
2014-08-01 19:34:45 -07:00
var html = '';
html += '<div class="' + footerClass + '">';
2013-12-22 10:16:24 -07:00
2014-11-10 20:41:19 -07:00
if (options.cardLayout) {
html += '<div class="cardText" style="text-align:right; float:right;">';
2015-05-12 21:55:19 -07:00
html += '<button class="listviewMenuButton imageButton btnCardOptions" type="button" data-role="none" style="margin: 4px 0 0;"><i class="fa fa-ellipsis-v"></i></button>';
2014-11-10 20:41:19 -07:00
html += "</div>";
}
2014-08-01 19:34:45 -07:00
var name = LibraryBrowser.getPosterViewDisplayName(item, options.displayAsSpecial);
if (!imgUrl && !options.showTitle) {
html += "<div class='cardDefaultText'>";
html += htmlEncode(name);
html += "</div>";
}
var cssClass = options.centerText ? "cardText cardTextCentered" : "cardText";
var lines = [];
if (options.showParentTitle) {
lines.push(item.EpisodeTitle ? item.Name : (item.SeriesName || item.Album || item.AlbumArtist || item.GameSystem || ""));
}
if (options.showTitle || forceName) {
lines.push(htmlEncode(name));
}
if (options.showItemCounts) {
var itemCountHtml = LibraryBrowser.getItemCountsHtml(options, item);
2013-04-25 17:52:55 -07:00
2014-08-01 19:34:45 -07:00
lines.push(itemCountHtml);
2013-04-08 22:06:13 -07:00
}
2013-04-03 21:21:46 -07:00
2015-01-24 23:34:50 -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-11-10 20:41:19 -07:00
if (options.showSongCount) {
var songLine = '';
if (item.SongCount) {
songLine = item.SongCount == 1 ?
Globalize.translate('ValueOneSong') :
Globalize.translate('ValueSongCount', item.SongCount);
}
lines.push(songLine);
}
2015-05-12 21:55:19 -07:00
if (options.showPremiereDate) {
2014-08-01 19:34:45 -07:00
2015-05-12 21:55:19 -07:00
if (item.PremiereDate) {
try {
2014-08-01 19:34:45 -07:00
2015-05-12 21:55:19 -07:00
lines.push(LibraryBrowser.getPremiereDateText(item));
2014-08-01 19:34:45 -07:00
2015-05-12 21:55:19 -07:00
} catch (err) {
lines.push('');
2014-08-01 19:34:45 -07:00
2015-05-12 21:55:19 -07:00
}
} else {
lines.push('');
2014-08-01 19:34:45 -07:00
}
}
if (options.showYear) {
lines.push(item.ProductionYear || '');
}
2014-11-10 20:41:19 -07:00
if (options.showSeriesYear) {
if (item.Status == "Continuing") {
lines.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear || ''));
} else {
lines.push(item.ProductionYear || '');
}
}
2015-03-19 09:16:33 -07:00
if (options.showProgramAirInfo) {
var date = parseISO8601Date(item.StartDate, { toLocal: true });
var text = item.StartDate ?
date.toLocaleString() :
'';
lines.push(text || '&nbsp;');
lines.push(item.ChannelName || '&nbsp;');
}
html += LibraryBrowser.getCardTextLines(lines, cssClass, !options.overlayText);
2014-08-01 19:34:45 -07:00
if (options.overlayText) {
if (progressHtml) {
html += "<div class='cardText cardProgress'>";
2014-09-14 17:39:24 -07:00
html += progressHtml;
2014-08-01 19:34:45 -07:00
html += "</div>";
}
}
//cardFooter
html += "</div>";
2013-04-10 12:33:19 -07:00
return html;
},
2015-05-09 21:29:04 -07:00
getListItemInfo: function (elem) {
2015-05-16 12:09:02 -07:00
2015-05-09 21:29:04 -07:00
var elemWithAttributes = elem;
while (!elemWithAttributes.getAttribute('data-itemid')) {
elemWithAttributes = elemWithAttributes.parentNode;
}
var itemId = elemWithAttributes.getAttribute('data-itemid');
var index = elemWithAttributes.getAttribute('data-index');
var mediaType = elemWithAttributes.getAttribute('data-mediatype');
return {
id: itemId,
index: index,
2015-05-14 19:16:57 -07:00
mediaType: mediaType,
context: elemWithAttributes.getAttribute('data-context')
2015-05-09 21:29:04 -07:00
};
},
getCardTextLines: function (lines, cssClass, forceLines) {
2014-05-10 10:28:03 -07:00
var html = '';
var valid = 0;
var i, length;
for (i = 0, length = lines.length; i < length; i++) {
var text = lines[i];
if (text) {
html += "<div class='" + cssClass + "'>";
html += text;
html += "</div>";
valid++;
}
}
if (forceLines) {
while (valid < length) {
html += "<div class='" + cssClass + "'>&nbsp;</div>";
valid++;
}
}
return html;
},
2014-09-16 18:38:50 -07:00
getFutureDateText: function (date) {
2013-10-24 10:49:24 -07:00
var weekday = [];
2014-09-16 18:38:50 -07:00
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');
2013-12-26 19:23:57 -07:00
var day = weekday[date.getDay()];
date = date.toLocaleDateString();
2013-12-28 16:09:24 -07:00
2013-12-26 19:23:57 -07:00
if (date.toLowerCase().indexOf(day.toLowerCase()) == -1) {
return day + " " + date;
}
return date;
2013-10-24 10:49:24 -07:00
},
getPremiereDateText: function (item, date) {
2013-10-25 13:58:31 -07:00
if (!date) {
var text = '';
2013-10-26 15:01:21 -07:00
2013-10-25 13:58:31 -07:00
if (item.AirTime) {
text += item.AirTime;
}
if (item.SeriesStudio) {
2013-10-26 15:01:21 -07:00
2013-10-25 13:58:31 -07:00
if (text) {
text += " on " + item.SeriesStudio;
} else {
text += item.SeriesStudio;
}
}
return text;
}
2013-10-26 15:01:21 -07:00
2013-10-24 10:49:24 -07:00
var day = LibraryBrowser.getFutureDateText(date);
if (item.AirTime) {
day += " at " + item.AirTime;
}
2013-10-24 11:38:57 -07:00
if (item.SeriesStudio) {
day += " on " + item.SeriesStudio;
}
2013-10-24 10:49:24 -07:00
return day;
},
2014-01-24 11:09:50 -07:00
getPosterViewDisplayName: function (item, displayAsSpecial, includeParentInfo) {
2014-10-29 15:01:02 -07:00
if (!item) {
throw new Error("null item passed into getPosterViewDisplayName");
}
2013-12-28 16:09:24 -07:00
var name = item.EpisodeTitle || item.Name;
2013-05-23 21:02:42 -07:00
2014-03-17 18:45:41 -07:00
if (item.Type == "TvChannel") {
if (item.Number) {
return item.Number + ' ' + name;
}
return name;
}
if (displayAsSpecial && item.Type == "Episode" && item.ParentIndexNumber == 0) {
2013-11-15 14:31:33 -07:00
2014-09-16 18:38:50 -07:00
name = Globalize.translate('ValueSpecialEpisodeName', name);
2013-11-15 14:31:33 -07:00
2014-07-19 21:46:29 -07:00
} else if (item.Type == "Episode" && item.IndexNumber != null && item.ParentIndexNumber != null) {
2013-05-23 21:02:42 -07:00
2013-12-22 10:16:24 -07:00
var displayIndexNumber = item.IndexNumber;
2013-05-23 21:02:42 -07:00
2014-01-24 11:09:50 -07:00
var number = "E" + displayIndexNumber;
2014-02-09 14:11:11 -07:00
2014-01-24 11:09:50 -07:00
if (includeParentInfo !== false) {
number = "S" + item.ParentIndexNumber + ", " + number;
}
2013-05-23 21:02:42 -07:00
if (item.IndexNumberEnd) {
2013-12-22 10:16:24 -07:00
displayIndexNumber = item.IndexNumberEnd;
number += "-" + displayIndexNumber;
2013-05-23 21:02:42 -07:00
}
name = number + " - " + name;
2013-11-15 14:31:33 -07:00
}
2013-05-23 21:02:42 -07:00
return name;
},
2013-04-09 21:38:04 -07:00
2013-10-16 19:43:55 -07:00
getOfflineIndicatorHtml: function (item) {
if (item.LocationType == "Offline") {
2014-09-16 18:38:50 -07:00
return '<div class="posterRibbon offlinePosterRibbon">' + Globalize.translate('HeaderOffline') + '</div>';
2013-10-16 19:43:55 -07:00
}
try {
var date = parseISO8601Date(item.PremiereDate, { toLocal: true });
if (item.PremiereDate && (new Date().getTime() < date.getTime())) {
2014-09-16 18:38:50 -07:00
return '<div class="posterRibbon unairedPosterRibbon">' + Globalize.translate('HeaderUnaired') + '</div>';
2013-10-16 19:43:55 -07:00
}
} catch (err) {
}
2013-10-16 21:31:40 -07:00
if (item.IsFolder) {
return '';
}
2014-09-16 18:38:50 -07:00
return '<div class="posterRibbon missingPosterRibbon">' + Globalize.translate('HeaderMissing') + '</div>';
},
2013-12-28 16:09:24 -07:00
2013-12-29 10:07:29 -07:00
getPlayedIndicatorHtml: function (item) {
2013-04-09 21:38:04 -07:00
2014-01-22 15:38:55 -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
}
2014-07-07 18:41:03 -07:00
if (item.Type != 'TvChannel') {
2014-11-30 12:01:33 -07:00
if (item.UserData.PlayedPercentage && item.UserData.PlayedPercentage >= 100 || (item.UserData && item.UserData.Played)) {
2014-07-07 18:41:03 -07:00
return '<div class="playedIndicator"><div class="ui-icon-check ui-btn-icon-notext"></div></div>';
}
2013-12-29 11:53:56 -07:00
}
2013-04-09 21:38:04 -07:00
}
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
return '';
},
2013-04-09 21:38:04 -07:00
getGroupCountIndicator: function (item) {
if (item.ChildCount) {
return '<div class="playedIndicator">' + item.ChildCount + '</div>';
}
return '';
},
2013-04-10 12:33:19 -07:00
getAveragePrimaryImageAspectRatio: function (items) {
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
var values = [];
2013-04-02 15:53:31 -07:00
2013-04-10 12:33:19 -07:00
for (var i = 0, length = items.length; i < length; i++) {
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
var ratio = items[i].PrimaryImageAspectRatio || 0;
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
if (!ratio) {
continue;
}
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
values[values.length] = ratio;
2013-04-03 05:03:13 -07:00
}
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
if (!values.length) {
return null;
}
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
// Use the median
values.sort(function (a, b) { return a - b; });
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
var half = Math.floor(values.length / 2);
2013-04-01 22:14:37 -07:00
2013-10-03 08:51:05 -07:00
var result;
2013-10-12 09:55:58 -07:00
2013-04-10 12:33:19 -07:00
if (values.length % 2)
2013-10-03 08:51:05 -07:00
result = values[half];
2013-04-10 12:33:19 -07:00
else
2013-10-03 08:51:05 -07:00
result = (values[half - 1] + values[half]) / 2.0;
// If really close to 2:3 (poster image), just return 2:3
2014-01-23 11:05:41 -07:00
if (Math.abs(0.66666666667 - result) <= .15) {
2013-10-03 08:51:05 -07:00
return 0.66666666667;
}
// If really close to 16:9 (episode image), just return 16:9
2015-01-22 09:41:34 -07:00
if (Math.abs(1.777777778 - result) <= .2) {
2013-10-03 08:51:05 -07:00
return 1.777777778;
}
// If really close to 1 (square image), just return 1
2014-01-23 11:05:41 -07:00
if (Math.abs(1 - result) <= .15) {
2013-10-03 08:51:05 -07:00
return 1;
}
// If really close to 4:3 (poster image), just return 2:3
2014-01-23 11:05:41 -07:00
if (Math.abs(1.33333333333 - result) <= .15) {
return 1.33333333333;
}
2013-10-03 08:51:05 -07:00
return result;
2013-04-10 12:33:19 -07:00
},
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
metroColors: ["#6FBD45", "#4BB3DD", "#4164A5", "#E12026", "#800080", "#E1B222", "#008040", "#0094FF", "#FF00C7", "#FF870F", "#7F0037"],
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
getRandomMetroColor: function () {
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
var index = Math.floor(Math.random() * (LibraryBrowser.metroColors.length - 1));
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
return LibraryBrowser.metroColors[index];
},
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
getMetroColor: function (str) {
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
if (str) {
2013-05-04 21:49:49 -07:00
var character = String(str.substr(0, 1).charCodeAt());
2013-04-10 12:33:19 -07:00
var sum = 0;
2013-05-04 21:49:49 -07:00
for (var i = 0; i < character.length; i++) {
sum += parseInt(character.charAt(i));
2013-04-10 12:33:19 -07:00
}
var index = String(sum).substr(-1);
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
return LibraryBrowser.metroColors[index];
} else {
return LibraryBrowser.getRandomMetroColor();
2013-04-08 22:06:13 -07:00
}
2013-04-01 22:14:37 -07:00
2013-04-10 12:33:19 -07:00
},
2013-04-05 11:35:37 -07:00
renderName: function (item, nameElem, linkToElement, context) {
2013-05-04 21:49:49 -07:00
2014-01-24 11:09:50 -07:00
var name = LibraryBrowser.getPosterViewDisplayName(item, false, false);
2013-05-23 21:30:34 -07:00
Dashboard.setPageTitle(name);
2013-05-04 21:49:49 -07:00
if (linkToElement) {
nameElem.html('<a class="detailPageParentLink" href="' + LibraryBrowser.getHref(item, context) + '">' + name + '</a>').trigger('create');
2013-05-04 21:49:49 -07:00
} else {
nameElem.html(name);
}
},
2014-09-29 21:47:30 -07:00
renderParentName: function (item, parentNameElem, context) {
var html = [];
2014-09-29 21:47:30 -07:00
var contextParam = context ? ('&context=' + context) : '';
2015-03-13 08:54:20 -07:00
if (item.AlbumArtists) {
2015-03-13 10:25:28 -07:00
html.push(LibraryBrowser.getArtistLinksHtml(item.AlbumArtists, "detailPageParentLink"));
} else if (item.ArtistItems && item.ArtistItems.length && item.Type == "MusicVideo") {
html.push(LibraryBrowser.getArtistLinksHtml(item.ArtistItems, "detailPageParentLink"));
2014-07-19 21:46:29 -07:00
} else if (item.SeriesName && item.Type == "Episode") {
2014-09-29 21:47:30 -07:00
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.SeriesId + contextParam + '">' + item.SeriesName + '</a>');
}
if (item.SeriesName && item.Type == "Season") {
2014-09-29 21:47:30 -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
2014-07-19 21:46:29 -07:00
} else if (item.ParentIndexNumber != null && item.Type == "Episode") {
2014-09-29 21:47:30 -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
2014-07-19 21:46:29 -07:00
} else if (item.Album && item.Type == "Audio" && (item.AlbumId || item.ParentId)) {
2014-09-29 21:47:30 -07:00
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
2014-07-19 21:46:29 -07:00
} else if (item.Album && item.Type == "MusicVideo" && item.AlbumId) {
2014-09-29 21:47:30 -07:00
html.push('<a class="detailPageParentLink" href="itemdetails.html?id=' + item.AlbumId + contextParam + '">' + item.Album + '</a>');
2014-07-19 21:46:29 -07:00
} else if (item.Album) {
html.push(item.Album);
}
if (html.length) {
parentNameElem.show().html(html.join(' - ')).trigger('create');
} else {
parentNameElem.hide();
}
},
2013-04-14 08:14:10 -07:00
renderLinks: function (linksElem, item) {
2013-04-08 22:06:13 -07:00
2013-04-10 12:33:19 -07:00
var links = [];
2013-04-08 22:06:13 -07:00
if (item.HomePageUrl) {
2014-09-16 18:38:50 -07:00
links.push('<a class="textlink" href="' + item.HomePageUrl + '" target="_blank">' + Globalize.translate('ButtonWebsite') + '</a>');
}
2014-02-21 11:48:15 -07:00
if (item.ExternalUrls) {
2013-04-14 08:14:10 -07:00
2014-02-21 11:48:15 -07:00
for (var i = 0, length = item.ExternalUrls.length; i < length; i++) {
2014-02-21 11:48:15 -07:00
var url = item.ExternalUrls[i];
2014-02-09 14:11:11 -07:00
2014-02-21 11:48:15 -07:00
links.push('<a class="textlink" href="' + url.Url + '" target="_blank">' + url.Name + '</a>');
}
}
2013-04-08 22:06:13 -07:00
2013-04-14 08:14:10 -07:00
if (links.length) {
2013-04-10 10:11:23 -07:00
2014-09-16 18:38:50 -07:00
var html = links.join('&nbsp;&nbsp;/&nbsp;&nbsp;');
html = Globalize.translate('ValueLinks', html);
2013-04-10 10:11:23 -07:00
2013-05-11 23:05:51 -07:00
$(linksElem).html(html).trigger('create');
2013-04-08 22:06:13 -07:00
2013-04-10 12:33:19 -07:00
} else {
2013-04-14 08:14:10 -07:00
$(linksElem).hide();
2013-04-10 12:33:19 -07:00
}
},
2013-04-08 22:06:13 -07:00
2014-07-19 21:46:29 -07:00
getDefaultPageSizeSelections: function () {
return [20, 50, 100, 200, 300, 400, 500];
},
getQueryPagingHtml: function (options) {
var startIndex = options.startIndex;
var limit = options.limit;
var totalRecordCount = options.totalRecordCount;
if (limit && options.updatePageSizeSetting !== false) {
try {
2014-09-09 17:28:59 -07:00
store.setItem(options.pageSizeKey || pageSizeKey, limit);
2014-07-19 21:46:29 -07:00
} catch (e) {
}
}
var html = '';
var recordsEnd = Math.min(startIndex + limit, totalRecordCount);
// 20 is the minimum page size
var showControls = totalRecordCount > 20 || limit < totalRecordCount;
html += '<div class="listPaging">';
html += '<span style="margin-right: 10px;vertical-align:middle;">';
var startAtDisplay = totalRecordCount ? startIndex + 1 : 0;
html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
html += '</span>';
if (showControls || options.viewButton || options.addSelectionButton || options.additionalButtonsHtml) {
html += '<div data-role="controlgroup" data-type="horizontal" style="display:inline-block;">';
if (showControls) {
2014-09-16 18:38:50 -07:00
html += '<button data-icon="arrow-l" data-iconpos="notext" data-inline="true" data-mini="true" class="btnPreviousPage" ' + (startIndex ? '' : 'disabled') + '>' + Globalize.translate('ButtonPreviousPage') + '</button>';
2014-07-19 21:46:29 -07:00
2014-09-16 18:38:50 -07:00
html += '<button data-icon="arrow-r" data-iconpos="notext" data-inline="true" data-mini="true" class="btnNextPage" ' + (startIndex + limit >= totalRecordCount ? 'disabled' : '') + '>' + Globalize.translate('ButtonNextPage') + '</button>';
2014-07-19 21:46:29 -07:00
}
html += (options.additionalButtonsHtml || '');
if (options.addSelectionButton) {
html += '<button data-mini="true" data-icon="check" data-inline="true" data-iconpos="notext" title="' + Globalize.translate('ButtonSelect') + '" class="btnToggleSelections">' + Globalize.translate('ButtonSelect') + '</button>';
}
if (options.viewButton) {
2014-09-16 18:38:50 -07:00
html += '<button data-icon="ellipsis-v" data-iconpos="notext" data-inline="true" data-mini="true" onclick="$(\'.viewPanel\', $(this).parents(\'.page\')).panel(\'toggle\');">' + Globalize.translate('ButtonView') + '</button>';
2014-07-19 21:46:29 -07:00
}
html += '</div>';
if (showControls && options.showLimit !== false) {
var id = "selectPageSize";
var pageSizes = options.pageSizes || LibraryBrowser.getDefaultPageSizeSelections();
var optionsHtml = pageSizes.map(function (val) {
if (limit == val) {
return '<option value="' + val + '" selected="selected">' + val + '</option>';
} else {
return '<option value="' + val + '">' + val + '</option>';
}
}).join('');
// Add styles to defeat jquery mobile
2014-09-16 18:38:50 -07:00
html += '<div class="pageSizeContainer"><label style="font-size:inherit;" class="labelPageSize" for="' + id + '">' + Globalize.translate('LabelLimit') + '</label><select class="selectPageSize" id="' + id + '" data-inline="true" data-mini="true">' + optionsHtml + '</select></div>';
2014-07-19 21:46:29 -07:00
}
}
html += '</div>';
return html;
},
2014-01-20 23:10:58 -07:00
getPagingHtml: function (query, totalRecordCount, updatePageSizeSetting, pageSizes, showLimit) {
2013-04-08 22:06:13 -07:00
2013-12-22 10:16:24 -07:00
if (query.Limit && updatePageSizeSetting !== false) {
2014-07-02 11:34:08 -07:00
try {
2014-08-01 19:34:45 -07:00
store.setItem(pageSizeKey, query.Limit);
2014-07-02 11:34:08 -07:00
} catch (e) {
}
2013-05-15 12:26:52 -07:00
}
2013-04-10 12:33:19 -07:00
var html = '';
2013-04-08 22:06:13 -07:00
2013-04-10 12:33:19 -07:00
var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount);
2013-04-08 22:06:13 -07:00
2013-05-15 12:40:47 -07:00
// 20 is the minimum page size
2014-01-20 23:10:58 -07:00
var showControls = totalRecordCount > 20 || query.Limit < totalRecordCount;
2013-04-19 09:28:06 -07:00
2013-04-18 22:08:18 -07:00
html += '<div class="listPaging">';
2013-04-15 15:03:05 -07:00
2014-03-03 21:53:48 -07:00
html += '<span style="margin-right: 10px;vertical-align:middle;">';
2013-04-19 16:45:27 -07:00
var startAtDisplay = totalRecordCount ? query.StartIndex + 1 : 0;
html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
2013-04-19 09:28:06 -07:00
2013-04-15 15:03:05 -07:00
html += '</span>';
2013-04-19 09:28:06 -07:00
if (showControls) {
2014-01-20 23:10:58 -07:00
html += '<div data-role="controlgroup" data-type="horizontal" style="display:inline-block;">';
2014-09-16 18:38:50 -07:00
html += '<button type="button" data-icon="arrow-l" data-iconpos="notext" data-inline="true" data-mini="true" class="btnPreviousPage" ' + (query.StartIndex ? '' : 'disabled') + '>' + Globalize.translate('ButtonPreviousPage') + '</button>';
2013-04-15 15:03:05 -07:00
2014-09-16 18:38:50 -07:00
html += '<button type="button" data-icon="arrow-r" data-iconpos="notext" data-inline="true" data-mini="true" class="btnNextPage" ' + (query.StartIndex + query.Limit >= totalRecordCount ? 'disabled' : '') + '>' + Globalize.translate('ButtonNextPage') + '</button>';
2014-01-20 23:10:58 -07:00
html += '</div>';
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
if (showLimit !== false) {
var id = "selectPageSize" + new Date().getTime();
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
var options = '';
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
function getOption(val) {
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
if (query.Limit == val) {
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
return '<option value="' + val + '" selected="selected">' + val + '</option>';
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
} else {
return '<option value="' + val + '">' + val + '</option>';
}
2013-04-27 15:52:41 -07:00
}
2014-01-20 23:10:58 -07:00
pageSizes = pageSizes || [20, 50, 100, 200, 300, 400, 500];
2014-01-14 08:50:39 -07:00
2014-01-20 23:10:58 -07:00
for (var j = 0, length = pageSizes.length; j < length; j++) {
options += getOption(pageSizes[j]);
}
2013-04-27 15:52:41 -07:00
2014-01-20 23:10:58 -07:00
// Add styles to defeat jquery mobile
2014-09-16 18:38:50 -07:00
html += '<div class="pageSizeContainer"><label style="font-size:inherit;" class="labelPageSize" for="' + id + '">' + Globalize.translate('LabelLimit') + '</label><select class="selectPageSize" id="' + id + '" data-inline="true" data-mini="true">' + options + '</select></div>';
2014-01-20 23:10:58 -07:00
}
2013-04-19 09:28:06 -07:00
}
2013-04-15 15:03:05 -07:00
2013-04-10 12:33:19 -07:00
html += '</div>';
2013-04-08 22:06:13 -07:00
2013-04-10 12:33:19 -07:00
return html;
},
2013-04-10 06:53:44 -07:00
2014-01-16 10:23:30 -07:00
getRatingHtml: function (item, metascore) {
2013-05-05 20:58:45 -07:00
2013-04-10 12:33:19 -07:00
var html = "";
2013-05-05 21:50:40 -07:00
if (item.CommunityRating) {
2014-01-14 22:01:58 -07:00
html += "<div class='starRating' title='" + item.CommunityRating + "'></div>";
html += '<div class="starRatingValue">';
html += item.CommunityRating.toFixed(1);
html += '</div>';
2014-01-22 17:39:26 -07:00
}
2013-04-10 06:53:44 -07:00
if (item.CriticRating != null) {
2013-04-10 06:53:44 -07:00
2013-05-05 20:58:45 -07:00
if (item.CriticRating >= 60) {
2015-02-28 06:42:47 -07:00
html += '<div class="fresh rottentomatoesicon" title="Rotten Tomatoes"></div>';
2013-05-05 20:58:45 -07:00
} else {
2015-02-28 06:42:47 -07:00
html += '<div class="rotten rottentomatoesicon" title="Rotten Tomatoes"></div>';
2013-05-05 20:58:45 -07:00
}
2013-04-10 22:27:27 -07:00
2015-02-28 06:42:47 -07:00
html += '<div class="criticRating" title="Rotten Tomatoes">' + item.CriticRating + '%</div>';
2013-04-10 22:27:27 -07:00
}
2014-01-16 10:23:30 -07:00
if (item.Metascore && metascore !== false) {
2014-01-14 22:01:58 -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>';
}
}
2013-04-10 22:27:27 -07:00
return html;
},
2013-12-29 10:07:29 -07:00
getItemProgressBarHtml: function (item) {
2013-04-10 10:11:23 -07:00
2014-01-14 13:24:56 -07:00
if (item.Type == "Recording" && item.CompletionPercentage) {
2014-01-14 22:01:58 -07:00
2014-01-14 13:24:56 -07:00
return '<progress class="itemProgressBar recordingProgressBar" min="0" max="100" value="' + item.CompletionPercentage + '"></progress>';
}
2014-01-14 22:01:58 -07:00
var pct = item.PlayedPercentage;
2013-04-15 19:36:12 -07:00
if (pct && pct < 100) {
2013-04-15 19:36:12 -07:00
return '<progress class="itemProgressBar" min="0" max="100" value="' + pct + '"></progress>';
2013-04-15 19:36:12 -07:00
}
return null;
2013-05-03 19:33:44 -07:00
},
2015-01-03 12:38:22 -07:00
getUserDataButtonHtml: function (method, itemId, btnCssClass, icon, tooltip) {
btnCssClass += " imageButton";
return '<button data-itemid="' + itemId + '" class="' + btnCssClass + '" type="button" onclick="LibraryBrowser.' + method + '(this);return false;" title="' + tooltip + '"><div class="fa ' + icon + '"></div></button>';
},
2013-05-03 19:33:44 -07:00
getUserDataIconsHtml: function (item) {
var html = '';
2013-04-10 12:33:19 -07:00
var userData = item.UserData || {};
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
var itemId = item.Id;
var type = item.Type;
2013-04-14 08:14:10 -07:00
2014-09-16 18:38:50 -07:00
var tooltipPlayed = Globalize.translate('TooltipPlayed');
2015-01-03 12:38:22 -07:00
if ((item.MediaType || item.IsFolder) && type != "TvChannel" && type != "MusicArtist") {
2013-04-10 12:33:19 -07:00
if (userData.Played) {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating btnUserItemRating', 'fa-check', tooltipPlayed);
2013-04-10 12:33:19 -07:00
} else {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-check', tooltipPlayed);
2013-04-10 12:33:19 -07:00
}
2013-04-10 10:11:23 -07:00
}
2014-09-16 18:38:50 -07:00
var tooltipLike = Globalize.translate('TooltipLike');
var tooltipDislike = Globalize.translate('TooltipDislike');
2013-04-10 12:33:19 -07:00
if (typeof userData.Likes == "undefined") {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-thumbs-down', tooltipDislike);
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-thumbs-up', tooltipLike);
2013-04-10 12:33:19 -07:00
}
else if (userData.Likes) {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-thumbs-down', tooltipDislike);
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating', 'fa-thumbs-up', tooltipLike);
2013-04-10 12:33:19 -07:00
}
else {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating', 'fa-thumbs-down', tooltipDislike);
html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-thumbs-up', tooltipLike);
2013-04-10 12:33:19 -07:00
}
2013-04-10 06:53:44 -07:00
2014-09-16 18:38:50 -07:00
var tooltipFavorite = Globalize.translate('TooltipFavorite');
2013-04-10 12:33:19 -07:00
if (userData.IsFavorite) {
2014-09-16 18:38:50 -07:00
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating', 'fa-heart', tooltipFavorite);
2013-04-10 12:33:19 -07:00
} else {
2015-01-03 12:38:22 -07:00
html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating btnUserItemRatingOff', 'fa-heart', tooltipFavorite);
2013-04-10 12:33:19 -07:00
}
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
return html;
},
2013-04-10 12:33:19 -07:00
markPlayed: function (link) {
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var id = link.getAttribute('data-itemid');
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var $link = $(link);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
var markAsPlayed = $link.hasClass('btnUserItemRatingOff');
2013-04-10 10:11:23 -07:00
if (markAsPlayed) {
ApiClient.markPlayed(Dashboard.getCurrentUserId(), id);
2015-01-03 12:38:22 -07:00
$link.removeClass('btnUserItemRatingOff');
} else {
ApiClient.markUnplayed(Dashboard.getCurrentUserId(), id);
2015-01-03 12:38:22 -07:00
$link.addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
}
},
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
markFavorite: function (link) {
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var id = link.getAttribute('data-itemid');
2013-04-10 12:33:19 -07:00
var $link = $(link);
2015-01-03 12:38:22 -07:00
var markAsFavorite = $link.hasClass('btnUserItemRatingOff');
2013-04-10 10:11:23 -07:00
2014-02-22 13:20:22 -07:00
ApiClient.updateFavoriteStatus(Dashboard.getCurrentUserId(), id, markAsFavorite);
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
if (markAsFavorite) {
2015-01-03 12:38:22 -07:00
$link.removeClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
} else {
2015-01-03 12:38:22 -07:00
$link.addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
}
},
2013-04-10 12:33:19 -07:00
markLike: function (link) {
2013-04-10 12:33:19 -07:00
var id = link.getAttribute('data-itemid');
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var $link = $(link);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
if ($link.hasClass('btnUserItemRatingOff')) {
2014-02-22 13:20:22 -07:00
ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, true);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.removeClass('btnUserItemRatingOff');
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
} else {
2014-02-22 13:20:22 -07:00
ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
}
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.prev().addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
},
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
markDislike: function (link) {
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var id = link.getAttribute('data-itemid');
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var $link = $(link);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
if ($link.hasClass('btnUserItemRatingOff')) {
2013-04-10 10:11:23 -07:00
2014-02-22 13:20:22 -07:00
ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, false);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.removeClass('btnUserItemRatingOff');
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
} else {
2013-04-10 10:11:23 -07:00
2014-02-22 13:20:22 -07:00
ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id);
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
}
2013-04-10 10:11:23 -07:00
2015-01-03 12:38:22 -07:00
$link.next().addClass('btnUserItemRatingOff');
2013-04-10 12:33:19 -07:00
},
2013-04-10 10:11:23 -07:00
2014-08-16 22:38:13 -07:00
getDetailImageHtml: function (item, href, preferThumb) {
2013-04-10 12:33:19 -07:00
var imageTags = item.ImageTags || {};
2013-11-26 09:22:11 -07:00
if (item.PrimaryImageTag) {
imageTags.Primary = item.PrimaryImageTag;
}
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
var html = '';
2013-04-10 06:53:44 -07:00
2013-04-10 12:33:19 -07:00
var url;
2013-04-10 06:53:44 -07:00
2015-02-02 21:54:52 -07:00
var imageHeight = 360;
2014-08-16 22:38:13 -07:00
if (preferThumb && imageTags.Thumb) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Thumb",
2015-02-02 21:54:52 -07:00
height: imageHeight,
2014-08-16 22:38:13 -07:00
tag: item.ImageTags.Thumb
});
}
else if (imageTags.Primary) {
2013-04-10 06:53:44 -07:00
url = ApiClient.getScaledImageUrl(item.Id, {
2014-02-22 13:20:22 -07:00
type: "Primary",
2015-02-02 21:54:52 -07:00
height: imageHeight,
2014-02-22 13:20:22 -07:00
tag: item.ImageTags.Primary
});
2013-04-10 10:36:34 -07:00
}
2013-04-10 12:33:19 -07:00
else if (item.BackdropImageTags && item.BackdropImageTags.length) {
url = ApiClient.getScaledImageUrl(item.Id, {
2014-02-22 13:20:22 -07:00
type: "Backdrop",
2015-02-02 21:54:52 -07:00
height: imageHeight,
2014-02-22 13:20:22 -07:00
tag: item.BackdropImageTags[0]
});
2013-04-10 10:36:34 -07:00
}
2013-04-10 12:33:19 -07:00
else if (imageTags.Thumb) {
url = ApiClient.getScaledImageUrl(item.Id, {
2014-02-22 13:20:22 -07:00
type: "Thumb",
2015-02-02 21:54:52 -07:00
height: imageHeight,
2014-02-22 13:20:22 -07:00
tag: item.ImageTags.Thumb
});
2013-04-10 10:36:34 -07:00
}
2013-04-10 12:33:19 -07:00
else if (imageTags.Disc) {
url = ApiClient.getScaledImageUrl(item.Id, {
2013-04-10 12:33:19 -07:00
type: "Disc",
2015-02-02 21:54:52 -07:00
height: imageHeight,
2013-04-10 12:33:19 -07:00
tag: item.ImageTags.Disc
2013-04-10 10:36:34 -07:00
});
}
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
url = ApiClient.getScaledImageUrl(item.AlbumId, {
type: "Primary",
2015-02-02 21:54:52 -07:00
height: imageHeight,
tag: item.AlbumPrimaryImageTag
});
}
else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicGenre") {
2013-04-10 12:33:19 -07:00
url = "css/images/items/detail/audio.png";
}
2013-07-01 10:17:33 -07:00
else if (item.MediaType == "Game" || item.Type == "GameGenre") {
2013-04-10 12:33:19 -07:00
url = "css/images/items/detail/game.png";
}
2013-04-13 20:33:43 -07:00
else if (item.Type == "Person") {
url = "css/images/items/detail/person.png";
}
else if (item.Type == "Genre" || item.Type == "Studio") {
url = "css/images/items/detail/video.png";
2013-04-13 20:33:43 -07:00
}
2014-03-17 18:45:41 -07:00
else if (item.Type == "TvChannel") {
2013-11-27 12:04:19 -07:00
url = "css/images/items/detail/tv.png";
}
2013-04-10 12:33:19 -07:00
else {
url = "css/images/items/detail/video.png";
}
2013-04-10 06:53:44 -07:00
2015-02-05 22:59:55 -07:00
html += '<div style="position:relative;">';
if (href) {
html += "<a class='itemDetailGalleryLink' href='" + href + "'>";
2013-11-27 12:04:19 -07:00
}
2013-05-31 18:48:41 -07:00
html += "<img class='itemDetailImage' src='" + url + "' />";
2015-02-05 22:59:55 -07:00
if (href) {
html += "</a>";
}
var progressHtml = item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
2013-12-29 21:35:27 -07:00
if (progressHtml) {
html += '<div class="detailImageProgressContainer">';
html += progressHtml;
html += "</div>";
}
html += "</div>";
2013-04-10 12:33:19 -07:00
return html;
},
2013-04-10 06:53:44 -07:00
2015-02-02 21:54:52 -07:00
renderDetailImage: function (elem, item, href, preferThumb) {
var imageTags = item.ImageTags || {};
if (item.PrimaryImageTag) {
imageTags.Primary = item.PrimaryImageTag;
}
var html = '';
var url;
var shape = 'portrait';
var imageHeight = 360;
var detectRatio = false;
if (preferThumb && imageTags.Thumb) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Thumb",
height: imageHeight,
tag: item.ImageTags.Thumb
});
shape = 'thumb';
}
else if (imageTags.Primary) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Primary",
height: imageHeight,
tag: item.ImageTags.Primary
});
detectRatio = true;
}
else if (item.BackdropImageTags && item.BackdropImageTags.length) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Backdrop",
height: imageHeight,
tag: item.BackdropImageTags[0]
});
shape = 'thumb';
}
else if (imageTags.Thumb) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Thumb",
height: imageHeight,
tag: item.ImageTags.Thumb
});
shape = 'thumb';
}
else if (imageTags.Disc) {
url = ApiClient.getScaledImageUrl(item.Id, {
type: "Disc",
height: imageHeight,
tag: item.ImageTags.Disc
});
shape = 'square';
}
else if (item.AlbumId && item.AlbumPrimaryImageTag) {
url = ApiClient.getScaledImageUrl(item.AlbumId, {
type: "Primary",
height: 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';
}
html += '<div style="position:relative;">';
2015-02-05 22:59:55 -07:00
if (href) {
html += "<a class='itemDetailGalleryLink' href='" + href + "'>";
}
2015-02-02 21:54:52 -07:00
if (detectRatio && item.PrimaryImageAspectRatio) {
2015-02-02 23:57:45 -07:00
if (item.PrimaryImageAspectRatio >= 1.48) {
2015-02-02 21:54:52 -07:00
shape = 'thumb';
2015-02-02 23:57:45 -07:00
} else if (item.PrimaryImageAspectRatio >= .85 && item.PrimaryImageAspectRatio <= 1.34) {
2015-02-02 21:54:52 -07:00
shape = 'square';
}
}
2015-05-09 21:29:04 -07:00
var screenWidth = $(window).width();
// Take a guess about whether we should lazy load or not
if (screenWidth > 600) {
html += "<img class='itemDetailImage' src='" + url + "' />";
} else {
html += "<img class='itemDetailImage lazy' data-src='" + url + "' src='css/images/empty.png' />";
}
2015-02-02 21:54:52 -07:00
2015-02-05 22:59:55 -07:00
if (href) {
html += "</a>";
}
2015-02-02 21:54:52 -07:00
var progressHtml = item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData));
if (progressHtml) {
html += '<div class="detailImageProgressContainer">';
html += progressHtml;
html += "</div>";
}
html += "</div>";
elem.html(html);
var page = $(elem).parents('.page');
var detailContentEffectedByImage = $('.detailContentEffectedByImage', page);
if (shape == 'thumb') {
detailContentEffectedByImage.addClass('detailContentEffectedByThumbImage');
detailContentEffectedByImage.removeClass('detailContentEffectedBySquareImage');
detailContentEffectedByImage.removeClass('detailContentEffectedByPortraitImage');
2015-02-02 23:57:45 -07:00
elem.addClass('thumbDetailImageContainer');
elem.removeClass('portraitDetailImageContainer');
elem.removeClass('squareDetailImageContainer');
2015-02-02 21:54:52 -07:00
}
else if (shape == 'square') {
detailContentEffectedByImage.removeClass('detailContentEffectedByThumbImage');
detailContentEffectedByImage.addClass('detailContentEffectedBySquareImage');
detailContentEffectedByImage.removeClass('detailContentEffectedByPortraitImage');
2015-02-02 23:57:45 -07:00
elem.removeClass('thumbDetailImageContainer');
elem.removeClass('portraitDetailImageContainer');
elem.addClass('squareDetailImageContainer');
2015-02-02 21:54:52 -07:00
} else {
detailContentEffectedByImage.removeClass('detailContentEffectedByThumbImage');
detailContentEffectedByImage.removeClass('detailContentEffectedBySquareImage');
detailContentEffectedByImage.addClass('detailContentEffectedByPortraitImage');
2015-02-02 23:57:45 -07:00
elem.removeClass('thumbDetailImageContainer');
elem.addClass('portraitDetailImageContainer');
elem.removeClass('squareDetailImageContainer');
2015-02-02 21:54:52 -07:00
}
2015-05-09 21:29:04 -07:00
elem.lazyChildren();
2015-02-02 21:54:52 -07:00
},
2013-04-18 19:52:22 -07:00
getMiscInfoHtml: function (item) {
2013-04-10 10:11:23 -07:00
2013-04-10 12:33:19 -07:00
var miscInfo = [];
2013-12-04 13:55:42 -07:00
var text, date;
2013-04-25 17:52:55 -07:00
if (item.Type == "Episode" || item.MediaType == 'Photo') {
2013-05-04 12:53:13 -07:00
if (item.PremiereDate) {
try {
2013-12-04 13:55:42 -07:00
date = parseISO8601Date(item.PremiereDate, { 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);
}
catch (e) {
console.log("Error parsing date: " + item.PremiereDate);
}
}
}
2013-12-04 13:55:42 -07:00
if (item.StartDate) {
try {
date = parseISO8601Date(item.StartDate, { toLocal: true });
text = date.toLocaleDateString();
miscInfo.push(text);
2013-12-21 11:37:34 -07:00
if (item.Type != "Recording") {
text = LiveTvHelpers.getDisplayTime(date);
miscInfo.push(text);
}
2013-12-04 13:55:42 -07:00
}
catch (e) {
console.log("Error parsing date: " + item.PremiereDate);
}
}
2013-04-24 13:28:42 -07:00
if (item.ProductionYear && item.Type == "Series") {
2013-04-18 19:52:22 -07:00
if (item.Status == "Continuing") {
2014-09-16 18:38:50 -07:00
miscInfo.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear));
2013-04-24 13:28:42 -07:00
2014-03-02 13:44:48 -07:00
}
else if (item.ProductionYear) {
2013-04-24 13:28:42 -07:00
text = item.ProductionYear;
if (item.EndDate) {
try {
2013-06-09 06:35:50 -07:00
var endYear = parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
2013-06-09 06:35:50 -07:00
if (endYear != item.ProductionYear) {
text += "-" + parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
}
2013-04-24 13:28:42 -07:00
}
catch (e) {
console.log("Error parsing date: " + item.EndDate);
}
}
miscInfo.push(text);
}
}
if (item.Type != "Series" && item.Type != "Episode" && item.MediaType != 'Photo') {
2013-04-25 17:52:55 -07:00
2013-04-24 13:28:42 -07:00
if (item.ProductionYear) {
2013-04-18 19:52:22 -07:00
miscInfo.push(item.ProductionYear);
}
2013-04-24 13:28:42 -07:00
else if (item.PremiereDate) {
2013-04-25 17:52:55 -07:00
2013-04-24 13:28:42 -07:00
try {
2013-06-04 20:40:17 -07:00
text = parseISO8601Date(item.PremiereDate, { toLocal: true }).getFullYear();
2013-04-24 13:28:42 -07:00
miscInfo.push(text);
}
catch (e) {
console.log("Error parsing date: " + item.PremiereDate);
}
}
2013-04-10 12:33:19 -07:00
}
2013-04-10 10:11:23 -07:00
var minutes;
if (item.RunTimeTicks && item.Type != "Series") {
2013-04-10 10:11:23 -07:00
2013-04-22 13:06:43 -07:00
if (item.Type == "Audio") {
2013-04-10 10:11:23 -07:00
2013-06-07 10:29:33 -07:00
miscInfo.push(Dashboard.getDisplayTime(item.RunTimeTicks));
2013-12-22 10:16:24 -07:00
2013-04-22 13:06:43 -07:00
} else {
minutes = item.RunTimeTicks / 600000000;
2013-04-10 10:11:23 -07:00
2013-04-22 13:06:43 -07:00
minutes = minutes || 1;
2013-12-20 13:09:49 -07:00
miscInfo.push(Math.round(minutes) + "min");
2013-04-22 13:06:43 -07:00
}
2013-04-10 12:33:19 -07:00
}
2013-04-10 10:11:23 -07:00
if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
2013-05-04 12:53:13 -07:00
miscInfo.push(item.OfficialRating);
}
2013-06-27 10:04:48 -07:00
if (item.Video3DFormat) {
miscInfo.push("3D");
2013-04-18 19:52:22 -07:00
}
2013-04-10 22:27:27 -07:00
if (item.MediaType == 'Photo' && item.Width && item.Height) {
miscInfo.push(item.Width + "x" + item.Height);
}
2013-05-05 20:58:45 -07:00
return miscInfo.join('&nbsp;&nbsp;&nbsp;&nbsp;');
2013-04-10 12:33:19 -07:00
},
2013-04-10 10:11:23 -07:00
2013-04-21 21:38:03 -07:00
renderOverview: function (elem, item) {
2014-05-27 07:30:21 -07:00
var overview = item.Overview || '';
2013-04-21 21:38:03 -07:00
2013-12-21 11:37:34 -07:00
elem.html(overview).trigger('create');
2013-04-21 21:38:03 -07:00
2013-12-20 13:09:49 -07:00
$('a', elem).each(function () {
$(this).attr("target", "_blank");
});
2013-04-21 21:38:03 -07:00
2014-08-16 22:38:13 -07:00
if (overview) {
elem.removeClass('empty');
} else {
elem.addClass('empty');
}
2013-04-21 21:38:03 -07:00
},
2013-04-23 07:46:27 -07:00
renderStudios: function (elem, item, context) {
if (item.Studios && item.Studios.length && item.Type != "Series") {
2014-09-16 18:38:50 -07:00
var html = '';
2013-04-10 12:33:19 -07:00
for (var i = 0, length = item.Studios.length; i < length; i++) {
2013-04-10 12:33:19 -07:00
if (i > 0) {
html += '&nbsp;&nbsp;/&nbsp;&nbsp;';
}
2014-07-01 14:13:32 -07:00
html += '<a class="textlink" href="itembynamedetails.html?context=' + context + '&id=' + item.Studios[i].Id + '">' + item.Studios[i].Name + '</a>';
}
2014-09-16 18:38:50 -07:00
var translationKey = item.Studios.length > 1 ? "ValueStudios" : "ValueStudio";
html = Globalize.translate(translationKey, html);
2013-04-10 12:33:19 -07:00
elem.show().html(html).trigger('create');
2013-04-10 12:33:19 -07:00
} else {
elem.hide();
}
},
2015-01-31 19:41:35 -07:00
renderGenres: function (elem, item, context, limit) {
2013-12-21 11:37:34 -07:00
var html = '';
2013-12-21 11:37:34 -07:00
var genres = item.Genres || [];
2013-12-21 11:37:34 -07:00
for (var i = 0, length = genres.length; i < length; i++) {
2015-01-31 19:41:35 -07:00
if (limit && i >= limit) {
break;
}
2013-12-21 11:37:34 -07:00
if (i > 0) {
2014-01-15 15:19:45 -07:00
html += '<span>&nbsp;&nbsp;/&nbsp;&nbsp;</span>';
}
2013-12-21 11:37:34 -07:00
var param = item.Type == "Audio" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre";
2013-12-21 11:37:34 -07:00
if (item.MediaType == "Game") {
param = "gamegenre";
}
2013-12-21 11:37:34 -07:00
html += '<a class="textlink" href="itembynamedetails.html?context=' + context + '&' + param + '=' + ApiClient.encodeName(genres[i]) + '">' + genres[i] + '</a>';
2013-04-18 07:27:21 -07:00
}
2013-12-21 11:37:34 -07:00
elem.html(html).trigger('create');
2013-04-18 07:27:21 -07:00
},
renderPremiereDate: function (elem, item) {
if (item.PremiereDate) {
2013-04-18 22:08:18 -07:00
try {
2013-04-24 13:28:42 -07:00
var date = parseISO8601Date(item.PremiereDate, { toLocal: true });
2014-09-16 18:38:50 -07:00
var translationKey = new Date().getTime() > date.getTime() ? "ValuePremiered" : "ValuePremieres";
elem.show().html(Globalize.translate(translationKey, date.toLocaleDateString()));
2013-04-24 13:28:42 -07:00
2013-04-18 22:08:18 -07:00
} catch (err) {
elem.hide();
}
2013-04-18 07:27:21 -07:00
} else {
elem.hide();
2013-04-12 08:25:00 -07:00
}
},
2013-04-12 08:25:00 -07:00
renderBudget: function (elem, item) {
2014-09-16 18:38:50 -07:00
2013-04-12 08:25:00 -07:00
if (item.Budget) {
2014-01-18 11:10:21 -07:00
2014-09-16 18:38:50 -07:00
elem.show().html(Globalize.translate('ValueBudget', '$' + item.Budget));
2013-04-10 12:33:19 -07:00
} else {
elem.hide();
}
2013-04-14 20:37:07 -07:00
},
2013-04-18 07:05:38 -07:00
renderRevenue: function (elem, item) {
2014-09-16 18:38:50 -07:00
2013-04-18 07:05:38 -07:00
if (item.Revenue) {
2014-01-18 11:10:21 -07:00
2014-09-16 18:38:50 -07:00
elem.show().html(Globalize.translate('ValueRevenue', '$' + item.Revenue));
2013-04-18 07:05:38 -07:00
} else {
elem.hide();
}
},
2014-01-18 11:10:21 -07:00
renderAwardSummary: function (elem, item) {
if (item.AwardSummary) {
2014-09-16 18:38:50 -07:00
elem.show().html(Globalize.translate('ValueAwards', item.AwardSummary));
2014-01-18 11:10:21 -07:00
} else {
elem.hide();
}
},
renderDetailPageBackdrop: function (page, item) {
var screenWidth = Math.max(screen.height, screen.width);
var imgUrl;
if (item.BackdropImageTags && item.BackdropImageTags.length) {
imgUrl = ApiClient.getScaledImageUrl(item.Id, {
type: "Backdrop",
index: 0,
maxWidth: screenWidth,
tag: item.BackdropImageTags[0]
});
2015-05-09 21:29:04 -07:00
$('#itemBackdrop', page).removeClass('noBackdrop').lazyImage(imgUrl);
}
else if (item.ParentBackdropItemId && item.ParentBackdropImageTags && item.ParentBackdropImageTags.length) {
imgUrl = ApiClient.getScaledImageUrl(item.ParentBackdropItemId, {
type: 'Backdrop',
index: 0,
tag: item.ParentBackdropImageTags[0],
maxWidth: screenWidth
});
2015-05-09 21:29:04 -07:00
$('#itemBackdrop', page).removeClass('noBackdrop').lazyImage(imgUrl);
}
else {
$('#itemBackdrop', page).addClass('noBackdrop').css('background-image', 'none');
}
}
2013-04-10 12:33:19 -07:00
};
2014-07-15 12:16:16 -07:00
})(window, document, jQuery, screen, window.store);