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

84 lines
2.3 KiB
JavaScript
Raw Normal View History

2016-11-24 23:58:38 -07:00
define(['jQuery', 'imageLoader'], function ($, imageLoader) {
2016-10-22 22:11:46 -07:00
'use strict';
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
// The base query options
var query = {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
SortBy: "SortName",
SortOrder: "Ascending",
Recursive: true,
2015-03-27 19:19:20 -07:00
Fields: "DateCreated,ItemCounts",
2013-05-15 12:40:47 -07:00
StartIndex: 0
};
2013-04-14 20:37:07 -07:00
2014-05-01 19:54:33 -07:00
function getSavedQueryKey() {
2015-10-14 21:32:10 -07:00
return LibraryBrowser.getSavedQueryKey();
2014-05-01 19:54:33 -07:00
}
2013-05-15 12:40:47 -07:00
function reloadItems(page) {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
Dashboard.showLoadingMsg();
2013-04-14 20:37:07 -07:00
2015-12-14 08:43:03 -07:00
ApiClient.getGameGenres(Dashboard.getCurrentUserId(), query).then(function (result) {
2013-04-14 20:37:07 -07:00
// Scroll back up so they can see the results from the beginning
2015-06-28 07:45:21 -07:00
window.scrollTo(0, 0);
2013-05-15 12:40:47 -07:00
var html = '';
2013-04-14 20:37:07 -07:00
2015-01-22 23:15:15 -07:00
$('.listTopPaging', page).html(LibraryBrowser.getQueryPagingHtml({
2014-07-19 21:46:29 -07:00
startIndex: query.StartIndex,
limit: query.Limit,
totalRecordCount: result.TotalRecordCount,
showLimit: false
2015-09-05 21:53:37 -07:00
}));
2013-04-14 20:37:07 -07:00
2014-01-02 14:21:06 -07:00
html = LibraryBrowser.getPosterViewHtml({
2013-05-15 12:40:47 -07:00
items: result.Items,
2014-01-02 14:21:06 -07:00
shape: "backdrop",
preferThumb: true,
context: 'games',
showItemCounts: true,
centerText: true,
lazy: true
2013-05-15 12:40:47 -07:00
});
2013-04-14 20:37:07 -07:00
2015-06-28 07:45:21 -07:00
var elem = page.querySelector('#items');
elem.innerHTML = html;
2016-11-24 23:58:38 -07:00
imageLoader.lazyChildren(elem);
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-15 15:03:05 -07:00
2013-05-15 12:40:47 -07:00
$('.btnPreviousPage', page).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-15 15:03:05 -07:00
2014-05-01 19:54:33 -07:00
LibraryBrowser.saveQueryValues(getSavedQueryKey(), query);
2013-10-18 09:09:47 -07:00
2013-05-15 12:40:47 -07:00
Dashboard.hideLoadingMsg();
});
}
2013-04-14 20:37:07 -07:00
2016-02-14 13:34:54 -07:00
$(document).on('pagebeforeshow', "#gameGenresPage", function () {
2013-04-14 20:37:07 -07:00
2014-05-01 19:54:33 -07:00
query.ParentId = LibraryMenu.getTopParentId();
2013-05-15 12:40:47 -07:00
var limit = LibraryBrowser.getDefaultPageSize();
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
// If the default page size has changed, the start index will have to be reset
if (limit != query.Limit) {
query.Limit = limit;
query.StartIndex = 0;
}
2013-04-14 20:37:07 -07:00
2014-05-01 19:54:33 -07:00
LibraryBrowser.loadSavedQueryValues(getSavedQueryKey(), query);
2013-05-15 12:40:47 -07:00
reloadItems(this);
});
2013-04-14 20:37:07 -07:00
});