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

156 lines
4.5 KiB
JavaScript
Raw Normal View History

2013-04-17 13:04:57 -04:00
(function ($, document) {
// The base query options
var query = {
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Trailer",
Recursive: true,
Fields: "PrimaryImageAspectRatio",
2013-04-17 13:04:57 -04:00
StartIndex: 0
};
function reloadItems(page) {
Dashboard.showLoadingMsg();
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
2013-05-17 15:18:54 -04:00
// Scroll back up so they can see the results from the beginning
$(document).scrollTop(0);
2013-04-17 13:04:57 -04:00
var html = '';
2013-04-19 12:28:06 -04:00
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
2013-04-17 13:04:57 -04:00
2013-10-18 12:09:47 -04:00
updateFilterControls(page);
2014-01-13 11:25:18 -05:00
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "portrait",
context: 'movies',
2014-01-13 11:48:37 -05:00
showTitle: true,
centerText: true
2014-01-13 11:25:18 -05:00
});
2013-04-17 13:04:57 -04:00
2013-04-19 12:28:06 -04:00
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
2013-10-18 12:09:47 -04:00
$('#items', page).html(html).trigger('create').createPosterItemMenus();
2013-04-17 13:04:57 -04:00
2013-04-19 01:08:18 -04:00
$('.btnNextPage', page).on('click', function () {
2013-04-17 13:04:57 -04:00
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-19 01:08:18 -04:00
$('.btnPreviousPage', page).on('click', function () {
2013-04-17 13:04:57 -04:00
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-27 18:52:41 -04:00
$('.selectPageSize', page).on('change', function () {
query.Limit = parseInt(this.value);
query.StartIndex = 0;
reloadItems(page);
});
2013-10-18 12:09:47 -04:00
LibraryBrowser.saveQueryValues('movietrailers', query);
2013-04-27 18:52:41 -04:00
2013-04-17 13:04:57 -04:00
Dashboard.hideLoadingMsg();
});
}
2013-10-18 12:09:47 -04: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');
$('.chkStandardFilter', page).each(function () {
var filters = "," + (query.Filters || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
$('.alphabetPicker', page).alphaValue(query.NameStartsWith);
}
2013-04-17 13:04:57 -04:00
$(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);
});
$('.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-17 13:04:57 -04:00
}).on('pagebeforeshow', "#movieTrailersPage", function () {
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;
}
LibraryBrowser.loadSavedQueryValues('movietrailers', query);
2013-04-17 13:04:57 -04:00
reloadItems(this);
}).on('pageshow', "#movieTrailersPage", function () {
2013-10-18 12:09:47 -04:00
updateFilterControls(this);
2013-04-17 13:04:57 -04:00
});
})(jQuery, document);