mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add a new endpoint param IsFavorite and use it for reports
This commit is contained in:
parent
93f483f0ae
commit
4040c6d8d0
2 changed files with 38 additions and 6 deletions
|
@ -513,6 +513,19 @@
|
|||
$('#chkFutureEpisode', page).checked(query.IsUnaired == true).checkboxradio('refresh');
|
||||
|
||||
$('#selectIncludeItemTypes').val(query.IncludeItemTypes);
|
||||
|
||||
// isfavorite
|
||||
if (query.IsFavorite == true) {
|
||||
$('#isFavorite').val("true");
|
||||
}
|
||||
else if (query.IsFavorite == false) {
|
||||
$('#isFavorite').val("false");
|
||||
}
|
||||
else {
|
||||
$('#isFavorite').val("-");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
var filtersLoaded;
|
||||
|
@ -601,6 +614,21 @@
|
|||
reloadItems(page);
|
||||
});
|
||||
|
||||
$('#isFavorite', page).on('change', function () {
|
||||
|
||||
if (this.value == "true") {
|
||||
query.IsFavorite = true;
|
||||
}
|
||||
else if (this.value == "false") {
|
||||
query.IsFavorite = false;
|
||||
}
|
||||
else {
|
||||
query.IsFavorite = null;
|
||||
}
|
||||
query.StartIndex = 0;
|
||||
reloadItems(page);
|
||||
});
|
||||
|
||||
$('.chkStandardFilter', this).on('change', function () {
|
||||
|
||||
var filterName = this.getAttribute('data-filter');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue