(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 += '';
for (var i = 0, length = groups.length; i < length; i++) {
html += getRecordingGroupHtml(groups[i]);
}
html += '
';
$('#recordingGroupItems', page).html(html).trigger('create');
Dashboard.hideLoadingMsg();
}
function renderRecordings(elem, recordings) {
if (recordings.length) {
elem.show();
} else {
elem.hide();
}
$('.recordingItems', elem).html(LibraryBrowser.getPosterViewHtml({
items: recordings,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
overlayText: true,
coverImage: true
})).createPosterItemHoverMenu();
}
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);