(function ($, document, apiClient) { var query = { StartIndex: 0 }; function getChannelsHtml(channels) { return LibraryBrowser.getPosterViewHtml({ items: channels, shape: "smallBackdrop", centerText: true }); } function showLoadingMessage(page) { $('.popupLoading', page).popup('open'); } function hideLoadingMessage(page) { $('.popupLoading', page).popup('close'); } function renderChannels(page, result) { var pagingHtml = LibraryBrowser.getQueryPagingHtml({ startIndex: query.StartIndex, limit: query.Limit, totalRecordCount: result.TotalRecordCount, viewButton: true, showLimit: false }); $('.listTopPaging', page).html(pagingHtml).trigger('create'); updateFilterControls(this); var html = getChannelsHtml(result.Items); html += pagingHtml; $('#items', page).html(html).trigger('create').createCardMenus(); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; reloadItems(page); }); $('.btnPreviousPage', page).on('click', function () { query.StartIndex -= query.Limit; reloadItems(page); }); LibraryBrowser.saveQueryValues('movies', query); } function reloadItems(page) { showLoadingMessage(page); apiClient.getLiveTvChannels(query).done(function (result) { renderChannels(page, result); hideLoadingMessage(page); }); } 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'); $('#selectPageSize', page).val(query.Limit).selectmenu('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); }); $('#selectPageSize', page).on('change', function () { query.Limit = parseInt(this.value); query.StartIndex = 0; reloadItems(page); }); }).on('pageshow', "#liveTvChannelsPage", function () { // Can't use pagebeforeshow here or the loading popup won't center correctly var page = this; 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; } query.UserId = Dashboard.getCurrentUserId(); LibraryBrowser.loadSavedQueryValues('movies', query); reloadItems(page); updateFilterControls(this); }); })(jQuery, document, ApiClient);