mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
115 lines
2.8 KiB
JavaScript
115 lines
2.8 KiB
JavaScript
(function ($, document) {
|
|
|
|
function loadRecommendedPrograms(page) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
ApiClient.getLiveTvRecommendedPrograms({
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
IsAiring: true,
|
|
limit: 18
|
|
|
|
}).done(function (result) {
|
|
|
|
var html = LibraryBrowser.getPosterViewHtml({
|
|
|
|
items: result.Items,
|
|
shape: "auto",
|
|
showTitle: true,
|
|
showParentTitle: true,
|
|
overlayText: true,
|
|
coverImage: true,
|
|
lazy: true
|
|
|
|
});
|
|
|
|
$('.activeProgramItems', page).html(html).lazyChildren();
|
|
Dashboard.hideLoadingMsg();
|
|
});
|
|
}
|
|
|
|
function reload(page) {
|
|
|
|
loadRecommendedPrograms(page);
|
|
|
|
ApiClient.getLiveTvRecommendedPrograms({
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
IsAiring: false,
|
|
HasAired: false,
|
|
limit: 9,
|
|
IsMovie: false,
|
|
IsSports: false
|
|
|
|
}).done(function (result) {
|
|
|
|
var html = LibraryBrowser.getPosterViewHtml({
|
|
|
|
items: result.Items,
|
|
shape: "auto",
|
|
showTitle: true,
|
|
showParentTitle: true,
|
|
overlayText: true,
|
|
coverImage: true,
|
|
lazy: true
|
|
|
|
});
|
|
|
|
$('.upcomingProgramItems', page).html(html).lazyChildren();
|
|
});
|
|
|
|
ApiClient.getLiveTvRecommendedPrograms({
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
IsAiring: false,
|
|
HasAired: false,
|
|
limit: 9,
|
|
IsMovie: true
|
|
|
|
}).done(function (result) {
|
|
|
|
var html = LibraryBrowser.getPosterViewHtml({
|
|
items: result.Items,
|
|
shape: "auto",
|
|
showTitle: false,
|
|
coverImage: true,
|
|
overlayText: false,
|
|
lazy: true
|
|
});
|
|
|
|
$('.upcomingTvMovieItems', page).html(html).lazyChildren();
|
|
});
|
|
|
|
ApiClient.getLiveTvRecommendedPrograms({
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
IsAiring: false,
|
|
HasAired: false,
|
|
limit: 9,
|
|
IsSports: true
|
|
|
|
}).done(function (result) {
|
|
|
|
var html = LibraryBrowser.getPosterViewHtml({
|
|
items: result.Items,
|
|
shape: "auto",
|
|
showTitle: false,
|
|
coverImage: true,
|
|
overlayText: false,
|
|
lazy: true
|
|
});
|
|
|
|
$('.upcomingSportsItems', page).html(html).lazyChildren();
|
|
});
|
|
}
|
|
|
|
$(document).on('pagebeforeshowready', "#liveTvSuggestedPage", function () {
|
|
|
|
var page = this;
|
|
|
|
reload(page);
|
|
|
|
});
|
|
|
|
})(jQuery, document); |