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

66 lines
1.8 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
2014-05-01 22:54:33 -04:00
var parentId = LibraryMenu.getTopParentId();
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-05-21 23:35:18 -04:00
Limit: 8,
2014-04-03 18:50:04 -04:00
Recursive: true,
2014-05-01 22:54:33 -04:00
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio",
ParentId: parentId
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,
2014-05-29 15:34:20 -04:00
borderless: true,
shape: 'auto',
lazy: true
})).trigger('create').createPosterItemMenus();
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-05-21 23:35:18 -04:00
Limit: 8,
2013-09-08 17:16:13 -04:00
Recursive: true,
2014-04-03 18:50:04 -04:00
Filters: "IsPlayed",
2014-05-01 22:54:33 -04:00
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio",
ParentId: parentId
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,
2014-05-29 15:34:20 -04:00
borderless: true,
shape: 'auto',
lazy: true
})).trigger('create').createPosterItemMenus();
2013-09-08 17:16:13 -04:00
});
});
2013-04-14 20:37:07 -07:00
})(jQuery, document);