2013-04-14 20:37:07 -07:00
|
|
|
(function ($, document) {
|
|
|
|
|
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,
|
2013-09-23 07:26:20 -07:00
|
|
|
Fields: "DateCreated",
|
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() {
|
|
|
|
|
|
|
|
return 'gamegenres' + (query.ParentId || '');
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2013-07-01 10:17:33 -07:00
|
|
|
ApiClient.getGameGenres(Dashboard.getCurrentUserId(), query).done(function (result) {
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-18 10:07:20 -07:00
|
|
|
// Scroll back up so they can see the results from the beginning
|
|
|
|
$(document).scrollTop(0);
|
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
var html = '';
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
updateFilterControls(page);
|
|
|
|
|
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,
|
2014-06-30 19:29:27 -07:00
|
|
|
centerText: true,
|
|
|
|
lazy: true
|
2013-05-15 12:40:47 -07:00
|
|
|
});
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2014-06-30 19:29:27 -07:00
|
|
|
$('#items', page).html(html).trigger('create').createPosterItemMenus();
|
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
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
$('.selectPageSize', page).on('change', function () {
|
|
|
|
query.Limit = parseInt(this.value);
|
|
|
|
query.StartIndex = 0;
|
|
|
|
reloadItems(page);
|
|
|
|
});
|
2013-04-27 15:52:41 -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
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
function updateFilterControls(page) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
$(document).on('pageinit', "#gameGenresPage", function () {
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
var page = this;
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
$('.chkStandardFilter', this).on('change', function () {
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
var filters = query.Filters || "";
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
if (this.checked) {
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
}
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
query.StartIndex = 0;
|
|
|
|
query.Filters = filters;
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
reloadItems(page);
|
|
|
|
});
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
}).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-10-17 13:59:46 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
reloadItems(this);
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-05-15 12:40:47 -07:00
|
|
|
}).on('pageshow', "#gameGenresPage", function () {
|
2013-04-14 20:37:07 -07:00
|
|
|
|
2013-10-18 09:09:47 -07:00
|
|
|
updateFilterControls(this);
|
2013-05-15 12:40:47 -07:00
|
|
|
});
|
2013-04-14 20:37:07 -07:00
|
|
|
|
|
|
|
})(jQuery, document);
|