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

136 lines
3.9 KiB
JavaScript
Raw Normal View History

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",
2013-09-21 14:00:04 -07:00
IncludeItemTypes: "GameSystem",
2013-05-15 12:40:47 -07:00
Recursive: true,
Fields: "DateCreated",
2013-05-15 12:40:47 -07:00
StartIndex: 0
};
2013-10-12 12:34:08 -07:00
LibraryBrowser.loadSavedQueryValues('gamesystems', query);
2013-04-14 20:37:07 -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
2013-05-15 12:40:47 -07:00
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
2013-04-14 20:37:07 -07:00
2013-05-17 12:18:54 -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-05-15 12:40:47 -07:00
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
context: "games",
shape: "backdrop"
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
2013-05-15 12:40:47 -07:00
$('#items', page).html(html).trigger('create');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
$('.selectPage', page).on('change', function () {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
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
2013-10-12 12:34:08 -07:00
LibraryBrowser.saveQueryValues('gamesystems', query);
2013-05-15 12:40:47 -07:00
Dashboard.hideLoadingMsg();
});
}
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
$(document).on('pageinit', "#gamesystemsPage", 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
$('.radioSortBy', this).on('click', function () {
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
2013-05-15 12:26:52 -07:00
2013-05-15 12:40:47 -07:00
$('.radioSortOrder', this).on('click', function () {
query.SortOrder = this.getAttribute('data-sortorder');
reloadItems(page);
});
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', "#gamesystemsPage", function () {
2013-04-14 20:37:07 -07:00
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
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', "#gamesystemsPage", function () {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
// Reset form values using the last used query
$('.radioSortBy', this).each(function () {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
this.checked = query.SortBy == this.getAttribute('data-sortby');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
}).checkboxradio('refresh');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
$('.radioSortOrder', this).each(function () {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
this.checked = query.SortOrder == this.getAttribute('data-sortorder');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
}).checkboxradio('refresh');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
$('.chkStandardFilter', this).each(function () {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
var filters = "," + (query.Filters || "");
var filterName = this.getAttribute('data-filter');
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
});
2013-04-14 20:37:07 -07:00
})(jQuery, document);