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()); }, 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 ? '
'; html += ''; html += ''; html += ' | '; var num = item.IndexNumber; if (num && item.ParentIndexNumber) { num = item.ParentIndexNumber + "." + num; } html += '' + (num || "") + ' | '; html += '' + (item.Name || "") + ' | '; if (options.showAlbum) { if (item.Album && item.ParentId) { html += '' + item.Album + ' | '; } else { html += '' + (item.Album || '') + ' | '; } } if (options.showArtist) { if (item.Artists && item.Artists.length) { var artistLinksHtml = LibraryBrowser.getArtistLinksHtml(item.Artists); html += '' + artistLinksHtml + ' | '; } else { html += ''; } } if (options.showArtist) { if (item.AlbumArtist) { html += ' | ' + LibraryBrowser.getArtistLinksHtml([item.AlbumArtist]) + ' | '; } else { html += ''; } } var time = Dashboard.getDisplayTime(item.RunTimeTicks || 0); html += ' | ' + time + ' | '; html += '' + (item.UserData ? item.UserData.PlayCount : 0) + ' | '; html += '