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

128 lines
3.3 KiB
JavaScript
Raw Normal View History

2013-11-20 16:08:12 -05:00
(function ($, document, apiClient) {
2014-01-10 08:52:01 -05:00
var query = {
StartIndex: 0
};
2013-11-20 16:08:12 -05:00
function getChannelsHtml(channels) {
return LibraryBrowser.getPosterViewHtml({
items: channels,
shape: "smallBackdrop",
centerText: true
});
2013-11-20 16:08:12 -05:00
}
function showLoadingMessage(page) {
$('.popupLoading', page).popup('open');
}
function hideLoadingMessage(page) {
$('.popupLoading', page).popup('close');
}
2014-01-10 08:52:01 -05:00
function renderChannels(page, result) {
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
updateFilterControls(this);
2014-01-10 08:52:01 -05:00
var html = getChannelsHtml(result.Items);
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
$('#items', page).html(html).trigger('create').createPosterItemMenus();
2013-11-20 16:08:12 -05:00
2014-01-10 08:52:01 -05:00
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
$('.btnPreviousPage', page).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});
$('.selectPageSize', page).on('change', function () {
query.Limit = parseInt(this.value);
query.StartIndex = 0;
reloadItems(page);
});
LibraryBrowser.saveQueryValues('movies', query);
}
function reloadItems(page) {
showLoadingMessage(page);
2014-01-10 08:52:01 -05:00
apiClient.getLiveTvChannels(query).done(function (result) {
renderChannels(page, result);
hideLoadingMessage(page);
2014-01-10 08:52:01 -05:00
});
2013-11-20 16:08:12 -05:00
}
function updateFilterControls(page) {
$('#chkFavorite', page).checked(query.IsFavorite == true).checkboxradio('refresh');
$('#chkLikes', page).checked(query.IsLiked == true).checkboxradio('refresh');
$('#chkDislikes', page).checked(query.IsDisliked == true).checkboxradio('refresh');
}
$(document).on('pageinit', "#liveTvChannelsPage", function () {
var page = this;
$('#chkFavorite', this).on('change', function () {
query.StartIndex = 0;
query.IsFavorite = this.checked ? true : null;
reloadItems(page);
});
$('#chkLikes', this).on('change', function () {
query.StartIndex = 0;
query.IsLiked = this.checked ? true : null;
reloadItems(page);
});
$('#chkDislikes', this).on('change', function () {
query.StartIndex = 0;
query.IsDisliked = this.checked ? true : null;
reloadItems(page);
});
}).on('pagebeforeshow', "#liveTvChannelsPage", function () {
2013-11-20 16:08:12 -05:00
var page = this;
2014-01-10 08:52:01 -05:00
var limit = LibraryBrowser.getDefaultPageSize();
2013-11-25 21:53:48 -05:00
2014-01-10 08:52:01 -05:00
// 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-11-20 16:08:12 -05:00
2014-01-10 08:52:01 -05:00
query.UserId = Dashboard.getCurrentUserId();
LibraryBrowser.loadSavedQueryValues('movies', query);
reloadItems(page);
}).on('pageshow', "#liveTvChannelsPage", function () {
updateFilterControls(this);
2013-11-20 16:08:12 -05:00
});
})(jQuery, document, ApiClient);