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/boxsets.js

171 lines
4.9 KiB
JavaScript
Raw Normal View History

2013-04-03 21:21:46 -07:00
(function ($, document) {
2013-04-29 22:00:42 -04:00
// The base query options
var query = {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "BoxSet",
Recursive: true,
Fields: "DisplayMediaType,ItemCounts,DateCreated,UserData",
StartIndex: 0
};
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
function reloadItems(page) {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
Dashboard.showLoadingMsg();
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
var html = '';
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
context: "movies"
});
2013-04-11 11:43:57 -04:00
2013-04-29 22:00:42 -04:00
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
2013-04-11 11:43:57 -04:00
2013-04-29 22:00:42 -04:00
$('#items', page).html(html).trigger('create');
2013-04-11 11:43:57 -04:00
2013-04-29 22:00:42 -04:00
$('.selectPage', page).on('change', function () {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
2013-04-11 11:43:57 -04:00
2013-04-29 22:00:42 -04:00
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-15 18:03:05 -04:00
2013-04-29 22:00:42 -04:00
$('.btnPreviousPage', page).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-15 18:03:05 -04:00
2013-04-29 22:00:42 -04:00
$('.selectPageSize', page).on('change', function () {
query.Limit = parseInt(this.value);
query.StartIndex = 0;
reloadItems(page);
});
2013-04-27 18:52:41 -04:00
2013-04-29 22:00:42 -04:00
Dashboard.hideLoadingMsg();
});
}
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$(document).on('pageinit', "#boxsetsPage", function () {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
var page = this;
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('.radioSortBy', this).on('click', function () {
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('.radioSortOrder', this).on('click', function () {
query.SortOrder = this.getAttribute('data-sortorder');
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('.chkStandardFilter', this).on('change', function () {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
var filterName = this.getAttribute('data-filter');
var filters = query.Filters || "";
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
filters = (',' + filters).replace(',' + filterName, '').substring(1);
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
if (this.checked) {
filters = filters ? (filters + ',' + filterName) : filterName;
}
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
query.StartIndex = 0;
query.Filters = filters;
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('#chkTrailer', this).on('change', function () {
2013-04-29 22:00:42 -04:00
query.StartIndex = 0;
query.HasTrailer = this.checked ? true : null;
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('#chkThemeSong', this).on('change', function () {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
query.StartIndex = 0;
query.HasThemeSong = this.checked ? true : null;
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
$('#chkThemeVideo', this).on('change', function () {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
query.StartIndex = 0;
query.HasThemeVideo = this.checked ? true : null;
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
reloadItems(page);
});
2013-04-03 21:21:46 -07:00
$('.alphabetPicker', this).on('alphaselect', function (e, character) {
2013-05-16 23:24:41 -04:00
query.NameStartsWithOrGreater = character;
2013-05-17 14:05:49 -04:00
query.StartIndex = 0;
reloadItems(page);
}).on('alphaclear', function (e) {
2013-05-16 23:24:41 -04:00
query.NameStartsWithOrGreater = '';
reloadItems(page);
});
2013-04-29 22:00:42 -04:00
}).on('pagebeforeshow', "#boxsetsPage", function () {
2013-04-03 21:21:46 -07:00
2013-05-15 15:40:47 -04: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;
}
2013-04-29 22:00:42 -04:00
reloadItems(this);
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
}).on('pageshow', "#boxsetsPage", function () {
2013-04-03 21:21:46 -07:00
2013-04-29 22:00:42 -04:00
// Reset form values using the last used query
$('.radioSortBy', this).each(function () {
this.checked = query.SortBy == this.getAttribute('data-sortby');
}).checkboxradio('refresh');
$('.radioSortOrder', this).each(function () {
this.checked = query.SortOrder == this.getAttribute('data-sortorder');
}).checkboxradio('refresh');
$('.chkStandardFilter', this).each(function () {
var filters = "," + (query.Filters || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
$('#chkTrailer', this).checked(query.HasTrailer == true).checkboxradio('refresh');
$('#chkThemeSong', this).checked(query.HasThemeSong == true).checkboxradio('refresh');
$('#chkThemeVideo', this).checked(query.HasThemeVideo == true).checkboxradio('refresh');
2013-05-16 23:24:41 -04:00
$('.alphabetPicker', this).alphaValue(query.NameStartsWithOrGreater);
2013-04-29 22:00:42 -04:00
});
2013-04-03 21:21:46 -07:00
})(jQuery, document);