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

214 lines
6.1 KiB
JavaScript
Raw Normal View History

2013-04-14 20:37:07 -07:00
(function ($, document) {
2013-04-29 18:32:15 -07:00
// The base query options
var query = {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
SortBy: "SortName",
SortOrder: "Ascending",
MediaTypes: "Game",
Recursive: true,
2014-01-04 22:15:38 -07:00
Fields: "Genres,Studios,PrimaryImageAspectRatio",
2013-04-29 18:32:15 -07:00
StartIndex: 0
};
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
function reloadItems(page) {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
Dashboard.showLoadingMsg();
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -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-04-29 18:32:15 -07:00
var html = '';
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -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);
var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
2014-01-04 22:15:38 -07:00
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "auto",
context: 'games',
useAverageAspectRatio: false,
showTitle: true,
2014-01-17 22:55:21 -07:00
showParentTitle: true,
centerText: true
2014-01-04 22:15:38 -07:00
});
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
2013-04-14 20:37:07 -07:00
2014-01-14 22:01:58 -07:00
$('#items', page).html(html).trigger('create').createPosterItemHoverMenu();
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-15 15:03:05 -07:00
2013-04-29 18:32:15 -07:00
$('.btnPreviousPage', page).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-15 15:03:05 -07:00
2013-04-29 18:32:15 -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-18 09:09:47 -07:00
LibraryBrowser.saveQueryValues('games', query);
2013-04-29 18:32:15 -07:00
Dashboard.hideLoadingMsg();
});
}
2013-04-14 20:37:07 -07:00
2013-10-18 09:09:47 -07:00
function updateFilterControls(page) {
// Reset form values using the last used query
$('.radioSortBy', page).each(function () {
this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
}).checkboxradio('refresh');
$('.radioSortOrder', page).each(function () {
this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
}).checkboxradio('refresh');
$('.radioPlayers', page).each(function () {
var val = this.getAttribute('data-value');
if (val == "all") {
this.checked = query.MinPlayers == null;
} else {
this.checked = query.MinPlayers == val;
}
}).checkboxradio('refresh');
$('.chkStandardFilter', page).each(function () {
var filters = "," + (query.Filters || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
$('#chkTrailer', page).checked(query.HasTrailer == true).checkboxradio('refresh');
$('#chkThemeSong', page).checked(query.HasThemeSong == true).checkboxradio('refresh');
$('#chkThemeVideo', page).checked(query.HasThemeVideo == true).checkboxradio('refresh');
$('.alphabetPicker', page).alphaValue(query.NameStartsWith);
}
2013-04-29 18:32:15 -07:00
$(document).on('pageinit', "#gamesPage", function () {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
var page = this;
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('.radioSortBy', this).on('click', function () {
query.StartIndex = 0;
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('.radioSortOrder', this).on('click', function () {
query.StartIndex = 0;
query.SortOrder = this.getAttribute('data-sortorder');
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
2013-09-15 12:33:23 -07:00
$('.radioPlayers', this).on('click', function () {
2013-10-18 09:09:47 -07:00
2013-09-15 12:33:23 -07:00
query.StartIndex = 0;
var val = this.getAttribute('data-value');
query.MinPlayers = val == "all" ? null : val;
2013-10-18 09:09:47 -07:00
2013-09-15 12:33:23 -07:00
reloadItems(page);
});
2013-04-29 18:32:15 -07:00
$('.chkStandardFilter', this).on('change', function () {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
var filterName = this.getAttribute('data-filter');
var filters = query.Filters || "";
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
filters = (',' + filters).replace(',' + filterName, '').substring(1);
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
if (this.checked) {
filters = filters ? (filters + ',' + filterName) : filterName;
}
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
query.StartIndex = 0;
query.Filters = filters;
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('#chkTrailer', this).on('change', function () {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
query.StartIndex = 0;
query.HasTrailer = this.checked ? true : null;
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('#chkThemeSong', this).on('change', function () {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
query.StartIndex = 0;
query.HasThemeSong = this.checked ? true : null;
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
$('#chkThemeVideo', this).on('change', function () {
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
query.StartIndex = 0;
query.HasThemeVideo = this.checked ? true : null;
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
reloadItems(page);
});
2013-04-14 20:37:07 -07:00
$('.alphabetPicker', this).on('alphaselect', function (e, character) {
2013-05-16 20:24:41 -07:00
query.NameStartsWithOrGreater = character;
2013-05-17 11:05:49 -07:00
query.StartIndex = 0;
reloadItems(page);
}).on('alphaclear', function (e) {
2013-05-16 20:24:41 -07:00
query.NameStartsWithOrGreater = '';
reloadItems(page);
});
2013-04-29 18:32:15 -07:00
}).on('pagebeforeshow', "#gamesPage", function () {
2013-04-14 20:37:07 -07:00
2013-05-15 12:40:47 -07:00
var limit = LibraryBrowser.getDefaultPageSize();
// 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;
}
LibraryBrowser.loadSavedQueryValues('games', query);
2013-04-29 18:32:15 -07:00
reloadItems(this);
2013-04-14 20:37:07 -07:00
2013-04-29 18:32:15 -07:00
}).on('pageshow', "#gamesPage", function () {
2013-04-14 20:37:07 -07:00
2013-10-18 09:09:47 -07:00
updateFilterControls(this);
2013-04-29 18:32:15 -07:00
});
2013-04-14 20:37:07 -07:00
})(jQuery, document);