mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
(function ($, document) {
|
|
|
|
// The base query options
|
|
var query = {
|
|
|
|
StartIndex: 0
|
|
};
|
|
|
|
function reloadItems(page) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
query.UserId = Dashboard.getCurrentUserId();
|
|
|
|
ApiClient.getJSON(ApiClient.getUrl("Channels", query)).done(function (result) {
|
|
|
|
// Scroll back up so they can see the results from the beginning
|
|
$(document).scrollTop(0);
|
|
|
|
var html = '';
|
|
|
|
updateFilterControls(page);
|
|
|
|
html = LibraryBrowser.getPosterViewHtml({
|
|
items: result.Items,
|
|
shape: "backdrop",
|
|
context: 'channels',
|
|
showTitle: true,
|
|
centerText: true,
|
|
preferThumb: true
|
|
});
|
|
|
|
$('#items', page).html(html).lazyChildren();
|
|
|
|
LibraryBrowser.saveQueryValues('channels', query);
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
});
|
|
}
|
|
|
|
function updateFilterControls(page) {
|
|
|
|
}
|
|
|
|
$(document).on('pagebeforeshow', "#channelsPage", function () {
|
|
|
|
LibraryBrowser.loadSavedQueryValues('channels', query);
|
|
|
|
reloadItems(this);
|
|
|
|
}).on('pageshow', "#channelsPage", function () {
|
|
|
|
updateFilterControls(this);
|
|
});
|
|
|
|
})(jQuery, document); |