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

168 lines
4.8 KiB
JavaScript
Raw Normal View History

2013-04-17 10:04:57 -07:00
(function ($, document) {
var view = "Poster";
2013-04-17 10:04:57 -07:00
// The base query options
var query = {
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Trailer",
Recursive: true,
Fields: "UserData,DisplayMediaType,ItemCounts,DateCreated",
2013-04-17 10:04:57 -07:00
StartIndex: 0
};
function reloadItems(page) {
Dashboard.showLoadingMsg();
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
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-17 10:04:57 -07:00
var html = '';
2013-04-19 09:28:06 -07:00
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
2013-04-17 10:04:57 -07:00
2013-04-17 15:43:31 -07:00
if (view == "Backdrop") {
2013-04-17 10:04:57 -07:00
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
2013-04-23 07:46:27 -07:00
preferBackdrop: true,
context: "movies"
2013-04-17 10:04:57 -07:00
});
}
else if (view == "Poster") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
2013-04-23 07:46:27 -07:00
context: "movies"
2013-04-17 10:04:57 -07:00
});
}
2013-04-19 09:28:06 -07:00
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
$('#items', page).html(html).trigger('create');
2013-04-17 10:04:57 -07:00
2013-04-18 22:08:18 -07:00
$('.selectPage', page).on('change', function () {
2013-04-17 10:04:57 -07:00
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
2013-04-18 22:08:18 -07:00
$('.btnNextPage', page).on('click', function () {
2013-04-17 10:04:57 -07:00
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-18 22:08:18 -07:00
$('.btnPreviousPage', page).on('click', function () {
2013-04-17 10:04:57 -07:00
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-27 15:52:41 -07:00
$('.selectPageSize', page).on('change', function () {
query.Limit = parseInt(this.value);
query.StartIndex = 0;
reloadItems(page);
});
2013-04-17 10:04:57 -07:00
Dashboard.hideLoadingMsg();
});
}
$(document).on('pageinit', "#movieTrailersPage", function () {
var page = this;
$('.radioSortBy', this).on('click', function () {
query.StartIndex = 0;
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
$('.radioSortOrder', this).on('click', function () {
query.StartIndex = 0;
query.SortOrder = this.getAttribute('data-sortorder');
reloadItems(page);
});
$('.chkStandardFilter', this).on('change', function () {
var filterName = this.getAttribute('data-filter');
var filters = query.Filters || "";
filters = (',' + filters).replace(',' + filterName, '').substring(1);
if (this.checked) {
filters = filters ? (filters + ',' + filterName) : filterName;
}
query.StartIndex = 0;
query.Filters = filters;
reloadItems(page);
});
$('#selectView', this).on('change', function () {
view = this.value;
reloadItems(page);
});
$('.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-17 10:04:57 -07:00
}).on('pagebeforeshow', "#movieTrailersPage", function () {
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;
}
2013-04-17 10:04:57 -07:00
reloadItems(this);
}).on('pageshow', "#movieTrailersPage", function () {
// 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');
$('#selectView', this).val(view).selectmenu('refresh');
$('.alphabetPicker', this).alphaValue(query.NameStartsWith);
2013-04-17 10:04:57 -07:00
});
})(jQuery, document);