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

228 lines
6.7 KiB
JavaScript
Raw Normal View History

(function ($, document) {
2013-04-17 15:43:31 -07:00
var view = "Backdrop";
2013-04-08 14:05:00 -07:00
2013-04-01 20:28:20 -07:00
// The base query options
var query = {
2013-04-01 20:28:20 -07:00
SortBy: "SortName",
SortOrder: "Ascending",
IncludeItemTypes: "Movie",
Recursive: true,
Fields: "UserData,DisplayMediaType,ItemCounts,DateCreated",
2013-04-09 09:42:55 -07:00
Limit: LibraryBrowser.getDetaultPageSize(),
2013-04-08 14:05:00 -07:00
StartIndex: 0
2013-04-01 20:28:20 -07:00
};
function reloadItems(page) {
Dashboard.showLoadingMsg();
2013-04-10 22:27:27 -07:00
2013-04-01 20:28:20 -07:00
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
2013-04-08 14:05:00 -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-08 14:05:00 -07:00
2013-04-17 15:43:31 -07:00
if (view == "Backdrop") {
2013-04-10 22:27:27 -07:00
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
2013-04-23 07:46:27 -07:00
preferBackdrop: true,
2013-04-23 19:50:43 -07:00
context: "movies",
shape: "backdrop"
2013-04-10 22:27:27 -07:00
});
}
else if (view == "Poster") {
2013-04-11 08:43:57 -07:00
html += LibraryBrowser.getPosterDetailViewHtml({
2013-04-04 21:15:00 -07:00
items: result.Items,
2013-04-23 19:50:43 -07:00
context: "movies",
shape: "poster"
2013-04-08 14:05:00 -07:00
});
2013-04-04 21:15:00 -07:00
}
2013-04-08 14:05:00 -07:00
2013-04-19 09:28:06 -07:00
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
2013-04-01 20:28:20 -07:00
2013-04-19 09:28:06 -07:00
$('#items', page).html(html).trigger('create');
2013-04-08 14:05:00 -07:00
2013-04-18 22:08:18 -07:00
$('.selectPage', page).on('change', function () {
2013-04-08 14:05:00 -07:00
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
2013-04-15 15:03:05 -07:00
2013-04-18 22:08:18 -07:00
$('.btnNextPage', page).on('click', function () {
2013-04-15 15:03:05 -07:00
query.StartIndex += query.Limit;
reloadItems(page);
});
2013-04-18 22:08:18 -07:00
$('.btnPreviousPage', page).on('click', function () {
2013-04-15 15:03:05 -07:00
query.StartIndex -= query.Limit;
reloadItems(page);
});
2013-04-08 14:05:00 -07:00
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-01 20:28:20 -07:00
Dashboard.hideLoadingMsg();
});
2013-04-01 20:28:20 -07:00
}
2013-04-01 20:28:20 -07:00
$(document).on('pageinit', "#moviesPage", function () {
var page = this;
2013-04-01 20:28:20 -07:00
$('.radioSortBy', this).on('click', function () {
2013-04-08 14:05:00 -07:00
query.StartIndex = 0;
2013-04-01 20:28:20 -07:00
query.SortBy = this.getAttribute('data-sortby');
reloadItems(page);
});
$('.radioSortOrder', this).on('click', function () {
2013-04-08 14:05:00 -07:00
query.StartIndex = 0;
2013-04-01 20:28:20 -07:00
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;
}
2013-04-08 14:05:00 -07:00
query.StartIndex = 0;
2013-04-01 20:28:20 -07:00
query.Filters = filters;
reloadItems(page);
});
2013-04-04 08:38:41 -07:00
$('.chkVideoTypeFilter', this).on('change', function () {
var filterName = this.getAttribute('data-filter');
var filters = query.VideoTypes || "";
filters = (',' + filters).replace(',' + filterName, '').substring(1);
if (this.checked) {
filters = filters ? (filters + ',' + filterName) : filterName;
}
2013-04-08 14:05:00 -07:00
query.StartIndex = 0;
2013-04-04 08:38:41 -07:00
query.VideoTypes = filters;
reloadItems(page);
});
2013-04-08 14:05:00 -07:00
2013-04-04 21:15:00 -07:00
$('#selectView', this).on('change', function () {
view = this.value;
reloadItems(page);
});
2013-04-04 08:38:41 -07:00
2013-04-07 06:34:46 -07:00
$('#chk3D', this).on('change', function () {
2013-04-08 14:05:00 -07:00
query.StartIndex = 0;
2013-04-07 06:34:46 -07:00
query.VideoFormats = this.checked ? this.getAttribute('data-filter') : null;
reloadItems(page);
});
2013-04-29 18:29:04 -07:00
$('#chkSubtitle', this).on('change', function () {
query.StartIndex = 0;
query.HasSubtitles = this.checked ? true : null;
reloadItems(page);
});
$('#chkTrailer', this).on('change', function () {
query.StartIndex = 0;
query.HasTrailer = this.checked ? true : null;
reloadItems(page);
});
$('#chkSpecialFeature', this).on('change', function () {
query.StartIndex = 0;
query.HasSpecialFeature = this.checked ? true : null;
reloadItems(page);
});
$('#chkThemeSong', this).on('change', function () {
query.StartIndex = 0;
query.HasThemeSong = this.checked ? true : null;
reloadItems(page);
});
$('#chkThemeVideo', this).on('change', function () {
query.StartIndex = 0;
query.HasThemeVideo = this.checked ? true : null;
reloadItems(page);
});
2013-04-07 06:34:46 -07:00
2013-04-08 14:05:00 -07:00
}).on('pagebeforeshow', "#moviesPage", function () {
reloadItems(this);
2013-04-08 14:05:00 -07:00
2013-04-01 20:28:20 -07:00
}).on('pageshow', "#moviesPage", 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');
2013-04-04 08:38:41 -07:00
$('.chkVideoTypeFilter', this).each(function () {
var filters = "," + (query.VideoTypes || "");
var filterName = this.getAttribute('data-filter');
this.checked = filters.indexOf(',' + filterName) != -1;
}).checkboxradio('refresh');
2013-04-06 11:59:21 -07:00
$('#selectView', this).val(view).selectmenu('refresh');
2013-04-08 14:05:00 -07:00
2013-04-07 06:34:46 -07:00
$('#chk3D', this).checked(query.VideoFormats == "Digital3D,Sbs3D").checkboxradio('refresh');
2013-04-29 18:29:04 -07:00
$('#chkSubtitle', this).checked(query.HasSubtitles == true).checkboxradio('refresh');
$('#chkTrailer', this).checked(query.HasTrailer == true).checkboxradio('refresh');
$('#chkSpecialFeature', this).checked(query.HasSpecialFeature == true).checkboxradio('refresh');
$('#chkThemeSong', this).checked(query.HasThemeSong == true).checkboxradio('refresh');
$('#chkThemeVideo', this).checked(query.HasThemeVideo == true).checkboxradio('refresh');
2013-04-01 20:28:20 -07:00
});
})(jQuery, document);