(function ($, document, apiClient) { function reloadTips(page) { var tips = [ 'Did you know that editing the artist or album of a music video will allow it to appear on the artist page?', 'Did you know that editing the tmdb id, tvdb id, and/or games db id of an album will allow media browser to link it to a movie, series or game as a soundtrack?', 'Did you know you can re-order your media collections by editing their sort names?', 'Did you know you series, seasons, games and boxsets can have local trailers?' ]; var random = Math.floor((Math.random() * tips.length * 2)); var tip = tips[random]; if (tip) { $('#tip', page).html(tip).show(); } else { $('#tip', page).hide(); } } function getViewHtml(view) { var html = ''; html += ''; html += '
' + view.name + '
'; html += '
'; return html; } $(document).on('pagebeforeshow', "#indexPage", function () { var page = this; var userId = Dashboard.getCurrentUserId(); if (!userId) { return; } var options = { sortBy: "SortName" }; apiClient.getItemCounts(userId).done(function (counts) { var views = []; if (counts.MovieCount || counts.TrailerCount) { views.push({ name: "Movies", url: "moviesrecommended.html", img: "css/images/items/list/chapter.png", background: "#0094FF" }); } if (counts.EpisodeCount || counts.SeriesCount) { views.push({ name: "TV Shows", url: "tvrecommended.html", img: "css/images/items/list/collection.png", background: "#FF870F" }); } if (counts.SongCount || counts.MusicVideoCount) { views.push({ name: "Music", url: "musicrecommended.html", img: "css/images/items/list/audiocollection.png", background: "#6FBD45" }); } if (counts.GameCount) { views.push({ name: "Games", url: "gamesrecommended.html", img: "css/images/items/list/gamecollection.png", background: "#E12026" }); } var html = ''; for (var i = 0, length = views.length; i < length; i++) { html += getViewHtml(views[i]); } $('#views', page).html(html); }); apiClient.getItems(userId, options).done(function (result) { $('#divCollections', page).html(LibraryBrowser.getPosterViewHtml({ items: result.Items, showTitle: true, shape: "backdrop", centerText: true })); }); }); $(document).on('pagebeforeshow', "#indexPage", function () { var page = this; reloadTips(page); }); })(jQuery, document, ApiClient);