var LibraryBrowser = (function (window, document, $, screen, localStorage) { var defaultBackground = "#333"; return { getDefaultPageSize: function () { var saved = localStorage.getItem('pagesize'); if (saved) { return parseInt(saved); } if (window.location.toString().toLowerCase().indexOf('localhost') != -1) { return 100; } return 20; }, loadSavedQueryValues: function (key, query) { //var values = localStorage.getItem(key + '_' + Dashboard.getCurrentUserId()); //if (values) { // values = JSON.parse(values); // return $.extend(query, values); //} return query; }, saveQueryValues: function (key, query) { var values = {}; if (query.SortBy) { values.SortBy = query.SortBy; } if (query.SortOrder) { values.SortOrder = query.SortOrder; } localStorage.setItem(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values)); }, saveViewSetting: function (key, value) { localStorage.setItem(key + '_' + Dashboard.getCurrentUserId() + '_view', value); }, getSavedViewSetting: function (key) { var deferred = $.Deferred(); var val = localStorage.getItem(key + '_' + Dashboard.getCurrentUserId() + '_view'); deferred.resolveWith(null, [val]); return deferred.promise(); }, 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()); }, getPosterDetailViewHtml: function (options) { var items = options.items; var currentIndexValue; if (!options.shape) { options.shape = options.preferBackdrop ? "backdrop" : "poster"; } var html = ''; for (var i = 0, length = items.length; i < length; i++) { var item = items[i]; if (options.timeline) { var year = item.ProductionYear || "Unknown Year"; if (year != currentIndexValue) { html += '

' + year + '

'; currentIndexValue = year; } } var imgUrl = null; var isDefault = false; var height = null; var cssClass = "tileItem"; if (options.shape) { cssClass += " " + options.shape + "TileItem"; } html += ''; if (options.preferBackdrop && item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = LibraryBrowser.getImageUrl(item, 'Backdrop', 0, { height: 198, width: 352 }); } else if (options.preferBackdrop && item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Thumb", height: 198, width: 352, tag: item.ImageTags.Thumb }); } else if (item.ImageTags && item.ImageTags.Primary) { height = 300; imgUrl = LibraryBrowser.getImageUrl(item, 'Primary', 0, { maxheight: height }); } else if (item.AlbumId && item.AlbumPrimaryImageTag) { height = 300; imgUrl = ApiClient.getImageUrl(item.AlbumId, { type: "Primary", height: 100, tag: item.AlbumPrimaryImageTag }); } else if (item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = LibraryBrowser.getImageUrl(item, 'Backdrop', 0, { height: 198, width: 352 }); } else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist") { imgUrl = "css/images/items/list/audio.png"; isDefault = true; } else if (item.MediaType == "Video" || item.Type == "Season" || item.Type == "Series") { imgUrl = "css/images/items/list/video.png"; isDefault = true; } else if (item.Type == "Person") { imgUrl = "css/images/items/list/person.png"; isDefault = true; } else if (item.Type == "MusicArtist") { imgUrl = "css/images/items/list/audiocollection.png"; isDefault = true; } else if (item.MediaType == "Game") { imgUrl = "css/images/items/list/game.png"; isDefault = true; } else if (item.Type == "Studio" || item.Type == "Genre" || item.Type == "MusicGenre" || item.Type == "GameGenre") { if (options.context == "games") { imgUrl = "css/images/items/list/game.png"; } else if (options.context == "music") { imgUrl = "css/images/items/list/audio.png"; } else if (options.context == "movies") { imgUrl = "css/images/items/list/chapter.png"; } else { imgUrl = "css/images/items/list/collection.png"; } isDefault = true; } else { imgUrl = "css/images/items/list/collection.png"; isDefault = true; } cssClass = isDefault ? "tileImage defaultTileImage" : "tileImage"; html += '
'; html += '
'; if (options.showParentName !== false) { if (item.SeriesName || item.Album || item.AlbumArtist) { var seriesName = item.SeriesName || item.Album || item.AlbumArtist; html += '
' + seriesName + '
'; } } var name = LibraryBrowser.getPosterViewDisplayName(item, options.displayAsSpecial); html += '
' + name + '
'; if (item.CommunityRating || item.CriticRating) { html += '

' + LibraryBrowser.getRatingHtml(item) + '

'; } var childText = null; if (item.Type == "BoxSet") { childText = item.ChildCount == 1 ? "1 Movie" : item.ChildCount + " Movies"; html += '

' + childText + '

'; } else if (item.Type == "GameSystem") { childText = item.ChildCount == 1 ? "1 Game" : item.ChildCount + " Games"; html += '

' + childText + '

'; } else if (item.Type == "MusicAlbum") { //childText = item.ChildCount == 1 ? "1 Song" : item.ChildCount + " Songs"; //html += '

' + childText + '

'; } else if (item.Type == "Genre" || item.Type == "Studio" || item.Type == "Person" || item.Type == "MusicArtist" || item.Type == "MusicGenre" || item.Type == "GameGenre") { var itemCountHtml = LibraryBrowser.getItemCountsHtml(options, item); if (itemCountHtml) { html += '

' + itemCountHtml + '

'; } } else if (item.Type == "Game") { html += '

' + (item.GameSystem) + '

'; } else if (item.Type == "Episode") { // Skip it. Just clutter } else { html += '

' + LibraryBrowser.getMiscInfoHtml(item) + '

'; } if (item.Type == "MusicAlbum") { html += '

' + LibraryBrowser.getMiscInfoHtml(item) + '

'; } html += '

' + LibraryBrowser.getUserDataIconsHtml(item) + '

'; html += '
'; if (item.LocationType == "Offline" || item.LocationType == "Virtual") { html += LibraryBrowser.getOfflineIndicatorHtml(item); } else { html += LibraryBrowser.getPlayedIndicatorHtml(item); } html += "
"; } return html; }, getItemCountsHtml: function (options, item) { var counts = []; var childText; if (options.context == "movies") { if (item.MovieCount) { childText = item.MovieCount == 1 ? "1 Movie" : item.MovieCount + " Movies"; counts.push(childText); } if (item.TrailerCount) { childText = item.TrailerCount == 1 ? "1 Trailer" : item.TrailerCount + " Trailers"; counts.push(childText); } } else if (options.context == "tv") { if (item.SeriesCount) { childText = item.SeriesCount == 1 ? "1 Show" : item.SeriesCount + " Shows"; counts.push(childText); } if (item.EpisodeCount) { childText = item.EpisodeCount == 1 ? "1 Episode" : item.EpisodeCount + " Episodes"; counts.push(childText); } } else if (options.context == "games") { if (item.GameCount) { childText = item.GameCount == 1 ? "1 Game" : item.GameCount + " Games"; counts.push(childText); } } else if (options.context == "music") { if (item.AlbumCount) { childText = item.AlbumCount == 1 ? "1 Album" : item.AlbumCount + " Albums"; counts.push(childText); } if (item.SongCount) { childText = item.SongCount == 1 ? "1 Song" : item.SongCount + " Songs"; counts.push(childText); } if (item.MusicVideoCount) { childText = item.MusicVideoCount == 1 ? "1 Music Video" : item.MusicVideoCount + " Music Videos"; counts.push(childText); } } return counts.join(' • '); }, getSongHeaderCellHtml: function (text, cssClass, enableSorting, sortField, selectedSortField, sortDirection) { var html = cssClass ? '' : ''; if (text && enableSorting) { html += ''; } html += text; if (text && enableSorting) { html += ''; if (sortField == selectedSortField) { if (sortDirection == "Descending") { html += ''; } else { html += ''; } } } html += ''; return html; }, getSongTableHtml: function (items, options) { options = options || {}; var html = ''; var cssClass = "detailTable"; html += '
'; html += ''; html += LibraryBrowser.getSongHeaderCellHtml('', '', options.enableColumnSorting); html += LibraryBrowser.getSongHeaderCellHtml('', '', options.enableColumnSorting); html += LibraryBrowser.getSongHeaderCellHtml('Track', '', options.enableColumnSorting, 'Name', options.sortBy, options.sortOrder); if (options.showAlbum) { html += LibraryBrowser.getSongHeaderCellHtml('Album', '', options.enableColumnSorting, 'Album,SortName', options.sortBy, options.sortOrder); } if (options.showArtist) { html += LibraryBrowser.getSongHeaderCellHtml('Artist', '', options.enableColumnSorting, 'Artist,Album,SortName', options.sortBy, options.sortOrder); html += LibraryBrowser.getSongHeaderCellHtml('Album Artist', 'tabletColumn', options.enableColumnSorting, 'AlbumArtist,Album,SortName', options.sortBy, options.sortOrder); } html += LibraryBrowser.getSongHeaderCellHtml('Runtime', 'tabletColumn', options.enableColumnSorting, 'Runtime,AlbumArtist,Album,SortName', options.sortBy, options.sortOrder); html += LibraryBrowser.getSongHeaderCellHtml('Plays', 'desktopColumn', options.enableColumnSorting, 'PlayCount,AlbumArtist,Album,SortName', options.sortBy, options.sortOrder); html += ''; html += ''; for (var i = 0, length = items.length; i < length; i++) { var item = items[i]; html += ''; html += ''; var num = item.IndexNumber; if (num && item.ParentIndexNumber) { num = item.ParentIndexNumber + "." + num; } html += ''; html += ''; if (options.showAlbum) { if (item.Album && item.ParentId) { html += ''; } else { html += ''; } } if (options.showArtist) { if (item.Artists && item.Artists.length) { var artistLinksHtml = LibraryBrowser.getArtistLinksHtml(item.Artists); html += ''; } else { html += ''; } } if (options.showArtist) { if (item.AlbumArtist) { html += ''; } else { html += ''; } } var time = Dashboard.getDisplayTime(item.RunTimeTicks || 0); html += ''; html += ''; html += ''; } html += ''; html += '
' + (num || "") + '' + (item.Name || "") + '' + item.Album + '' + (item.Album || '') + '' + artistLinksHtml + '' + LibraryBrowser.getArtistLinksHtml([item.AlbumArtist]) + '' + time + '' + (item.UserData ? item.UserData.PlayCount : 0) + '
'; return html; }, getArtistLinksHtml: function (artists) { var html = []; for (var i = 0, length = artists.length; i < length; i++) { var artist = artists[i]; html.push('' + artist + ''); } html = html.join(' / '); return html; }, showPlayMenu: function (positionTo, itemId, itemType, mediaType, resumePositionTicks) { var isPlaying = MediaPlayer.isPlaying(); if (!isPlaying && !resumePositionTicks && mediaType != "Audio") { MediaPlayer.playById(itemId); return; } $('.playFlyout').popup("close").remove(); var html = '
'; html += ''; html += '
'; $($.mobile.activePage).append(html); $('.playFlyout').popup({ positionTo: positionTo || "window" }).trigger('create').popup("open").on("popupafterclose", function () { $(this).off("popupafterclose").remove(); }).parents(".ui-popup-container").css("margin-left", 100).css("margin-top", 35); }, closePlayMenu: function () { $('.playFlyout').popup("close").remove(); }, getHref: function (item, itemByNameContext) { if (item.url) { return item.url; } itemByNameContext = itemByNameContext || ""; // Handle search hints var id = item.Id || item.ItemId; if (item.Type == "Channel") { return "livetvchannel.html?id=" + id; } if (item.Type == "Program") { return "livetvprogram.html?id=" + id; } if (item.Type == "Series") { return "itemdetails.html?id=" + id; } if (item.Type == "Season") { return "itemdetails.html?id=" + id; } if (item.Type == "BoxSet") { return "itemdetails.html?id=" + id; } if (item.Type == "MusicAlbum") { return "itemdetails.html?id=" + id; } if (item.Type == "GameSystem") { return "itemdetails.html?id=" + id; } if (item.Type == "Genre") { return "itembynamedetails.html?genre=" + ApiClient.encodeName(item.Name) + "&context=" + itemByNameContext; } if (item.Type == "MusicGenre") { return "itembynamedetails.html?musicgenre=" + ApiClient.encodeName(item.Name) + "&context=" + itemByNameContext; } if (item.Type == "GameGenre") { return "itembynamedetails.html?gamegenre=" + ApiClient.encodeName(item.Name) + "&context=" + itemByNameContext; } if (item.Type == "Studio") { return "itembynamedetails.html?studio=" + ApiClient.encodeName(item.Name) + "&context=" + itemByNameContext; } if (item.Type == "Person") { return "itembynamedetails.html?person=" + ApiClient.encodeName(item.Name) + "&context=" + itemByNameContext; } if (item.Type == "Recording") { return "livetvrecording.html?id=" + id; } if (item.Type == "MusicArtist") { return "itembynamedetails.html?musicartist=" + ApiClient.encodeName(item.Name) + "&context=" + (itemByNameContext || "music"); } return item.IsFolder ? (id ? "itemlist.html?parentId=" + id : "#") : "itemdetails.html?id=" + id; }, getImageUrl: function (item, type, index, options) { options = options || {}; options.type = type; options.index = index; if (type == 'Backdrop') { options.tag = item.BackdropImageTags[index]; } else if (type == 'Screenshot') { options.tag = item.ScreenshotImageTags[index]; } else if (type == 'Primary') { options.tag = item.PrimaryImageTag || item.ImageTags[type]; } else { options.tag = item.ImageTags[type]; } if (item.Type == "Studio") { return ApiClient.getStudioImageUrl(item.Name, options); } if (item.Type == "Person") { return ApiClient.getPersonImageUrl(item.Name, options); } if (item.Type == "Genre") { return ApiClient.getGenreImageUrl(item.Name, options); } if (item.Type == "MusicGenre") { return ApiClient.getMusicGenreImageUrl(item.Name, options); } if (item.Type == "GameGenre") { return ApiClient.getGameGenreImageUrl(item.Name, options); } if (item.Type == "MusicArtist") { return ApiClient.getArtistImageUrl(item.Name, options); } // For search hints return ApiClient.getImageUrl(item.Id || item.ItemId, options); }, getPosterViewHtml: function (options) { var items = options.items; var currentIndexValue; options.shape = options.shape || "portrait"; var html = ""; var primaryImageAspectRatio = options.useAverageAspectRatio || options.shape == 'auto' ? LibraryBrowser.getAveragePrimaryImageAspectRatio(items) : null; if (options.shape == 'auto') { if (primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 1.777777778) < .3) { options.shape = 'backdrop'; } else if (primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 1) < .3) { options.shape = 'square'; } else { options.shape = 'portrait'; } } if (!options.useAverageAspectRatio) { primaryImageAspectRatio = null; } for (var i = 0, length = items.length; i < length; i++) { var item = items[i]; var futureDateText; if (item.PremiereDate) { try { futureDateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.PremiereDate, { toLocal: true }), true); } catch (err) { } } if (options.showPremiereDateIndex && futureDateText) { var val = futureDateText || "Unknown Date"; if (val != currentIndexValue) { html += '

' + val + '

'; currentIndexValue = val; } } else if (options.timeline) { var year = item.ProductionYear || "Unknown Year"; if (year != currentIndexValue) { html += '

' + year + '

'; currentIndexValue = year; } } var imgUrl = null; var background = null; var width = null; var height = null; var forceName = false; if (options.preferBackdrop && item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Backdrop", maxwidth: 576, tag: item.BackdropImageTags[0] }); } else if (options.preferThumb && item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Thumb", maxwidth: 576, tag: item.ImageTags.Thumb }); } else if (options.preferThumb && item.SeriesThumbImageTag) { imgUrl = ApiClient.getImageUrl(item.SeriesId, { type: "Thumb", maxwidth: 576, tag: item.SeriesThumbImageTag }); } else if (options.preferThumb && item.ParentThumbItemId) { imgUrl = ApiClient.getThumbImageUrl(item.ParentThumbItemId, { type: "Thumb", maxwidth: 576 }); } else if (options.preferThumb && item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Backdrop", maxwidth: 576, tag: item.BackdropImageTags[0] }); forceName = true; } else if (item.ImageTags && item.ImageTags.Primary) { height = 400; width = primaryImageAspectRatio ? Math.round(height * primaryImageAspectRatio) : null; imgUrl = ApiClient.getImageUrl(item.Id, { type: "Primary", height: height, width: width, tag: item.ImageTags.Primary }); } else if (item.AlbumId && item.AlbumPrimaryImageTag) { height = 400; width = primaryImageAspectRatio ? Math.round(height * primaryImageAspectRatio) : null; imgUrl = ApiClient.getImageUrl(item.AlbumId, { type: "Primary", height: height, width: width, tag: item.AlbumPrimaryImageTag }); } else if (item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Backdrop", maxwidth: 576, tag: item.BackdropImageTags[0] }); } else if (item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getImageUrl(item.Id, { type: "Thumb", maxwidth: 576, tag: item.ImageTags.Thumb }); } else if (item.SeriesThumbImageTag) { imgUrl = ApiClient.getImageUrl(item.SeriesId, { type: "Thumb", maxwidth: 576, tag: item.SeriesThumbImageTag }); } else if (item.ParentThumbItemId) { imgUrl = ApiClient.getThumbImageUrl(item, { type: "Thumb", maxwidth: 576 }); } else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist") { if (item.Name && options.showTitle) { imgUrl = 'css/images/items/list/audio.png'; } background = defaultBackground; } else if (item.Type == "Recording" || item.Type == "Program" || item.Type == "Channel") { if (item.Name && options.showTitle) { imgUrl = 'css/images/items/list/collection.png'; } background = defaultBackground; } else if (item.MediaType == "Video" || item.Type == "Season" || item.Type == "Series") { if (item.Name && options.showTitle) { imgUrl = 'css/images/items/list/video.png'; } background = defaultBackground; } else if (item.Type == "Person") { if (item.Name && options.showTitle) { imgUrl = 'css/images/items/list/person.png'; } background = defaultBackground; } else { if (item.Name && options.showTitle) { imgUrl = 'css/images/items/list/collection.png'; } background = defaultBackground; } var cssClass = "posterItem"; if (options.transparent !== false) { cssClass += " transparentPosterItem"; } if (options.borderless) { cssClass += " borderlessPosterItem"; } cssClass += ' ' + options.shape + 'PosterItem'; html += ''; var style = ""; if (imgUrl) { style += 'background-image:url(\'' + imgUrl + '\');'; } if (background) { style += "background-color:" + background + ";"; } var imageCssClass = 'posterItemImage'; if (options.coverImage) { imageCssClass += " coveredPosterItemImage"; } var progressHtml = LibraryBrowser.getItemProgressBarHtml(item); html += '
'; html += '
'; if (item.LocationType == "Offline" || item.LocationType == "Virtual") { if (options.showLocationTypeIndicator !== false) { html += LibraryBrowser.getOfflineIndicatorHtml(item); } } else if (options.showUnplayedIndicator !== false) { html += LibraryBrowser.getPlayedIndicatorHtml(item); } if (!options.overlayText) { if (progressHtml) { html += '
'; html += "
"; html += progressHtml; html += "
"; html += "
"; } } html += '
'; var name = LibraryBrowser.getPosterViewDisplayName(item, options.displayAsSpecial); if (!imgUrl && !options.showTitle) { html += "
"; html += name; html += "
"; } var overlayText = forceName || options.overlayText; if (overlayText) { html += '
'; } cssClass = options.centerText ? "posterItemText posterItemTextCentered" : "posterItemText"; if (options.showParentTitle) { html += "
"; html += item.EpisodeTitle ? item.Name : (item.SeriesName || item.Album || item.AlbumArtist || item.GameSystem || " "); html += "
"; } if (options.showTitle || forceName) { html += "
"; html += name; html += "
"; } if (options.showItemCounts) { var itemCountHtml = LibraryBrowser.getItemCountsHtml(options, item); if (itemCountHtml) { html += "
"; html += itemCountHtml; html += "
"; } } if (options.showPremiereDate && item.PremiereDate) { try { //var date = parseISO8601Date(item.PremiereDate, { toLocal: true }); html += "
"; html += LibraryBrowser.getPremiereDateText(item); html += "
"; } catch (err) { } } if (options.overlayText) { if (progressHtml) { html += "
"; html += progressHtml || " "; html += "
"; } } if (overlayText) { html += "
"; } html += "
"; } return html; }, isYesterday: function (date1) { var today = new Date(); today.setDate(today.getDate() - 1); return date1.getFullYear() == today.getFullYear() && date1.getDate() == today.getDate(); }, isSameDay: function (date1, date2) { return date1.getFullYear() == date2.getFullYear() && date1.getDate() == date2.getDate(); }, getFutureDateText: function (date, includeDayNamesInFuture) { var weekday = []; weekday[0] = "Sunday"; weekday[1] = "Monday"; weekday[2] = "Tuesday"; weekday[3] = "Wednesday"; weekday[4] = "Thursday"; weekday[5] = "Friday"; weekday[6] = "Saturday"; var currentDate = new Date(); if (LibraryBrowser.isSameDay(date, currentDate)) { return "Today"; } if (LibraryBrowser.isYesterday(date)) { return "Yesterday"; } var day = weekday[date.getDay()]; date = date.toLocaleDateString(); if (date.toLowerCase().indexOf(day.toLowerCase()) == -1) { return day + " " + date; } return date; }, getPremiereDateText: function (item, date) { if (!date) { var text = ''; if (item.AirTime) { text += item.AirTime; } if (item.SeriesStudio) { if (text) { text += " on " + item.SeriesStudio; } else { text += item.SeriesStudio; } } return text; } var day = LibraryBrowser.getFutureDateText(date); if (item.AirTime) { day += " at " + item.AirTime; } if (item.SeriesStudio) { day += " on " + item.SeriesStudio; } return day; }, getPosterViewDisplayName: function (item, displayAsSpecial) { var name = item.EpisodeTitle || item.Name; if (item.Type == "Channel") { return item.Number + ' ' + name; } if (displayAsSpecial && item.Type == "Episode" && item.ParentIndexNumber == 0) { name = "Special - " + name; } else if (item.Type == "Episode" && item.IndexNumber != null && item.ParentIndexNumber != null) { var displayIndexNumber = item.IndexNumber; var number = "S" + item.ParentIndexNumber + ", E" + displayIndexNumber; if (item.IndexNumberEnd) { displayIndexNumber = item.IndexNumberEnd; number += "-" + displayIndexNumber; } name = number + " - " + name; } else { if (item.IndexNumber != null && item.Type !== "Season") { name = item.IndexNumber + " - " + name; } if (item.ParentIndexNumber != null && item.Type != "Episode") { name = item.ParentIndexNumber + "." + name; } } return name; }, getOfflineIndicatorHtml: function (item) { if (item.LocationType == "Offline") { return '
Offline
'; } try { var date = parseISO8601Date(item.PremiereDate, { toLocal: true }); if (item.PremiereDate && (new Date().getTime() < date.getTime())) { return '
Unaired
'; } } catch (err) { } if (item.IsFolder) { return ''; } return '
Missing
'; }, getPlayedIndicatorHtml: function (item) { if (item.Type == "Channel") { return ''; } if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video") { if (item.RecursiveUnplayedItemCount) { return '
' + item.RecursiveUnplayedItemCount + '
'; } if (item.PlayedPercentage == 100) { return '
'; } var userData = item.UserData || {}; if (userData.Played) { return '
'; } } return ''; }, getAveragePrimaryImageAspectRatio: function (items) { var values = []; for (var i = 0, length = items.length; i < length; i++) { var ratio = items[i].PrimaryImageAspectRatio || 0; if (!ratio) { continue; } values[values.length] = ratio; } if (!values.length) { return null; } // Use the median values.sort(function (a, b) { return a - b; }); var half = Math.floor(values.length / 2); var result; if (values.length % 2) result = values[half]; else result = (values[half - 1] + values[half]) / 2.0; // If really close to 2:3 (poster image), just return 2:3 if (Math.abs(0.66666666667 - result) <= .05) { return 0.66666666667; } // If really close to 16:9 (episode image), just return 16:9 if (Math.abs(1.777777778 - result) <= .05) { return 1.777777778; } // If really close to 1 (square image), just return 1 if (Math.abs(1 - result) <= .05) { return 1; } // If really close to 4:3 (poster image), just return 2:3 if (Math.abs(1.33333333333 - result) <= .05) { return 1.33333333333; } return result; }, metroColors: ["#6FBD45", "#4BB3DD", "#4164A5", "#E12026", "#800080", "#E1B222", "#008040", "#0094FF", "#FF00C7", "#FF870F", "#7F0037"], getRandomMetroColor: function () { var index = Math.floor(Math.random() * (LibraryBrowser.metroColors.length - 1)); return LibraryBrowser.metroColors[index]; }, getMetroColor: function (str) { if (str) { var character = String(str.substr(0, 1).charCodeAt()); var sum = 0; for (var i = 0; i < character.length; i++) { sum += parseInt(character.charAt(i)); } var index = String(sum).substr(-1); return LibraryBrowser.metroColors[index]; } else { return LibraryBrowser.getRandomMetroColor(); } }, renderName: function (item, nameElem, linkToElement) { var name = LibraryBrowser.getPosterViewDisplayName(item); Dashboard.setPageTitle(name); if (linkToElement) { nameElem.html('' + name + '').trigger('create'); } else { nameElem.html(name); } }, renderParentName: function (item, parentNameElem) { var html = []; if (item.AlbumArtist && item.Type == "Audio") { html.push('' + item.AlbumArtist + ''); } else if (item.AlbumArtist && item.Type == "MusicAlbum") { html.push('' + item.AlbumArtist + ''); } else if (item.Artists && item.Artists.length && item.Type == "MusicVideo") { html.push('' + item.Artists[0] + ''); } else if (item.SeriesName && item.Type == "Episode") { html.push('' + item.SeriesName + ''); } if (item.SeriesName && item.Type == "Season") { html.push('' + item.SeriesName + ''); } else if (item.ParentIndexNumber != null && item.Type == "Episode") { html.push('Season ' + item.ParentIndexNumber + ''); } else if (item.Album && item.Type == "Audio" && (item.AlbumId || item.ParentId)) { html.push('' + item.Album + ''); } else if (item.Album && item.Type == "MusicVideo" && item.AlbumId) { html.push('' + item.Album + ''); } else if (item.AlbumArtist && item.Type == "MusicAlbum") { } else if (item.Album) { html.push(item.Album); } if (html.length) { parentNameElem.show().html(html.join(' - ')).trigger('create'); } else { parentNameElem.hide(); } }, renderLinks: function (linksElem, item) { var links = []; if (item.HomePageUrl) { links.push('Website'); } var providerIds = item.ProviderIds || {}; if (providerIds.Imdb) { if (item.Type == "Person") { links.push('IMDb'); } else { links.push('IMDb'); } } if (providerIds.Tmdb) { if (item.Type == "Movie" || item.Type == "Trailer" || item.Type == "MusicVideo") links.push('TheMovieDB'); else if (item.Type == "BoxSet") links.push('TheMovieDB'); else if (item.Type == "Person") links.push('TheMovieDB'); } if (providerIds.Tvdb) { if (item.Type == "Series") { links.push('TheTVDB'); } } if (providerIds.Tvcom) { if (item.Type == "Episode") links.push('TV.com'); else if (item.Type == "Person") links.push('TV.com'); } if (providerIds.Musicbrainz) { if (item.Type == "MusicArtist") { links.push('MusicBrainz'); } else { links.push('MusicBrainz Release'); } } if (providerIds.MusicBrainzReleaseGroup) { links.push('MusicBrainz Release Group'); } if (providerIds.Gamesdb) { links.push('GamesDB'); } if (providerIds.NesBox) { if (item.GameSystem == "Nintendo") { links.push('NESbox'); } else if (item.GameSystem == "Super Nintendo") { links.push('SNESbox'); } } if (providerIds.Zap2It) links.push('Zap2It'); if (links.length) { var html = 'Links:  ' + links.join('  /  '); $(linksElem).html(html).trigger('create'); } else { $(linksElem).hide(); } }, getViewSummaryHtml: function (query, checkedSortOption) { var html = ''; if (query.SortBy) { var id = checkedSortOption[0].id; var sortBy = checkedSortOption.siblings('label[for=' + id + ']').text(); html += 'Sorted by ' + sortBy.trim().toLowerCase() + ', ' + (query.SortOrder || 'ascending').toLowerCase(); } return html; }, getPagingHtml: function (query, totalRecordCount, updatePageSizeSetting, pageSizes) { if (query.Limit && updatePageSizeSetting !== false) { localStorage.setItem('pagesize', query.Limit); } var html = ''; var pageCount = Math.ceil(totalRecordCount / query.Limit); var pageNumber = (query.StartIndex / query.Limit) + 1; var dropdownHtml = ''; var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount); // 20 is the minimum page size var showControls = totalRecordCount > 20; html += '
'; html += ''; var startAtDisplay = totalRecordCount ? query.StartIndex + 1 : 0; html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount; if (showControls) { html += ', page ' + dropdownHtml + ' of ' + pageCount; } html += ''; if (showControls) { html += ''; html += ''; var id = "selectPageSize" + new Date().getTime(); var options = ''; function getOption(val) { if (query.Limit == val) { return ''; } else { return ''; } } pageSizes = pageSizes || [20, 50, 100, 200, 300, 400, 500]; for (var j = 0, length = pageSizes.length; j < length; j++) { options += getOption(pageSizes[j]); } // Add styles to defeat jquery mobile html += ''; } html += '
'; return html; }, getRatingHtml: function (item, metascore) { var html = ""; if (item.CommunityRating) { html += "
"; html += '
'; html += item.CommunityRating.toFixed(1); html += '
'; //var rating = item.CommunityRating / 2; //for (var i = 1; i <= 5; i++) { // if (rating <= i - 1) { // html += "
"; // } // else if (rating < i) { // html += "
"; // } // else { // html += "
"; // } //} } if (item.CriticRating != null) { if (item.CriticRating >= 60) { html += '
'; } else { html += '
'; } html += '
' + item.CriticRating + '%
'; } if (item.Metascore && metascore !== false) { if (item.Metascore >= 60) { html += '
' + item.Metascore + '
'; } else if (item.Metascore >= 40) { html += '
' + item.Metascore + '
'; } else { html += '
' + item.Metascore + '
'; } } return html; }, getItemProgressBarHtml: function (item) { if (item.Type == "Recording" && item.CompletionPercentage) { return ''; } if (item.UserData && item.UserData.PlaybackPositionTicks && item.RunTimeTicks) { var tooltip = Dashboard.getDisplayTime(item.UserData.PlaybackPositionTicks) + " / " + Dashboard.getDisplayTime(item.RunTimeTicks); var pct = (item.UserData.PlaybackPositionTicks / item.RunTimeTicks) * 100; if (pct && pct < 100) { return ''; } } return null; }, getUserDataIconsHtml: function (item) { var html = ''; var userData = item.UserData || {}; var itemId = item.Id; var type = item.Type; if (type == "Person") { itemId = item.Name; } else if (type == "Studio") { itemId = item.Name; } else if (type == "Genre") { itemId = item.Name; } else if (type == "MusicGenre") { itemId = item.Name; } else if (type == "GameGenre") { itemId = item.Name; } else if (type == "MusicArtist") { itemId = item.Name; } if ((item.MediaType || item.IsFolder) && item.Type != "Channel" && item.Type != "MusicArtist") { if (userData.Played) { html += 'Played'; } else { html += 'Played'; } } if (typeof userData.Likes == "undefined") { html += 'Dislike'; html += 'Like'; } else if (userData.Likes) { html += 'Dislike'; html += 'Like'; } else { html += 'Dislike'; html += 'Like'; } if (userData.IsFavorite) { html += 'Favorite'; } else { html += 'Favorite'; } return html; }, markPlayed: function (link) { var id = link.getAttribute('data-itemid'); var $link = $(link); var markAsPlayed = $link.hasClass('imgPlayedOff'); if (markAsPlayed) { ApiClient.markPlayed(Dashboard.getCurrentUserId(), id); } else { ApiClient.markUnplayed(Dashboard.getCurrentUserId(), id); } if (markAsPlayed) { link.src = "css/images/userdata/checkedon.png"; $link.addClass('imgPlayed').removeClass('imgPlayedOff'); } else { link.src = "css/images/userdata/checkedoff.png"; $link.addClass('imgPlayedOff').removeClass('imgPlayed'); } }, markFavorite: function (link) { var id = link.getAttribute('data-itemid'); var type = link.getAttribute('data-type'); var $link = $(link); var markAsFavorite = $link.hasClass('imgFavoriteOff'); if (type == "Person") { ApiClient.updateFavoritePersonStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else if (type == "Studio") { ApiClient.updateFavoriteStudioStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else if (type == "MusicArtist") { ApiClient.updateFavoriteArtistStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else if (type == "Genre") { ApiClient.updateFavoriteGenreStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else if (type == "MusicGenre") { ApiClient.updateFavoriteMusicGenreStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else if (type == "GameGenre") { ApiClient.updateFavoriteGameGenreStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } else { ApiClient.updateFavoriteStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); } if (markAsFavorite) { link.src = "css/images/userdata/heart_on.png"; $link.addClass('imgFavorite').removeClass('imgFavoriteOff'); } else { link.src = "css/images/userdata/heart_off.png"; $link.addClass('imgFavoriteOff').removeClass('imgFavorite'); } }, markLike: function (link) { var id = link.getAttribute('data-itemid'); var type = link.getAttribute('data-type'); var $link = $(link); if ($link.hasClass('imgLikeOff')) { LibraryBrowser.updateUserItemRating(type, id, true); link.src = "css/images/userdata/thumbs_up_on.png"; $link.addClass('imgLike').removeClass('imgLikeOff'); } else { LibraryBrowser.clearUserItemRating(type, id); link.src = "css/images/userdata/thumbs_up_off.png"; $link.addClass('imgLikeOff').removeClass('imgLike'); } $link.prev().removeClass('imgDislike').addClass('imgDislikeOff').each(function () { this.src = "css/images/userdata/thumbs_down_off.png"; }); }, markDislike: function (link) { var id = link.getAttribute('data-itemid'); var type = link.getAttribute('data-type'); var $link = $(link); if ($link.hasClass('imgDislikeOff')) { LibraryBrowser.updateUserItemRating(type, id, false); link.src = "css/images/userdata/thumbs_down_on.png"; $link.addClass('imgDislike').removeClass('imgDislikeOff'); } else { LibraryBrowser.clearUserItemRating(type, id); link.src = "css/images/userdata/thumbs_down_off.png"; $link.addClass('imgDislikeOff').removeClass('imgDislike'); } $link.next().removeClass('imgLike').addClass('imgLikeOff').each(function () { this.src = "css/images/userdata/thumbs_up_off.png"; }); }, updateUserItemRating: function (type, id, likes) { if (type == "Person") { ApiClient.updatePersonRating(Dashboard.getCurrentUserId(), id, likes); } else if (type == "Studio") { ApiClient.updateStudioRating(Dashboard.getCurrentUserId(), id, likes); } else if (type == "MusicArtist") { ApiClient.updateArtistRating(Dashboard.getCurrentUserId(), id, likes); } else if (type == "Genre") { ApiClient.updateGenreRating(Dashboard.getCurrentUserId(), id, likes); } else if (type == "MusicGenre") { ApiClient.updateMusicGenreRating(Dashboard.getCurrentUserId(), id, likes); } else if (type == "GameGenre") { ApiClient.updateGameGenreRating(Dashboard.getCurrentUserId(), id, likes); } else { ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, likes); } }, clearUserItemRating: function (type, id) { if (type == "Person") { ApiClient.clearPersonRating(Dashboard.getCurrentUserId(), id); } else if (type == "Studio") { ApiClient.clearStudioRating(Dashboard.getCurrentUserId(), id); } else if (type == "MusicArtist") { ApiClient.clearArtistRating(Dashboard.getCurrentUserId(), id); } else if (type == "Genre") { ApiClient.clearGenreRating(Dashboard.getCurrentUserId(), id); } else if (type == "MusicGenre") { ApiClient.clearMusicGenreRating(Dashboard.getCurrentUserId(), id); } else if (type == "GameGenre") { ApiClient.clearGameGenreRating(Dashboard.getCurrentUserId(), id); } else { ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id); } }, getDetailImageHtml: function (item, href) { var imageTags = item.ImageTags || {}; if (item.PrimaryImageTag) { imageTags.Primary = item.PrimaryImageTag; } var html = ''; var url; var imageHeight = 440; if (imageTags.Primary) { if (item.Type == "Person") { url = ApiClient.getPersonImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else if (item.Type == "Genre") { url = ApiClient.getGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else if (item.Type == "MusicGenre") { url = ApiClient.getMusicGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else if (item.Type == "GameGenre") { url = ApiClient.getGameGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else if (item.Type == "Studio") { url = ApiClient.getStudioImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else if (item.Type == "MusicArtist") { url = ApiClient.getArtistImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Primary, type: "Primary" }); } else { url = ApiClient.getImageUrl(item.Id, { type: "Primary", maxheight: imageHeight, tag: item.ImageTags.Primary }); } } else if (item.BackdropImageTags && item.BackdropImageTags.length) { if (item.Type == "Person") { url = ApiClient.getPersonImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else if (item.Type == "Genre") { url = ApiClient.getGenreImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else if (item.Type == "MusicGenre") { url = ApiClient.getMusicGenreImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else if (item.Type == "GameGenre") { url = ApiClient.getGameGenreImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else if (item.Type == "Studio") { url = ApiClient.getStudioImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else if (item.Type == "MusicArtist") { url = ApiClient.getArtistImageUrl(item.Name, { maxheight: imageHeight, tag: item.BackdropImageTags[0], type: "Backdrop" }); } else { url = ApiClient.getImageUrl(item.Id, { type: "Backdrop", maxheight: imageHeight, tag: item.BackdropImageTags[0] }); } } else if (imageTags.Thumb) { if (item.Type == "Person") { url = ApiClient.getPersonImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else if (item.Type == "Genre") { url = ApiClient.getGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else if (item.Type == "MusicGenre") { url = ApiClient.getMusicGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else if (item.Type == "GameGenre") { url = ApiClient.getGameGenreImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else if (item.Type == "Studio") { url = ApiClient.getStudioImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else if (item.Type == "MusicArtist") { url = ApiClient.getArtistImageUrl(item.Name, { maxheight: imageHeight, tag: imageTags.Thumb, type: "Thumb" }); } else { url = ApiClient.getImageUrl(item.Id, { type: "Thumb", maxheight: imageHeight, tag: item.ImageTags.Thumb }); } } else if (imageTags.Disc) { url = ApiClient.getImageUrl(item.Id, { type: "Disc", maxheight: imageHeight, tag: item.ImageTags.Disc }); } else if (item.AlbumId && item.AlbumPrimaryImageTag) { url = ApiClient.getImageUrl(item.AlbumId, { type: "Primary", maxheight: imageHeight, tag: item.AlbumPrimaryImageTag }); } else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicGenre") { url = "css/images/items/detail/audio.png"; } else if (item.MediaType == "Game" || item.Type == "GameGenre") { url = "css/images/items/detail/game.png"; } 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"; } else if (item.Type == "Channel") { url = "css/images/items/detail/tv.png"; } else { url = "css/images/items/detail/video.png"; } var identifierName = "id"; var identifierValue = item.Id; if (item.Type == "Person" || item.Type == "Genre" || item.Type == "Studio" || item.Type == "MusicArtist" || item.Type == "MusicGenre" || item.Type == "GameGenre") { identifierName = item.Type; identifierValue = ApiClient.encodeName(item.Name); } if (!href) { href = "itemgallery.html?" + identifierName + "=" + identifierValue; } var linkToGallery = LibraryBrowser.shouldDisplayGallery(item); html += '
'; if (linkToGallery) { html += ""; } html += ""; if (linkToGallery) { html += ""; } var progressHtml = LibraryBrowser.getItemProgressBarHtml(item); if (progressHtml) { html += '
'; html += progressHtml; html += "
"; } html += "
"; return html; }, getMiscInfoHtml: function (item) { var miscInfo = []; var text, date; if (item.Type == "Episode") { if (item.PremiereDate) { try { date = parseISO8601Date(item.PremiereDate, { toLocal: true }); text = date.toLocaleDateString(); miscInfo.push(text); } catch (e) { console.log("Error parsing date: " + item.PremiereDate); } } } if (item.StartDate) { try { date = parseISO8601Date(item.StartDate, { toLocal: true }); text = date.toLocaleDateString(); miscInfo.push(text); if (item.Type != "Recording") { text = LiveTvHelpers.getDisplayTime(date); miscInfo.push(text); } } catch (e) { console.log("Error parsing date: " + item.PremiereDate); } } if (item.ProductionYear && item.Type == "Series") { if (item.Status == "Continuing") { miscInfo.push(item.ProductionYear + "-Present"); } else if (item.ProductionYear) { text = item.ProductionYear; if (item.EndDate) { try { var endYear = parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear(); if (endYear != item.ProductionYear) { text += "-" + parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear(); } } catch (e) { console.log("Error parsing date: " + item.EndDate); } } miscInfo.push(text); } } if (item.Type != "Series" && item.Type != "Episode") { if (item.ProductionYear) { miscInfo.push(item.ProductionYear); } else if (item.PremiereDate) { try { text = parseISO8601Date(item.PremiereDate, { toLocal: true }).getFullYear(); miscInfo.push(text); } catch (e) { console.log("Error parsing date: " + item.PremiereDate); } } } var minutes; if (item.RunTimeTicks && item.Type != "Series") { if (item.Type == "Audio") { miscInfo.push(Dashboard.getDisplayTime(item.RunTimeTicks)); } else { minutes = item.RunTimeTicks / 600000000; minutes = minutes || 1; miscInfo.push(Math.round(minutes) + "min"); } } if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") { miscInfo.push(item.OfficialRating); } if (item.Video3DFormat) { miscInfo.push("3D"); } return miscInfo.join('    '); }, renderOverview: function (elem, item) { var overview = item.OverviewHtml || item.Overview || ''; elem.html(overview).trigger('create'); $('a', elem).each(function () { $(this).attr("target", "_blank"); }); }, renderStudios: function (elem, item, context) { if (item.Studios && item.Studios.length && item.Type != "Series") { var prefix = item.Studios.length > 1 ? "Studios" : "Studio"; var html = prefix + ':  '; for (var i = 0, length = item.Studios.length; i < length; i++) { if (i > 0) { html += '  /  '; } html += '' + item.Studios[i].Name + ''; } elem.show().html(html).trigger('create'); } else { elem.hide(); } }, renderGenres: function (elem, item, context) { var html = ''; var genres = item.Genres || []; for (var i = 0, length = genres.length; i < length; i++) { if (i > 0) { html += '  /  '; } var param = item.Type == "Audio" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre"; if (item.MediaType == "Game") { param = "gamegenre"; } html += '' + genres[i] + ''; } elem.html(html).trigger('create'); }, renderPremiereDate: function (elem, item) { if (item.PremiereDate) { try { var date = parseISO8601Date(item.PremiereDate, { toLocal: true }); var text = new Date().getTime() > date.getTime() ? "Premiered" : "Premieres"; elem.show().html(text + '  ' + date.toLocaleDateString()); } catch (err) { elem.hide(); } } else { elem.hide(); } }, renderBudget: function (elem, item) { if (item.Budget) { elem.show().html('Budget:  $' + item.Budget + ''); } else { elem.hide(); } }, renderRevenue: function (elem, item) { if (item.Revenue) { elem.show().html('Revenue:  $' + item.Revenue + ''); } else { elem.hide(); } }, renderDetailPageBackdrop: function (page, item) { var screenWidth = Math.max(screen.height, screen.width); var imgUrl; if (item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = LibraryBrowser.getImageUrl(item, 'Backdrop', 0, { maxwidth: screenWidth }); $('#itemBackdrop', page).removeClass('noBackdrop').css('background-image', 'url("' + imgUrl + '")'); } else if (item.ParentBackdropItemId && item.ParentBackdropImageTags && item.ParentBackdropImageTags.length) { imgUrl = ApiClient.getImageUrl(item.ParentBackdropItemId, { type: 'Backdrop', index: 0, tag: item.ParentBackdropImageTags[0], maxwidth: screenWidth }); $('#itemBackdrop', page).removeClass('noBackdrop').css('background-image', 'url("' + imgUrl + '")'); } else { $('#itemBackdrop', page).addClass('noBackdrop').css('background-image', 'none'); } }, shouldDisplayGallery: function (item) { var imageTags = item.ImageTags || {}; if (imageTags.Primary) { return true; } if (imageTags.Banner) { return true; } if (imageTags.Logo) { return true; } if (imageTags.Thumb) { return true; } if (imageTags.Art) { return true; } if (imageTags.Menu) { return true; } if (imageTags.Disc) { return true; } if (imageTags.Box) { return true; } if (imageTags.BoxRear) { return true; } if (item.BackdropImageTags && item.BackdropImageTags.length) { return true; } if (item.ScreenshotImageTags && item.ScreenshotImageTags.length) { return true; } return false; }, getGalleryHtml: function (item) { var html = ''; var i, length; var imageTags = item.ImageTags || {}; if (imageTags.Primary) { html += LibraryBrowser.createGalleryImage(item, "Primary", imageTags.Primary); } if (imageTags.Banner) { html += LibraryBrowser.createGalleryImage(item, "Banner", imageTags.Banner); } if (imageTags.Logo) { html += LibraryBrowser.createGalleryImage(item, "Logo", imageTags.Logo); } if (imageTags.Thumb) { html += LibraryBrowser.createGalleryImage(item, "Thumb", imageTags.Thumb); } if (imageTags.Art) { html += LibraryBrowser.createGalleryImage(item, "Art", imageTags.Art); } if (imageTags.Menu) { html += LibraryBrowser.createGalleryImage(item, "Menu", imageTags.Menu); } if (imageTags.Box) { html += LibraryBrowser.createGalleryImage(item, "Box", imageTags.Box); } if (imageTags.BoxRear) { html += LibraryBrowser.createGalleryImage(item, "BoxRear", imageTags.BoxRear); } if (item.BackdropImageTags) { for (i = 0, length = item.BackdropImageTags.length; i < length; i++) { html += LibraryBrowser.createGalleryImage(item, "Backdrop", item.BackdropImageTags[i], i); } } if (item.ScreenshotImageTags) { for (i = 0, length = item.ScreenshotImageTags.length; i < length; i++) { html += LibraryBrowser.createGalleryImage(item, "Screenshot", item.ScreenshotImageTags[i], i); } } if (imageTags.Disc) { html += LibraryBrowser.createGalleryImage(item, "Disc", imageTags.Disc); } return html; }, createGalleryImage: function (item, type, tag, index) { var screenWidth = Math.max(screen.height, screen.width); screenWidth = Math.min(screenWidth, 1280); var html = ''; if (typeof (index) == "undefined") index = 0; html += '
'; html += ''; html += ''; html += '
'; html += '
'; html += 'Close'; html += ''; html += '
'; return html; } }; })(window, document, jQuery, screen, localStorage); (function ($, document, window) { var showOverlayTimeout; function onHoverOut() { if (showOverlayTimeout) { clearTimeout(showOverlayTimeout); showOverlayTimeout = null; } $('.posterItemOverlayTarget:visible', this).each(function () { var elem = this; $(this).animate({ "height": "0" }, "fast", function () { $(elem).hide(); }); }); $('.posterItemOverlayTarget:visible', this).stop().animate({ "height": "0" }, function () { $(this).hide(); }); } function getOverlayHtml(item, currentUser, posterItem) { var html = ''; html += '
'; var isSmallItem = $(posterItem).hasClass('smallBackdropPosterItem'); var isPortrait = $(posterItem).hasClass('portraitPosterItem'); var parentName = isSmallItem || isPortrait ? null : item.SeriesName; var name = LibraryBrowser.getPosterViewDisplayName(item, true); html += '
'; var logoHeight = isSmallItem ? 20 : 24; var maxLogoWidth = isPortrait ? 100 : 200; var imgUrl; if (parentName && item.ParentLogoItemId) { imgUrl = ApiClient.getImageUrl(item.ParentLogoItemId, { height: logoHeight * 2, type: 'logo', tag: item.ParentLogoImageTag }); html += ''; } else if (item.ImageTags.Logo) { imgUrl = LibraryBrowser.getImageUrl(item, 'Logo', 0, { height: logoHeight * 2, }); html += ''; } else { html += parentName || name; } html += '
'; if (parentName) { html += '

'; html += name; html += '

'; } else if (!isSmallItem) { html += '

'; html += LibraryBrowser.getMiscInfoHtml(item); html += '

'; } html += '

'; html += ''; html += LibraryBrowser.getRatingHtml(item, false); html += ''; if (isPortrait) { html += ''; html += LibraryBrowser.getUserDataIconsHtml(item); html += ''; } else { html += ''; html += LibraryBrowser.getUserDataIconsHtml(item); html += ''; } html += '

'; //html += '

'; //html += (item.OverviewHtml || item.Overview || ''); //html += '

'; html += '
'; var buttonMargin = isPortrait ? "margin:0 7px 0 0;" : "margin:0 10px 0 0;"; var buttonCount = 0; if (MediaPlayer.canPlay(item)) { html += ''; buttonCount++; } if (item.LocalTrailerCount) { html += ''; buttonCount++; } if (currentUser.Configuration.IsAdministrator) { html += ''; buttonCount++; } if (!isPortrait || buttonCount < 3) { html += ''; } html += '
'; html += '
'; return html; } function onTrailerButtonClick() { var id = this.getAttribute('data-itemid'); ApiClient.getLocalTrailers(Dashboard.getCurrentUserId(), id).done(function (trailers) { MediaPlayer.play(trailers); }); return false; } function onRemoteControlButtonClick() { var id = this.getAttribute('data-itemid'); ApiClient.getItem(Dashboard.getCurrentUserId(), id).done(function (item) { RemoteControl.showMenuForItem({ item: item }); }); return false; } $.fn.createPosterItemHoverMenu = function () { function onShowTimerExpired(elem) { var innerElem = $('.posterItemOverlayTarget', elem); var id = elem.getAttribute('data-itemid'); var promise1 = ApiClient.getItem(Dashboard.getCurrentUserId(), id); var promise2 = Dashboard.getCurrentUser(); $.when(promise1, promise2).done(function (response1, response2) { var item = response1[0]; var user = response2[0]; innerElem.html(getOverlayHtml(item, user, elem)).trigger('create'); $('.btnPlayTrailer', innerElem).on('click', onTrailerButtonClick); $('.btnRemoteControl', innerElem).on('click', onRemoteControlButtonClick); }); innerElem.show().each(function () { this.style.height = 0; }).animate({ "height": "100%" }, "fast"); } function onHoverIn() { if (showOverlayTimeout) { clearTimeout(showOverlayTimeout); showOverlayTimeout = null; } var elem = this; showOverlayTimeout = setTimeout(function () { onShowTimerExpired(elem); }, 1000); } // https://hacks.mozilla.org/2013/04/detecting-touch-its-the-why-not-the-how/ if (('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)) { /* browser with either Touch Events of Pointer Events running on touch-capable device */ return this; } return this.on('mouseenter', '.backdropPosterItem,.smallBackdropPosterItem,.portraitPosterItem', onHoverIn).on('mouseleave', '.backdropPosterItem,.smallBackdropPosterItem,.portraitPosterItem', onHoverOut); }; })(jQuery, document, window);