(function ($, document, apiClient) { function getRecordingGroupHtml(group) { var html = ''; html += '
  • '; html += '

    '; html += group.Name; html += '

    '; html += '' + group.RecordingCount + ''; html += '
  • '; return html; } function renderRecordingGroups(page, groups) { if (groups.length) { $('#recordingGroups', page).show(); } else { $('#recordingGroups', page).hide(); } var html = ''; html += ''; $('#recordingGroupItems', page).html(html).trigger('create'); Dashboard.hideLoadingMsg(); } function renderRecordings(elem, recordings) { var screenWidth = $(window).width(); if (recordings.length) { elem.show(); } else { elem.hide(); } $('.recordingItems', elem).html(LibraryBrowser.getPosterViewHtml({ items: recordings, shape: "backdrop", showTitle: true, showParentTitle: true, overlayText: screenWidth >= 600, coverImage: true })).createPosterItemMenus(); } function reload(page) { Dashboard.showLoadingMsg(); apiClient.getLiveTvRecordings({ userId: Dashboard.getCurrentUserId(), IsInProgress: true }).done(function (result) { renderRecordings($('#activeRecordings', page), result.Items); }); apiClient.getLiveTvRecordings({ userId: Dashboard.getCurrentUserId(), limit: 12, IsInProgress: false }).done(function (result) { renderRecordings($('#latestRecordings', page), result.Items); }); apiClient.getLiveTvRecordingGroups({ userId: Dashboard.getCurrentUserId() }).done(function (result) { renderRecordingGroups(page, result.Items); }); } $(document).on('pagebeforeshow', "#liveTvRecordingsPage", function () { var page = this; reload(page); }); })(jQuery, document, ApiClient);