1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/scripts/indexpage.js

85 lines
2.5 KiB
JavaScript
Raw Normal View History

(function ($, document, apiClient) {
2013-02-20 20:33:05 -05:00
2014-05-01 22:54:33 -04:00
$(document).on('pagebeforeshow', "#indexPage", function () {
2013-08-06 15:21:42 -04:00
2014-05-01 22:54:33 -04:00
var screenWidth = $(window).width();
2013-02-20 20:33:05 -05:00
2014-05-01 22:54:33 -04:00
var page = this;
2013-02-20 20:33:05 -05:00
2014-05-01 22:54:33 -04:00
var options = {
2013-04-04 13:27:36 -04:00
2014-05-03 19:38:23 -04:00
SortBy: "SortName",
Fields: "PrimaryImageAspectRatio"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('.myLibrary', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: 'backdrop',
2014-05-04 20:46:52 -04:00
showTitle: true,
centerText: true
2014-05-03 19:38:23 -04:00
})).createPosterItemMenus();
});
options = {
2014-05-01 22:54:33 -04:00
SortBy: "DatePlayed",
SortOrder: "Descending",
MediaTypes: "Video",
Filters: "IsResumable",
Limit: screenWidth >= 1920 ? 4 : (screenWidth >= 1440 ? 4 : 3),
Recursive: true,
Fields: "PrimaryImageAspectRatio",
CollapseBoxSetItems: false,
2014-05-03 19:38:23 -04:00
ExcludeLocationTypes: "Virtual"
2014-05-01 22:54:33 -04:00
};
2014-05-01 22:54:33 -04:00
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
2014-05-01 22:54:33 -04:00
if (result.Items.length) {
$('#resumableSection', page).show();
} else {
$('#resumableSection', page).hide();
}
2013-11-20 16:08:12 -05:00
2014-05-01 22:54:33 -04:00
$('#resumableItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
preferBackdrop: true,
shape: 'backdrop',
overlayText: true,
showTitle: true
2013-04-04 13:27:36 -04:00
2014-05-01 22:54:33 -04:00
})).createPosterItemMenus();
2013-08-06 15:21:42 -04:00
});
2013-04-04 13:27:36 -04:00
2014-05-01 22:54:33 -04:00
options = {
SortBy: "DateCreated",
SortOrder: "Descending",
2014-05-04 10:19:46 -04:00
Limit: screenWidth >= 1920 ? 10 : (screenWidth >= 1440 ? 8 : (screenWidth >= 800 ? 8 : 8)),
2014-05-01 22:54:33 -04:00
Recursive: true,
Fields: "PrimaryImageAspectRatio",
Filters: "IsUnplayed,IsNotFolder",
CollapseBoxSetItems: false,
2014-05-03 19:38:23 -04:00
ExcludeLocationTypes: "Virtual,Remote"
2013-08-06 15:21:42 -04:00
};
2014-05-01 22:54:33 -04:00
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
2013-04-04 13:27:36 -04:00
2014-05-01 22:54:33 -04:00
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
2014-05-03 19:38:23 -04:00
items: result.Items,
2014-05-01 22:54:33 -04:00
preferThumb: true,
shape: 'backdrop',
showTitle: true,
centerText: true
2013-04-04 13:27:36 -04:00
2014-05-01 22:54:33 -04:00
})).createPosterItemMenus();
2013-04-04 13:27:36 -04:00
});
2013-07-23 08:29:28 -04:00
});
})(jQuery, document, ApiClient);