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

144 lines
4.3 KiB
JavaScript
Raw Normal View History

2013-04-19 16:57:23 -07:00
(function ($, document) {
// The base query options
var query = {
SortBy: "SortName",
SortOrder: "Ascending",
2013-07-11 13:25:12 -07:00
IncludeItemTypes: "Audio,MusicVideo",
2013-04-19 16:57:23 -07:00
Recursive: true,
Fields: "DateCreated",
2013-04-19 16:57:23 -07:00
StartIndex: 0
};
function reloadItems(page) {
Dashboard.showLoadingMsg();
2013-06-10 20:31:00 -07:00
ApiClient.getMusicGenres(Dashboard.getCurrentUserId(), query).done(function (result) {
2013-04-19 16:57:23 -07:00
// Scroll back up so they can see the results from the beginning
$(document).scrollTop(0);
2013-04-19 16:57:23 -07:00
var html = '';
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
2013-10-18 09:09:47 -07:00
updateFilterControls(page);
var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
2013-04-19 16:57:23 -07:00
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
2013-04-23 07:46:27 -07:00
context: "music"
2013-04-19 16:57:23 -07:00
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
$('#items', page).html(html).trigger('create');
2013-10-17 11:24:27 -07:00
$('.btnChangeToDefaultSort', page).on('click', function () {
2013-10-18 09:09:47 -07:00
query.StartIndex = 0;
query.SortOrder = 'Ascending';
query.SortBy = $('.defaultSort', page).data('sortby');
reloadItems(page);
2013-10-17 11:24:27 -07:00
});
2013-04-19 16:57:23 -07:00
$('.selectPage', page).on('change', function () {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
$('.btnPreviousPage', page).on('click', function () {
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-10-12 12:34:08 -07:00
LibraryBrowser.saveQueryValues('musicgenres', query);
2013-04-19 16:57:23 -07:00
Dashboard.hideLoadingMsg();
});
}
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');
}
2013-04-19 16:57:23 -07:00
$(document).on('pageinit', "#musicGenresPage", function () {
var page = this;
$('.radioSortBy', this).on('click', function () {
query.SortBy = this.getAttribute('data-sortby');
query.StartIndex = 0;
reloadItems(page);
});
$('.radioSortOrder', this).on('click', function () {
query.SortOrder = this.getAttribute('data-sortorder');
query.StartIndex = 0;
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);
});
}).on('pagebeforeshow', "#musicGenresPage", 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;
}
LibraryBrowser.loadSavedQueryValues('musicgenres', query);
2013-04-19 16:57:23 -07:00
reloadItems(this);
}).on('pageshow', "#musicGenresPage", function () {
2013-10-18 09:09:47 -07:00
updateFilterControls(this);
2013-04-19 16:57:23 -07:00
});
})(jQuery, document);