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

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2013-04-01 18:28:01 -07:00
(function ($, document) {
2014-02-22 22:52:30 -07:00
function loadNextUp(page) {
2013-04-30 20:28:26 -07:00
2014-05-09 12:43:06 -07:00
var screenWidth = $(window).width();
2014-06-14 16:13:09 -07:00
var query = {
2014-02-22 22:52:30 -07:00
Limit: 24,
Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated",
UserId: Dashboard.getCurrentUserId(),
2014-05-29 12:34:20 -07:00
ExcludeLocationTypes: "Virtual"
2013-04-30 20:28:26 -07:00
};
2014-06-14 16:13:09 -07:00
query.ParentId = LibraryMenu.getTopParentId();
if (query.ParentId) {
$('.scopedLibraryViewNav', page).show();
$('.globalNav', page).hide();
} else {
$('.scopedLibraryViewNav', page).hide();
$('.globalNav', page).show();
}
ApiClient.getNextUpEpisodes(query).done(function (result) {
2013-04-30 20:28:26 -07:00
if (result.Items.length) {
2014-03-31 14:04:22 -07:00
$('.noNextUpItems', page).hide();
2013-04-30 20:28:26 -07:00
} else {
2014-03-31 14:04:22 -07:00
$('.noNextUpItems', page).show();
2013-04-30 20:28:26 -07:00
}
2014-03-31 14:04:22 -07:00
$('#nextUpItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
2014-05-29 12:34:20 -07:00
overlayText: screenWidth >= 600,
context: 'home-nextup',
lazy: true
2014-02-22 22:52:30 -07:00
2014-05-29 12:34:20 -07:00
})).trigger('create').createPosterItemMenus();
2013-04-30 20:28:26 -07:00
});
2014-02-22 22:52:30 -07:00
}
$(document).on('pagebeforeshow', "#tvRecommendedPage", function () {
var page = this;
2013-04-30 20:28:26 -07:00
2014-02-22 22:52:30 -07:00
loadNextUp(page);
2013-04-30 20:28:26 -07:00
});
2013-04-01 18:28:01 -07:00
})(jQuery, document);