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/gamesrecommendedpage.js

56 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-04-14 20:37:07 -07:00
(function ($, document) {
2013-09-08 17:16:13 -04:00
$(document).on('pagebeforeshow', "#gamesRecommendedPage", function () {
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
var page = this;
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
var options = {
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
SortBy: "DateCreated",
SortOrder: "Descending",
MediaTypes: "Game",
2014-01-30 16:23:54 -05:00
Limit: 10,
2014-04-03 18:50:04 -04:00
Recursive: true,
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
2013-09-08 17:16:13 -04:00
};
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
transparent: true,
borderless: true
2013-09-08 17:16:13 -04:00
}));
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
});
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
options = {
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
SortBy: "DatePlayed",
SortOrder: "Descending",
MediaTypes: "Game",
2014-01-30 16:23:54 -05:00
Limit: 10,
2013-09-08 17:16:13 -04:00
Recursive: true,
2014-04-03 18:50:04 -04:00
Filters: "IsPlayed",
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
2013-09-08 17:16:13 -04:00
};
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
if (result.Items.length) {
$('#recentlyPlayedSection', page).show();
} else {
$('#recentlyPlayedSection', page).hide();
}
2013-04-14 20:37:07 -07:00
2013-09-08 17:16:13 -04:00
$('#recentlyPlayedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
transparent: true,
borderless: true
2013-09-08 17:16:13 -04:00
}));
});
});
2013-04-14 20:37:07 -07:00
})(jQuery, document);