var LibraryBrowser = (function (window, document, $, screen) { var pageSizeKey = 'pagesize_v4'; return { getDefaultPageSize: function (key, defaultValue) { var saved = appStorage.getItem(key || pageSizeKey); if (saved) { return parseInt(saved); } if (defaultValue) { return defaultValue; } // Chrome seems to have virtualization built-in and can handle large lists easily var isChrome = $.browser.chrome; return isChrome ? 200 : 100; }, getDefaultItemsView: function (view, mobileView) { return $.browser.mobile ? mobileView : view; }, loadSavedQueryValues: function (key, query) { var values = appStorage.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; } try { appStorage.setItem(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values)); } catch (e) { } }, saveViewSetting: function (key, value) { try { appStorage.setItem(key + '_' + Dashboard.getCurrentUserId() + '_view', value); } catch (e) { } }, getSavedViewSetting: function (key) { var deferred = $.Deferred(); var val = appStorage.getItem(key + '_' + Dashboard.getCurrentUserId() + '_view'); deferred.resolveWith(null, [val]); return deferred.promise(); }, needsRefresh: function (elem) { var last = parseInt(elem.getAttribute('data-lastrefresh') || '0'); if (!last) { return true; } if (NavHelper.isBack()) { Logger.log('Not refreshing data because IsBack=true'); return false; } var now = new Date().getTime(); var cacheDuration; if (AppInfo.isNativeApp) { cacheDuration = 600000; } else if ($.browser.ipad || $.browser.iphone || $.browser.android) { cacheDuration = 10000; } else { cacheDuration = 60000; } if ((now - last) < cacheDuration) { Logger.log('Not refreshing data due to age'); return false; } return true; }, setLastRefreshed: function (elem) { elem.setAttribute('data-lastrefresh', new Date().getTime()); elem.classList.add('hasrefreshtime'); }, configureSwipeTabs: function (ownerpage, tabs, pages) { var pageCount = pages.querySelectorAll('neon-animatable').length; function allowSwipe(e) { var target = e.target; if (target.classList.contains('noSwipe')) { return false; } if ($(target).parents('.noSwipe').length) { return false; } return true; } $(ownerpage).on('swipeleft', function (e) { if (allowSwipe(e)) { var selected = parseInt(pages.selected || '0'); if (selected < (pageCount - 1)) { pages.entryAnimation = 'slide-from-right-animation'; pages.exitAnimation = 'slide-left-animation'; tabs.selectNext(); } } }); $(ownerpage).on('swiperight', function (e) { if (allowSwipe(e)) { var selected = parseInt(pages.selected || '0'); if (selected > 0) { pages.entryAnimation = 'slide-from-left-animation'; pages.exitAnimation = 'slide-right-animation'; tabs.selectPrevious(); } } }); }, enableFullPaperTabs: function () { //return true; return AppInfo.isNativeApp; }, navigateOnLibraryTabSelect: function () { return !LibraryBrowser.enableFullPaperTabs(); }, configurePaperLibraryTabs: function (ownerpage, tabs, pages) { tabs.hideScrollButtons = true; if (AppInfo.enableBottomTabs) { tabs.alignBottom = true; tabs.classList.add('bottomTabs'); } tabs.noink = true; if (LibraryBrowser.enableFullPaperTabs()) { $(tabs).show(); if ($.browser.safari) { // Not very iOS-like I suppose tabs.noSlide = true; tabs.noink = true; tabs.noBar = true; } else { // Safari doesn't handle the horizontal swiping very well // Not very iOS-like I suppose pages.entryAnimation = 'slide-from-right-animation'; pages.exitAnimation = 'slide-left-animation'; LibraryBrowser.configureSwipeTabs(ownerpage, tabs, pages); } $('.libraryViewNav', ownerpage).addClass('paperLibraryViewNav').removeClass('libraryViewNavWithMinHeight'); } else { tabs.noSlide = true; tabs.noink = true; tabs.noBar = true; tabs.scrollable = true; var legacyTabs = $('.legacyTabs', ownerpage).show(); document.body.classList.add('basicPaperLibraryTabs'); $(pages).on('iron-select', function (e) { var selected = this.selected; $('a', legacyTabs).removeClass('ui-btn-active')[selected].classList.add('ui-btn-active'); }); $('.libraryViewNav', ownerpage).removeClass('libraryViewNavWithMinHeight'); } $(ownerpage).on('pagebeforeshowready', LibraryBrowser.onTabbedPageBeforeShowReady); }, onTabbedPageBeforeShowReady: function () { var page = this; var tabs = page.querySelector('paper-tabs'); var selected = tabs.selected; if (selected == null) { Logger.log('selected tab is null, checking query string'); selected = parseInt(getParameterByName('tab') || '0'); Logger.log('selected tab will be ' + selected); tabs.selected = selected; if (!LibraryBrowser.enableFullPaperTabs()) { page.querySelector('neon-animated-pages').selected = selected; } } else { Events.trigger(page.querySelector('neon-animated-pages'), 'tabchange'); } }, canShare: function (item, user) { return user.Policy.EnablePublicSharing; }, 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) { fn(index, 100, "MediaSources,Chapters").done(function (result) { MediaController.play({ items: result.Items }); }); }, queueAllFromHere: function (query, index) { fn(index, 100, "MediaSources,Chapters").done(function (result) { 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; childText += Globalize.translate('ValueMinutes', Math.round(minutes)); } else { childText += Globalize.translate('ValueMinutes', 0); } counts.push(childText); } else if (options.context == "movies") { if (item.MovieCount) { childText = item.MovieCount == 1 ? Globalize.translate('ValueOneMovie') : Globalize.translate('ValueMovieCount', item.MovieCount); counts.push(childText); } if (item.TrailerCount) { childText = item.TrailerCount == 1 ? Globalize.translate('ValueOneTrailer') : Globalize.translate('ValueTrailerCount', item.TrailerCount); counts.push(childText); } } else if (options.context == "tv") { if (item.SeriesCount) { childText = item.SeriesCount == 1 ? Globalize.translate('ValueOneSeries') : Globalize.translate('ValueSeriesCount', item.SeriesCount); counts.push(childText); } if (item.EpisodeCount) { childText = item.EpisodeCount == 1 ? Globalize.translate('ValueOneEpisode') : Globalize.translate('ValueEpisodeCount', item.EpisodeCount); counts.push(childText); } } else if (options.context == "games") { if (item.GameCount) { childText = item.GameCount == 1 ? Globalize.translate('ValueOneGame') : Globalize.translate('ValueGameCount', item.GameCount); counts.push(childText); } } else if (options.context == "music") { if (item.AlbumCount) { childText = item.AlbumCount == 1 ? Globalize.translate('ValueOneAlbum') : Globalize.translate('ValueAlbumCount', item.AlbumCount); counts.push(childText); } if (item.SongCount) { childText = item.SongCount == 1 ? Globalize.translate('ValueOneSong') : Globalize.translate('ValueSongCount', item.SongCount); counts.push(childText); } if (item.MusicVideoCount) { childText = item.MusicVideoCount == 1 ? Globalize.translate('ValueOneMusicVideo') : Globalize.translate('ValueMusicVideoCount', item.MusicVideoCount); counts.push(childText); } } return counts.join(' • '); }, getArtistLinksHtml: function (artists, cssClass) { var html = []; for (var i = 0, length = artists.length; i < length; i++) { var artist = artists[i]; var css = cssClass ? (' class="' + cssClass + '"') : ''; html.push('' + artist.Name + ''); } html = html.join(' / '); return html; }, playInExternalPlayer: function (id) { Dashboard.loadExternalPlayer().done(function () { ExternalPlayer.showMenu(id); }); }, showPlayMenu: function (positionTo, itemId, itemType, isFolder, mediaType, resumePositionTicks) { var externalPlayers = AppSettings.enableExternalPlayers(); if (!resumePositionTicks && mediaType != "Audio" && !isFolder) { if (!externalPlayers || mediaType != "Video") { MediaController.play(itemId); return; } } var menuItems = []; if (resumePositionTicks) { menuItems.push({ name: Globalize.translate('ButtonResume'), id: 'resume', ironIcon: 'play-arrow' }); } menuItems.push({ name: Globalize.translate('ButtonPlay'), id: 'play', ironIcon: 'play-arrow' }); if (!isFolder && externalPlayers && mediaType != "Audio") { menuItems.push({ name: Globalize.translate('ButtonPlayExternalPlayer'), id: 'externalplayer', ironIcon: 'airplay' }); } if (MediaController.canQueueMediaType(mediaType, itemType)) { menuItems.push({ name: Globalize.translate('ButtonQueue'), id: 'queue', ironIcon: 'playlist-add' }); } if (itemType == "Audio" || itemType == "MusicAlbum" || itemType == "MusicArtist" || itemType == "MusicGenre") { menuItems.push({ name: Globalize.translate('ButtonInstantMix'), id: 'instantmix', ironIcon: 'shuffle' }); } if (isFolder || itemType == "MusicArtist" || itemType == "MusicGenre") { menuItems.push({ name: Globalize.translate('ButtonShuffle'), id: 'shuffle', ironIcon: 'shuffle' }); } require(['actionsheet'], function () { ActionSheetElement.show({ items: menuItems, positionTo: positionTo, callback: function (id) { switch (id) { case 'play': MediaController.play(itemId); break; case 'externalplayer': LibraryBrowser.playInExternalPlayer(itemId); break; case 'resume': MediaController.play({ ids: [itemId], startPositionTicks: resumePositionTicks }); break; case 'queue': MediaController.queue(itemId); break; case 'instantmix': MediaController.instantMix(itemId); break; case 'shuffle': MediaController.shuffle(itemId); break; default: break; } } }); }); }, getMoreCommands: function (item, user) { var commands = []; if (BoxSetEditor.supportsAddingToCollection(item)) { commands.push('addtocollection'); } if (PlaylistManager.supportsPlaylists(item)) { commands.push('playlist'); } if (item.Type == 'BoxSet' || item.Type == 'Playlist') { commands.push('delete'); } else if (item.CanDelete) { commands.push('delete'); } if (user.Policy.IsAdministrator) { if (item.Type != "Recording" && item.Type != "Program") { commands.push('edit'); } } commands.push('refresh'); if (SyncManager.isAvailable(item, user)) { commands.push('sync'); } if (item.CanDownload) { commands.push('download'); } return commands; }, 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 = Globalize.translate('ConfirmDeleteItem'); Dashboard.confirm(msg, Globalize.translate('HeaderDeleteItem'), function (result) { if (result) { ApiClient.deleteItem(itemId); Events.trigger(LibraryBrowser, 'itemdeleting', [itemId]); } }); }, 250); }, showMoreCommands: function (positionTo, itemId, commands) { var items = []; if (commands.indexOf('addtocollection') != -1) { items.push({ name: Globalize.translate('ButtonAddToCollection'), id: 'addtocollection', ironIcon: 'add' }); } if (commands.indexOf('playlist') != -1) { items.push({ name: Globalize.translate('ButtonAddToPlaylist'), id: 'playlist', ironIcon: 'playlist-add' }); } if (commands.indexOf('delete') != -1) { items.push({ name: Globalize.translate('ButtonDelete'), id: 'delete', ironIcon: 'delete' }); } if (commands.indexOf('download') != -1) { items.push({ name: Globalize.translate('ButtonDownload'), id: 'download', ironIcon: 'file-download' }); } if (commands.indexOf('edit') != -1) { items.push({ name: Globalize.translate('ButtonEdit'), id: 'edit', ironIcon: 'mode-edit' }); } if (commands.indexOf('refresh') != -1) { items.push({ name: Globalize.translate('ButtonRefresh'), id: 'refresh', ironIcon: 'refresh' }); } require(['actionsheet'], function () { ActionSheetElement.show({ items: items, positionTo: positionTo, callback: function (id) { switch (id) { case 'addtocollection': BoxSetEditor.showPanel([itemId]); break; case 'playlist': PlaylistManager.showPanel([itemId]); break; case 'delete': LibraryBrowser.deleteItem(itemId); break; case 'download': { var downloadHref = ApiClient.getUrl("Items/" + itemId + "/Download", { api_key: ApiClient.accessToken() }); window.location.href = downloadHref; break; } case 'edit': Dashboard.navigate('edititemmetadata.html?id=' + itemId); break; case 'refresh': ApiClient.refreshItem(itemId, { Recursive: true, ImageRefreshMode: 'FullRefresh', MetadataRefreshMode: 'FullRefresh', ReplaceAllImages: false, ReplaceAllMetadata: true }); break; default: break; } } }); }); }, getHref: function (item, context, topParentId) { var href = LibraryBrowser.getHrefInternal(item, context); if (context != 'livetv') { if (topParentId == null && context != 'playlists') { topParentId = LibraryMenu.getTopParentId(); } if (topParentId) { href += href.indexOf('?') == -1 ? "?topParentId=" : "&topParentId="; href += topParentId; } } return href; }, getHrefInternal: function (item, context) { if (!item) { throw new Error('item cannot be null'); } if (item.url) { return item.url; } var contextSuffix = context ? ('&context=' + context) : ''; // Handle search hints var id = item.Id || item.ItemId; if (item.CollectionType == 'livetv') { return 'livetvsuggested.html'; } if (item.CollectionType == 'channels') { if (AppInfo.enableLatestChannelItems) { return 'channelslatest.html'; } else { return 'channels.html'; } } if (context != 'folders') { if (item.CollectionType == 'movies') { return 'moviesrecommended.html?topParentId=' + item.Id; } if (item.CollectionType == 'boxsets') { return 'collections.html?topParentId=' + item.Id; } if (item.CollectionType == 'tvshows') { return 'tvrecommended.html?topParentId=' + item.Id; } if (item.CollectionType == 'music') { return 'musicrecommended.html?topParentId=' + item.Id; } if (item.CollectionType == 'games') { return 'gamesrecommended.html?topParentId=' + item.Id; } if (item.CollectionType == 'playlists') { return 'playlists.html?topParentId=' + item.Id; } if (item.CollectionType == 'photos') { return 'photos.html?topParentId=' + item.Id; } } if (item.Type == 'CollectionFolder') { return 'itemlist.html?topParentId=' + item.Id + '&parentid=' + item.Id; } if (item.Type == "PhotoAlbum" && context == 'photos') { return "photos.html?parentId=" + id; } if (item.Type == "Playlist") { return "playlistedit.html?id=" + id; } if (item.Type == "TvChannel") { return "livetvchannel.html?id=" + id; } if (item.Type == "Channel") { return "channelitems.html?id=" + id; } if (item.Type == "ChannelFolderItem") { return "channelitems.html?id=" + item.ChannelId + '&folderId=' + item.Id; } if (item.Type == "Program") { return "livetvprogram.html?id=" + id; } if (item.Type == "Series") { return "itemdetails.html?id=" + id + contextSuffix; } if (item.Type == "Season") { return "itemdetails.html?id=" + id + contextSuffix; } if (item.Type == "BoxSet") { return "itemdetails.html?id=" + id + contextSuffix; } if (item.Type == "MusicAlbum") { return "itemdetails.html?id=" + id + contextSuffix; } if (item.Type == "GameSystem") { return "itemdetails.html?id=" + id + contextSuffix; } if (item.Type == "Genre") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.Type == "MusicGenre") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.Type == "GameGenre") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.Type == "Studio") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.Type == "Person") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.Type == "Recording") { return "livetvrecording.html?id=" + id + contextSuffix; } if (item.Type == "MusicArtist") { return "itembynamedetails.html?id=" + id + contextSuffix; } if (item.IsFolder) { return id ? "itemlist.html?parentId=" + id : "#"; } return "itemdetails.html?id=" + id + contextSuffix; }, 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]; } // For search hints return ApiClient.getScaledImageUrl(item.Id || item.ItemId, options); }, getListViewIndex: function (item, options) { if (options.index == 'disc') { return item.ParentIndexNumber == null ? '' : Globalize.translate('ValueDiscNumber', item.ParentIndexNumber); } var sortBy = (options.sortBy || '').toLowerCase(); var code, name; if (sortBy.indexOf('sortname') == 0) { if (item.Type == 'Episode') return ''; // SortName 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) { return item.OfficialRating || Globalize.translate('HeaderUnrated'); } if (sortBy.indexOf('communityrating') == 0) { if (item.CommunityRating == null) { return Globalize.translate('HeaderUnrated'); } return Math.floor(item.CommunityRating); } if (sortBy.indexOf('criticrating') == 0) { if (item.CriticRating == null) { return Globalize.translate('HeaderUnrated'); } return Math.floor(item.CriticRating); } if (sortBy.indexOf('metascore') == 0) { if (item.Metascore == null) { 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 ''; }, getUserDataCssClass: function (key) { if (!key) return ''; return 'libraryItemUserData' + key.replace(new RegExp(' ', 'g'), ''); }, getListViewHtml: function (options) { var outerHtml = ""; outerHtml += ''; return outerHtml; }, getItemDataAttributes: function (item, options, index) { var atts = []; var itemCommands = LibraryBrowser.getItemCommands(item, options); atts.push('data-itemid="' + item.Id + '"'); atts.push('data-commands="' + itemCommands.join(',') + '"'); if (options.context) { atts.push('data-context="' + (options.context || '') + '"'); } atts.push('data-itemtype="' + item.Type + '"'); if (item.MediaType) { atts.push('data-mediatype="' + (item.MediaType || '') + '"'); } if (item.UserData.PlaybackPositionTicks) { atts.push('data-positionticks="' + (item.UserData.PlaybackPositionTicks || 0) + '"'); } atts.push('data-playaccess="' + (item.PlayAccess || '') + '"'); atts.push('data-locationtype="' + (item.LocationType || '') + '"'); atts.push('data-index="' + index + '"'); if (options.showDetailsMenu) { atts.push('data-detailsmenu="true"'); } if (item.AlbumId) { atts.push('data-albumid="' + item.AlbumId + '"'); } if (item.ArtistItems && item.ArtistItems.length) { atts.push('data-artistid="' + item.ArtistItems[0].Id + '"'); } var html = atts.join(' '); if (html) { html = ' ' + html; } return html; }, getItemCommands: function (item, options) { 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") { itemCommands.push('instantmix'); } if (item.IsFolder || item.Type == "MusicArtist" || item.Type == "MusicGenre") { itemCommands.push('shuffle'); } if (PlaylistManager.supportsPlaylists(item)) { if (options.showRemoveFromPlaylist) { itemCommands.push('removefromplaylist'); } else { itemCommands.push('playlist'); } } if (BoxSetEditor.supportsAddingToCollection(item)) { itemCommands.push('addtocollection'); } if (options.playFromHere) { itemCommands.push('playfromhere'); itemCommands.push('queuefromhere'); } // There's no detail page with a dedicated delete function if (item.Type == 'Playlist' || item.Type == 'BoxSet') { if (item.CanDelete) { itemCommands.push('delete'); } } if (SyncManager.isAvailable(item)) { itemCommands.push('sync'); } return itemCommands; }, screenWidth: function () { var screenWidth = $(window).width(); return screenWidth; }, shapes: ['square', 'portrait', 'banner', 'smallBackdrop', 'homePageSmallBackdrop', 'backdrop', 'overflowBackdrop', 'overflowPortrait', 'overflowSquare'], getPostersPerRow: function (screenWidth) { var cache = true; function getValue(shape) { var div = $('
').appendTo(document.body); var innerWidth = $('.cardImage', div).innerWidth(); if (!innerWidth || isNaN(innerWidth)) { cache = false; innerWidth = Math.min(400, screenWidth / 2); } var width = screenWidth / innerWidth; div.remove(); return Math.floor(width); } var info = {}; for (var i = 0, length = LibraryBrowser.shapes.length; i < length; i++) { var currentShape = LibraryBrowser.shapes[i]; info[currentShape] = getValue(currentShape); } info.cache = cache; return info; }, posterSizes: [], getPosterViewInfo: function () { var screenWidth = LibraryBrowser.screenWidth(); var cachedResults = LibraryBrowser.posterSizes; for (var i = 0, length = cachedResults.length; i < length; i++) { if (cachedResults[i].screenWidth == screenWidth) { return cachedResults[i]; } } var result = LibraryBrowser.getPosterViewInfoInternal(screenWidth); result.screenWidth = screenWidth; if (result.cache) { cachedResults.push(result); } return result; }, getPosterViewInfoInternal: function (screenWidth) { var imagesPerRow = LibraryBrowser.getPostersPerRow(screenWidth); var result = {}; result.screenWidth = screenWidth; if (!AppInfo.hasLowImageBandwidth) { screenWidth *= 1.2; } var roundTo = 100; for (var i = 0, length = LibraryBrowser.shapes.length; i < length; i++) { var currentShape = LibraryBrowser.shapes[i]; var shapeWidth = screenWidth / imagesPerRow[currentShape]; if (!$.browser.mobile) { shapeWidth = Math.round(shapeWidth / roundTo) * roundTo; } result[currentShape + 'Width'] = Math.round(shapeWidth); } result.cache = imagesPerRow.cache; return result; }, getPosterViewHtml: function (options) { var items = options.items; var currentIndexValue; options.shape = options.shape || "portrait"; var html = ""; 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; if (options.shape == 'auto' || options.shape == 'autohome') { if (isThumbAspectRatio) { options.shape = options.shape == 'auto' ? 'backdrop' : 'backdrop'; } else if (isSquareAspectRatio) { options.coverImage = true; options.shape = 'square'; } else if (primaryImageAspectRatio && primaryImageAspectRatio > 1.9) { options.shape = 'banner'; options.coverImage = true; } else if (primaryImageAspectRatio && Math.abs(primaryImageAspectRatio - 0.6666667) < .2) { options.shape = options.shape == 'auto' ? 'portrait' : 'portrait'; } else { options.shape = options.defaultShape || (options.shape == 'auto' ? 'portrait' : 'portrait'); } } var posterInfo = LibraryBrowser.getPosterViewInfo(); var thumbWidth = posterInfo.backdropWidth; var posterWidth = posterInfo.portraitWidth; var squareSize = posterInfo.squareWidth; var bannerWidth = posterInfo.bannerWidth; if (isThumbAspectRatio) { posterWidth = thumbWidth; } else if (isSquareAspectRatio) { posterWidth = squareSize; } if (options.shape == 'overflowBackdrop') { thumbWidth = posterInfo.overflowBackdropWidth; } else if (options.shape == 'overflowPortrait') { posterWidth = posterInfo.overflowPortraitWidth; } else if (options.shape == 'overflowSquare') { squareSize = posterInfo.overflowSquareWidth; } else if (options.shape == 'smallBackdrop') { thumbWidth = posterInfo.smallBackdropWidth; } else if (options.shape == 'homePageSmallBackdrop') { thumbWidth = posterInfo.homePageSmallBackdropWidth; posterWidth = posterInfo.homePageSmallBackdropWidth; } else if (options.shape == 'detailPagePortrait') { posterWidth = 200; } else if (options.shape == 'detailPageSquare') { posterWidth = 200; squareSize = 200; } else if (options.shape == 'detailPage169') { posterWidth = 320; thumbWidth = 320; } var dateText; for (var i = 0, length = items.length; i < length; i++) { var item = items[i]; dateText = null; primaryImageAspectRatio = LibraryBrowser.getAveragePrimaryImageAspectRatio([item]); if (options.showPremiereDateIndex) { if (item.PremiereDate) { try { dateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.PremiereDate, { toLocal: true }), true); } catch (err) { } } var newIndexValue = dateText || Globalize.translate('HeaderUnknownDate'); if (newIndexValue != currentIndexValue) { html += '

' + newIndexValue + '

'; currentIndexValue = newIndexValue; } } else if (options.showStartDateIndex) { if (item.StartDate) { try { dateText = LibraryBrowser.getFutureDateText(parseISO8601Date(item.StartDate, { toLocal: true }), true); } catch (err) { } } var newIndexValue = dateText || Globalize.translate('HeaderUnknownDate'); if (newIndexValue != currentIndexValue) { html += '

' + newIndexValue + '

'; currentIndexValue = newIndexValue; } } else if (options.timeline) { var year = item.ProductionYear || Globalize.translate('HeaderUnknownYear'); if (year != currentIndexValue) { html += '

' + year + '

'; currentIndexValue = year; } } html += LibraryBrowser.getPosterViewItemHtml(item, i, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth); } return html; }, getPosterViewItemHtml: function (item, index, options, primaryImageAspectRatio, thumbWidth, posterWidth, squareSize, bannerWidth) { var html = ''; var imgUrl = null; var icon; var width = null; var height = null; var forceName = false; var enableImageEnhancers = options.enableImageEnhancers !== false; var cssClass = "card"; if (options.autoThumb && item.ImageTags && item.ImageTags.Primary && item.PrimaryImageAspectRatio && item.PrimaryImageAspectRatio >= 1.5) { width = posterWidth; height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null; imgUrl = ApiClient.getImageUrl(item.Id, { type: "Primary", height: height, width: width, tag: item.ImageTags.Primary, enableImageEnhancers: enableImageEnhancers }); } else if (options.autoThumb && item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", maxWidth: thumbWidth, tag: item.ImageTags.Thumb, enableImageEnhancers: enableImageEnhancers }); } else if (options.preferBackdrop && item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Backdrop", maxWidth: thumbWidth, tag: item.BackdropImageTags[0], enableImageEnhancers: enableImageEnhancers }); } else if (options.preferThumb && item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", maxWidth: thumbWidth, tag: item.ImageTags.Thumb, enableImageEnhancers: enableImageEnhancers }); } else if (options.preferBanner && item.ImageTags && item.ImageTags.Banner) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Banner", maxWidth: bannerWidth, tag: item.ImageTags.Banner, enableImageEnhancers: enableImageEnhancers }); } else if (options.preferThumb && item.SeriesThumbImageTag && options.inheritThumb !== false) { imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, { type: "Thumb", maxWidth: thumbWidth, tag: item.SeriesThumbImageTag, enableImageEnhancers: enableImageEnhancers }); } else if (options.preferThumb && item.ParentThumbItemId && options.inheritThumb !== false) { imgUrl = ApiClient.getThumbImageUrl(item.ParentThumbItemId, { type: "Thumb", maxWidth: thumbWidth, enableImageEnhancers: enableImageEnhancers }); } else if (options.preferThumb && item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Backdrop", maxWidth: thumbWidth, tag: item.BackdropImageTags[0], enableImageEnhancers: enableImageEnhancers }); forceName = true; } else if (item.ImageTags && item.ImageTags.Primary) { width = posterWidth; height = primaryImageAspectRatio ? Math.round(posterWidth / primaryImageAspectRatio) : null; imgUrl = ApiClient.getImageUrl(item.Id, { type: "Primary", height: height, width: width, tag: item.ImageTags.Primary, enableImageEnhancers: enableImageEnhancers }); } else if (item.ParentPrimaryImageTag) { imgUrl = ApiClient.getImageUrl(item.ParentPrimaryImageItemId, { type: "Primary", width: posterWidth, tag: item.ParentPrimaryImageTag, enableImageEnhancers: enableImageEnhancers }); } else if (item.AlbumId && item.AlbumPrimaryImageTag) { height = squareSize; width = primaryImageAspectRatio ? Math.round(height * primaryImageAspectRatio) : null; imgUrl = ApiClient.getScaledImageUrl(item.AlbumId, { type: "Primary", height: height, width: width, tag: item.AlbumPrimaryImageTag, enableImageEnhancers: enableImageEnhancers }); } else if (item.Type == 'Season' && item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", maxWidth: thumbWidth, tag: item.ImageTags.Thumb, enableImageEnhancers: enableImageEnhancers }); } else if (item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Backdrop", maxWidth: thumbWidth, tag: item.BackdropImageTags[0], enableImageEnhancers: enableImageEnhancers }); } else if (item.ImageTags && item.ImageTags.Thumb) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", maxWidth: thumbWidth, tag: item.ImageTags.Thumb, enableImageEnhancers: enableImageEnhancers }); } else if (item.SeriesThumbImageTag) { imgUrl = ApiClient.getScaledImageUrl(item.SeriesId, { type: "Thumb", maxWidth: thumbWidth, tag: item.SeriesThumbImageTag, enableImageEnhancers: enableImageEnhancers }); } else if (item.ParentThumbItemId) { imgUrl = ApiClient.getThumbImageUrl(item, { type: "Thumb", maxWidth: thumbWidth, enableImageEnhancers: enableImageEnhancers }); } else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicArtist") { if (item.Name && options.showTitle) { icon = 'fa-music'; } cssClass += " defaultBackground"; } else if (item.Type == "Recording" || item.Type == "Program" || item.Type == "TvChannel") { if (item.Name && options.showTitle) { icon = 'fa-folder-open'; } cssClass += " defaultBackground"; } else if (item.MediaType == "Video" || item.Type == "Season" || item.Type == "Series") { if (item.Name && options.showTitle) { icon = 'fa-video-camera'; } cssClass += " defaultBackground"; } else if (item.Type == "Person") { if (item.Name && options.showTitle) { icon = 'fa-user'; } cssClass += " defaultBackground"; } else { if (item.Name && options.showTitle) { icon = 'fa-folder-open'; } cssClass += " defaultBackground"; } cssClass += ' ' + options.shape + 'Card'; var mediaSourceCount = item.MediaSourceCount || 1; var href = options.linkItem === false ? '#' : LibraryBrowser.getHref(item, options.context); if (item.UserData) { cssClass += ' ' + LibraryBrowser.getUserDataCssClass(item.UserData.Key); } if (options.showChildCountIndicator && item.ChildCount && options.showLatestItemsPopup !== false) { cssClass += ' groupedCard'; } if (options.showTitle && !options.overlayText) { cssClass += ' bottomPaddedCard'; } var dataAttributes = LibraryBrowser.getItemDataAttributes(item, options, index); var defaultAction = options.defaultAction; if (defaultAction == 'play' || defaultAction == 'playallfromhere') { if (item.PlayAccess != 'Full') { defaultAction = null; } } var defaultActionAttribute = defaultAction ? (' data-action="' + defaultAction + '"') : ''; // card html += ''; var style = ""; if (imgUrl && !options.lazy) { style += 'background-image:url(\'' + imgUrl + '\');'; } var imageCssClass = 'cardImage'; if (icon) { imageCssClass += " iconCardImage"; } if (options.coverImage) { imageCssClass += " coveredCardImage"; } if (options.centerImage) { imageCssClass += " centeredCardImage"; } var dataSrc = ""; if (options.lazy && imgUrl) { imageCssClass += " lazy"; dataSrc = ' data-src="' + imgUrl + '"'; } var cardboxCssClass = 'cardBox'; if (options.cardLayout) { cardboxCssClass += ' visualCardBox'; } html += '
'; html += '
'; html += '
'; var anchorCssClass = "cardContent"; anchorCssClass += ' mediaItem'; if (options.defaultAction) { anchorCssClass += ' itemWithAction'; } var transition = options.transition === false || !AppInfo.enableSectionTransitions ? '' : ' data-transition="slide"'; html += ''; html += '
'; if (icon) { html += ''; } 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); } else if (options.showChildCountIndicator) { html += LibraryBrowser.getGroupCountIndicator(item); } html += LibraryBrowser.getSyncIndicator(item); if (mediaSourceCount > 1) { html += '
' + mediaSourceCount + '
'; } if (item.IsUnidentified) { html += '
'; } var progressHtml = options.showProgress === false || item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData)); var footerOverlayed = false; if (options.overlayText || (forceName && !options.showTitle)) { var footerCssClass = progressHtml ? 'cardFooter fullCardFooter' : 'cardFooter'; html += LibraryBrowser.getCardFooterText(item, options, imgUrl, forceName, footerCssClass, progressHtml); footerOverlayed = true; } else if (progressHtml) { html += '
'; html += "
"; html += progressHtml; html += "
"; //cardFooter html += "
"; progressHtml = ''; } // cardContent html += ''; if (options.overlayPlayButton) { html += ''; } if (options.overlayMoreButton) { html += ''; } // cardScalable html += '
'; if (!options.overlayText && !footerOverlayed) { html += LibraryBrowser.getCardFooterText(item, options, imgUrl, forceName, 'cardFooter outerCardFooter', progressHtml); } // cardBox html += '
'; // card html += ""; return html; }, getCardFooterText: function (item, options, imgUrl, forceName, footerClass, progressHtml) { var html = ''; html += '
'; if (options.cardLayout) { html += '
'; html += ''; html += "
"; } var name = LibraryBrowser.getPosterViewDisplayName(item, options.displayAsSpecial); if (!imgUrl && !options.showTitle) { html += "
"; html += htmlEncode(name); html += "
"; } 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); lines.push(itemCountHtml); } if (options.textLines) { var additionalLines = options.textLines(item); for (var i = 0, length = additionalLines.length; i < length; i++) { lines.push(additionalLines[i]); } } if (options.showSongCount) { var songLine = ''; if (item.SongCount) { songLine = item.SongCount == 1 ? Globalize.translate('ValueOneSong') : Globalize.translate('ValueSongCount', item.SongCount); } lines.push(songLine); } if (options.showPremiereDate) { if (item.PremiereDate) { try { lines.push(LibraryBrowser.getPremiereDateText(item)); } catch (err) { lines.push(''); } } else { lines.push(''); } } if (options.showYear) { lines.push(item.ProductionYear || ''); } if (options.showSeriesYear) { if (item.Status == "Continuing") { lines.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear || '')); } else { lines.push(item.ProductionYear || ''); } } if (options.showProgramAirInfo) { var date = parseISO8601Date(item.StartDate, { toLocal: true }); var text = item.StartDate ? date.toLocaleString() : ''; lines.push(text || ' '); lines.push(item.ChannelName || ' '); } html += LibraryBrowser.getCardTextLines(lines, cssClass, !options.overlayText); if (options.overlayText) { if (progressHtml) { html += "
"; html += progressHtml; html += "
"; } } //cardFooter html += "
"; return html; }, getListItemInfo: function (elem) { 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, mediaType: mediaType, context: elemWithAttributes.getAttribute('data-context') }; }, getCardTextLines: function (lines, cssClass, forceLines) { var html = ''; var valid = 0; var i, length; for (i = 0, length = lines.length; i < length; i++) { var text = lines[i]; if (text) { html += "
"; html += text; html += "
"; valid++; } } if (forceLines) { while (valid < length) { html += "
 
"; valid++; } } return html; }, getFutureDateText: function (date) { var weekday = []; weekday[0] = Globalize.translate('OptionSunday'); weekday[1] = Globalize.translate('OptionMonday'); weekday[2] = Globalize.translate('OptionTuesday'); weekday[3] = Globalize.translate('OptionWednesday'); weekday[4] = Globalize.translate('OptionThursday'); weekday[5] = Globalize.translate('OptionFriday'); weekday[6] = Globalize.translate('OptionSaturday'); 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, includeParentInfo) { if (!item) { throw new Error("null item passed into getPosterViewDisplayName"); } var name = item.EpisodeTitle || item.Name || ''; if (item.Type == "TvChannel") { if (item.Number) { return item.Number + ' ' + name; } return name; } if (displayAsSpecial && item.Type == "Episode" && item.ParentIndexNumber == 0) { name = Globalize.translate('ValueSpecialEpisodeName', name); } else if (item.Type == "Episode" && item.IndexNumber != null && item.ParentIndexNumber != null) { var displayIndexNumber = item.IndexNumber; var number = "E" + displayIndexNumber; if (includeParentInfo !== false) { number = "S" + item.ParentIndexNumber + ", " + number; } if (item.IndexNumberEnd) { displayIndexNumber = item.IndexNumberEnd; number += "-" + displayIndexNumber; } name = number + " - " + name; } return name; }, getOfflineIndicatorHtml: function (item) { if (item.LocationType == "Offline") { return '
' + Globalize.translate('HeaderOffline') + '
'; } if (item.Type == 'Episode') { try { var date = parseISO8601Date(item.PremiereDate, { toLocal: true }); if (item.PremiereDate && (new Date().getTime() < date.getTime())) { return '
' + Globalize.translate('HeaderUnaired') + '
'; } } catch (err) { } return '
' + Globalize.translate('HeaderMissing') + '
'; } return ''; }, getPlayedIndicatorHtml: function (item) { if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video" || item.MediaType == "Game" || item.MediaType == "Book") { if (item.UserData.UnplayedItemCount) { return '
' + item.UserData.UnplayedItemCount + '
'; } if (item.Type != 'TvChannel') { if (item.UserData.PlayedPercentage && item.UserData.PlayedPercentage >= 100 || (item.UserData && item.UserData.Played)) { return '
'; } } } return ''; }, getGroupCountIndicator: function (item) { if (item.ChildCount) { return '
' + item.ChildCount + '
'; } return ''; }, getSyncIndicator: function (item) { if (item.SyncPercent) { if (item.SyncPercent >= 100) { return '
'; } var degree = (item.SyncPercent / 100) * 360; return '
'; } if (item.SyncStatus) { if (item.SyncStatus == 'Queued' || item.SyncStatus == 'Converting' || item.SyncStatus == 'ReadyToTransfer' || item.SyncStatus == 'Transferring') { return '
'; } if (item.SyncStatus == 'Synced') { 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) <= .15) { return 0.66666666667; } // If really close to 16:9 (episode image), just return 16:9 if (Math.abs(1.777777778 - result) <= .2) { return 1.777777778; } // If really close to 1 (square image), just return 1 if (Math.abs(1 - result) <= .15) { return 1; } // If really close to 4:3 (poster image), just return 2:3 if (Math.abs(1.33333333333 - result) <= .15) { 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, context) { var name = LibraryBrowser.getPosterViewDisplayName(item, false, false); Dashboard.setPageTitle(name); if (linkToElement) { nameElem.html('' + name + '').trigger('create'); } else { nameElem.html(name); } }, renderParentName: function (item, parentNameElem, context) { var html = []; var contextParam = context ? ('&context=' + context) : ''; if (item.AlbumArtists) { html.push(LibraryBrowser.getArtistLinksHtml(item.AlbumArtists, "detailPageParentLink")); } else if (item.ArtistItems && item.ArtistItems.length && item.Type == "MusicVideo") { html.push(LibraryBrowser.getArtistLinksHtml(item.ArtistItems, "detailPageParentLink")); } else if (item.SeriesName && item.Type == "Episode") { html.push('' + item.SeriesName + ''); } if (item.SeriesName && item.Type == "Season") { html.push('' + item.SeriesName + ''); } else if (item.ParentIndexNumber != null && item.Type == "Episode") { html.push('' + item.SeasonName + ''); } 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.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('' + Globalize.translate('ButtonWebsite') + ''); } if (item.ExternalUrls) { for (var i = 0, length = item.ExternalUrls.length; i < length; i++) { var url = item.ExternalUrls[i]; links.push('' + url.Name + ''); } } if (links.length) { var html = links.join('  /  '); html = Globalize.translate('ValueLinks', html); linksElem.innerHTML = html; $(linksElem).trigger('create'); $(linksElem).show(); } else { $(linksElem).hide(); } }, 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 { appStorage.setItem(options.pageSizeKey || pageSizeKey, limit); } catch (e) { } } var html = ''; var recordsEnd = Math.min(startIndex + limit, totalRecordCount); // 20 is the minimum page size var showControls = totalRecordCount > 20 || limit < totalRecordCount; html += '
'; html += ''; var startAtDisplay = totalRecordCount ? startIndex + 1 : 0; html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount; html += ''; if (showControls || options.viewButton || options.addSelectionButton || options.additionalButtonsHtml) { html += '
'; if (showControls) { html += ''; html += '= totalRecordCount ? 'disabled' : '') + '>'; } html += (options.additionalButtonsHtml || ''); if (options.addSelectionButton) { html += ''; } if (options.viewButton) { //html += ''; html += ''; } html += '
'; if (showControls && options.showLimit) { require(['jqmicons']); var id = "selectPageSize"; var pageSizes = options.pageSizes || LibraryBrowser.getDefaultPageSizeSelections(); var optionsHtml = pageSizes.map(function (val) { if (limit == val) { return ''; } else { return ''; } }).join(''); // 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 += '
'; } 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 ''; } var pct = item.PlayedPercentage; if (pct && pct < 100) { return ''; } return null; }, getUserDataButtonHtml: function (method, itemId, btnCssClass, icon, tooltip) { return ''; btnCssClass += " imageButton"; return ''; }, getUserDataIconsHtml: function (item, includePlayed) { var html = ''; var userData = item.UserData || {}; var itemId = item.Id; var type = item.Type; if (includePlayed !== false) { var tooltipPlayed = Globalize.translate('TooltipPlayed'); if (item.MediaType == 'Video' || item.Type == 'Series' || item.Type == 'Season' || item.Type == 'BoxSet' || item.Type == 'Playlist') { if (userData.Played) { html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating btnUserItemRatingOn', 'check', tooltipPlayed); } else { html += LibraryBrowser.getUserDataButtonHtml('markPlayed', itemId, 'btnUserItemRating', 'check', tooltipPlayed); } } } var tooltipLike = Globalize.translate('TooltipLike'); var tooltipDislike = Globalize.translate('TooltipDislike'); if (typeof userData.Likes == "undefined") { html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating', 'thumb-down', tooltipDislike); html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating', 'thumb-up', tooltipLike); } else if (userData.Likes) { html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating', 'thumb-down', tooltipDislike); html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating btnUserItemRatingOn', 'thumb-up', tooltipLike); } else { html += LibraryBrowser.getUserDataButtonHtml('markDislike', itemId, 'btnUserItemRating btnUserItemRatingOn', 'thumb-down', tooltipDislike); html += LibraryBrowser.getUserDataButtonHtml('markLike', itemId, 'btnUserItemRating', 'thumb-up', tooltipLike); } var tooltipFavorite = Globalize.translate('TooltipFavorite'); if (userData.IsFavorite) { html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating btnUserItemRatingOn', 'favorite', tooltipFavorite); } else { html += LibraryBrowser.getUserDataButtonHtml('markFavorite', itemId, 'btnUserItemRating', 'favorite', tooltipFavorite); } return html; }, markPlayed: function (link) { var id = link.getAttribute('data-itemid'); var markAsPlayed = !link.classList.contains('btnUserItemRatingOn'); if (markAsPlayed) { ApiClient.markPlayed(Dashboard.getCurrentUserId(), id); link.classList.add('btnUserItemRatingOn'); } else { ApiClient.markUnplayed(Dashboard.getCurrentUserId(), id); link.classList.remove('btnUserItemRatingOn'); } }, markFavorite: function (link) { var id = link.getAttribute('data-itemid'); var $link = $(link); var markAsFavorite = !$link.hasClass('btnUserItemRatingOn'); ApiClient.updateFavoriteStatus(Dashboard.getCurrentUserId(), id, markAsFavorite); if (markAsFavorite) { $link.addClass('btnUserItemRatingOn'); } else { $link.removeClass('btnUserItemRatingOn'); } }, markLike: function (link) { var id = link.getAttribute('data-itemid'); var $link = $(link); if (!$link.hasClass('btnUserItemRatingOn')) { ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, true); $link.addClass('btnUserItemRatingOn'); } else { ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id); $link.removeClass('btnUserItemRatingOn'); } $link.prev().removeClass('btnUserItemRatingOn'); }, markDislike: function (link) { var id = link.getAttribute('data-itemid'); var $link = $(link); if (!$link.hasClass('btnUserItemRatingOn')) { ApiClient.updateUserItemRating(Dashboard.getCurrentUserId(), id, false); $link.addClass('btnUserItemRatingOn'); } else { ApiClient.clearUserItemRating(Dashboard.getCurrentUserId(), id); $link.removeClass('btnUserItemRatingOn'); } $link.next().removeClass('btnUserItemRatingOn'); }, getDetailImageHtml: function (item, href, preferThumb) { var imageTags = item.ImageTags || {}; if (item.PrimaryImageTag) { imageTags.Primary = item.PrimaryImageTag; } var html = ''; var url; var imageHeight = 360; if (preferThumb && imageTags.Thumb) { url = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", height: imageHeight, tag: item.ImageTags.Thumb }); } else if (imageTags.Primary) { url = ApiClient.getScaledImageUrl(item.Id, { type: "Primary", height: imageHeight, tag: item.ImageTags.Primary }); } else if (item.BackdropImageTags && item.BackdropImageTags.length) { url = ApiClient.getScaledImageUrl(item.Id, { type: "Backdrop", height: imageHeight, tag: item.BackdropImageTags[0] }); } else if (imageTags.Thumb) { url = ApiClient.getScaledImageUrl(item.Id, { type: "Thumb", height: imageHeight, tag: item.ImageTags.Thumb }); } else if (imageTags.Disc) { url = ApiClient.getScaledImageUrl(item.Id, { type: "Disc", height: imageHeight, tag: item.ImageTags.Disc }); } else if (item.AlbumId && item.AlbumPrimaryImageTag) { url = ApiClient.getScaledImageUrl(item.AlbumId, { type: "Primary", height: 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 == "TvChannel") { url = "css/images/items/detail/tv.png"; } else { url = "css/images/items/detail/video.png"; } html += '
'; if (href) { html += ""; } html += ""; if (href) { html += ""; } var progressHtml = item.IsFolder ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData)); if (progressHtml) { html += '
'; html += progressHtml; html += "
"; } html += "
"; return html; }, 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 += '
'; if (href) { html += ""; } if (detectRatio && item.PrimaryImageAspectRatio) { if (item.PrimaryImageAspectRatio >= 1.48) { shape = 'thumb'; } else if (item.PrimaryImageAspectRatio >= .85 && item.PrimaryImageAspectRatio <= 1.34) { shape = 'square'; } } var screenWidth = $(window).width(); // Take a guess about whether we should lazy load or not if (screenWidth > 600) { html += ""; } else { html += ""; } if (href) { html += ""; } var progressHtml = item.IsFolder || !item.UserData ? '' : LibraryBrowser.getItemProgressBarHtml((item.Type == 'Recording' ? item : item.UserData)); if (progressHtml) { html += '
'; html += progressHtml; html += "
"; } html += "
"; elem.innerHTML = html; function addClass(elems, name) { for (var i = 0, length = elems.length; i < length; i++) { elems[i].classList.add(name); } } function removeClass(elems, name) { for (var i = 0, length = elems.length; i < length; i++) { elems[i].classList.remove(name); } } var page = $(elem).parents('.page')[0]; var detailContentEffectedByImage = page.querySelectorAll('.detailContentEffectedByImage'); if (shape == 'thumb') { addClass(detailContentEffectedByImage, 'detailContentEffectedByThumbImage'); removeClass(detailContentEffectedByImage, 'detailContentEffectedBySquareImage'); removeClass(detailContentEffectedByImage, 'detailContentEffectedByPortraitImage'); elem.classList.add('thumbDetailImageContainer'); elem.classList.remove('portraitDetailImageContainer'); elem.classList.remove('squareDetailImageContainer'); } else if (shape == 'square') { removeClass(detailContentEffectedByImage, 'detailContentEffectedByThumbImage'); removeClass(detailContentEffectedByImage, 'detailContentEffectedByPortraitImage'); addClass(detailContentEffectedByImage, 'detailContentEffectedBySquareImage'); elem.classList.remove('thumbDetailImageContainer'); elem.classList.remove('portraitDetailImageContainer'); elem.classList.add('squareDetailImageContainer'); } else { removeClass(detailContentEffectedByImage, 'detailContentEffectedByThumbImage'); removeClass(detailContentEffectedByImage, 'detailContentEffectedBySquareImage'); addClass(detailContentEffectedByImage, 'detailContentEffectedByPortraitImage'); elem.classList.remove('thumbDetailImageContainer'); elem.classList.add('portraitDetailImageContainer'); elem.classList.remove('squareDetailImageContainer'); } ImageLoader.lazyChildren(elem); }, getDisplayTime: function (date) { if ((typeof date).toString().toLowerCase() === 'string') { try { date = parseISO8601Date(date, { toLocal: true }); } catch (err) { return date; } } var lower = date.toLocaleTimeString().toLowerCase(); var hours = date.getHours(); var minutes = date.getMinutes(); var text; if (lower.indexOf('am') != -1 || lower.indexOf('pm') != -1) { var suffix = hours > 11 ? 'pm' : 'am'; hours = (hours % 12) || 12; text = hours; if (minutes) { text += ':'; if (minutes < 10) { text += '0'; } text += minutes; } text += suffix; } else { text = hours + ':'; if (minutes < 10) { text += '0'; } text += minutes; } return text; }, getMiscInfoHtml: function (item) { var miscInfo = []; var text, date; if (item.Type == "Episode" || item.MediaType == 'Photo') { if (item.PremiereDate) { try { date = parseISO8601Date(item.PremiereDate, { toLocal: true }); text = date.toLocaleDateString(); miscInfo.push(text); } catch (e) { Logger.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 = LibraryBrowser.getDisplayTime(date); miscInfo.push(text); } } catch (e) { Logger.log("Error parsing date: " + item.PremiereDate); } } if (item.ProductionYear && item.Type == "Series") { if (item.Status == "Continuing") { miscInfo.push(Globalize.translate('ValueSeriesYearToPresent', item.ProductionYear)); } 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) { Logger.log("Error parsing date: " + item.EndDate); } } miscInfo.push(text); } } if (item.Type != "Series" && item.Type != "Episode" && item.MediaType != 'Photo') { if (item.ProductionYear) { miscInfo.push(item.ProductionYear); } else if (item.PremiereDate) { try { text = parseISO8601Date(item.PremiereDate, { toLocal: true }).getFullYear(); miscInfo.push(text); } catch (e) { Logger.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"); } if (item.MediaType == 'Photo' && item.Width && item.Height) { miscInfo.push(item.Width + "x" + item.Height); } return miscInfo.join('    '); }, renderOverview: function (elems, item) { $(elems).each(function () { var elem = this; var overview = item.Overview || ''; elem.innerHTML = overview; $('a', elem).each(function () { this.setAttribute("target", "_blank"); }); if (overview) { elem.classList.remove('empty'); } else { elem.classList.add('empty'); } }); }, renderStudios: function (elem, item, context, isStatic) { if (item.Studios && item.Studios.length && item.Type != "Series") { var html = ''; for (var i = 0, length = item.Studios.length; i < length; i++) { if (i > 0) { html += '  /  '; } if (isStatic) { html += item.Studios[i].Name; } else { html += '' + item.Studios[i].Name + ''; } } var translationKey = item.Studios.length > 1 ? "ValueStudios" : "ValueStudio"; html = Globalize.translate(translationKey, html); elem.show().html(html).trigger('create'); } else { elem.hide(); } }, renderGenres: function (elem, item, context, limit, isStatic) { var html = ''; var genres = item.Genres || []; for (var i = 0, length = genres.length; i < length; i++) { if (limit && i >= limit) { break; } if (i > 0) { html += '  /  '; } var param = item.Type == "Audio" || item.Type == "MusicArtist" || item.Type == "MusicAlbum" ? "musicgenre" : "genre"; if (item.MediaType == "Game") { param = "gamegenre"; } if (isStatic) { html += genres[i]; } else { html += '' + genres[i] + ''; } } elem.html(html).trigger('create'); }, renderPremiereDate: function (elem, item) { if (item.PremiereDate) { try { var date = parseISO8601Date(item.PremiereDate, { toLocal: true }); var translationKey = new Date().getTime() > date.getTime() ? "ValuePremiered" : "ValuePremieres"; elem.show().html(Globalize.translate(translationKey, date.toLocaleDateString())); } catch (err) { elem.hide(); } } else { elem.hide(); } }, renderBudget: function (elem, item) { if (item.Budget) { elem.show().html(Globalize.translate('ValueBudget', '$' + item.Budget)); } else { elem.hide(); } }, renderRevenue: function (elem, item) { if (item.Revenue) { elem.show().html(Globalize.translate('ValueRevenue', '$' + item.Revenue)); } else { elem.hide(); } }, renderAwardSummary: function (elem, item) { if (item.AwardSummary) { elem.show().html(Globalize.translate('ValueAwards', item.AwardSummary)); } else { elem.hide(); } }, renderDetailPageBackdrop: function (page, item) { var screenWidth = screen.availWidth; var imgUrl; if (item.BackdropImageTags && item.BackdropImageTags.length) { imgUrl = ApiClient.getScaledImageUrl(item.Id, { type: "Backdrop", index: 0, maxWidth: screenWidth, tag: item.BackdropImageTags[0] }); ImageLoader.lazyImage($('#itemBackdrop', page).removeClass('noBackdrop')[0], 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 }); ImageLoader.lazyImage($('#itemBackdrop', page).removeClass('noBackdrop')[0], imgUrl); } else { $('#itemBackdrop', page).addClass('noBackdrop').css('background-image', 'none'); } } }; })(window, document, jQuery, screen);