jellyfin-web/dashboard-ui/scripts/livetvrecordings.js
2015-08-02 19:47:31 -04:00

121 lines
2.7 KiB
JavaScript

(function ($, document) {
function getRecordingGroupHtml(group) {
var html = '';
html += '<li><a href="livetvrecordinglist.html?groupid=' + group.Id + '">';
html += '<h3>';
html += group.Name;
html += '</h3>';
html += '<span class="ui-li-count">' + group.RecordingCount + '</span>';
html += '</li>';
return html;
}
function renderRecordingGroups(page, groups) {
if (groups.length) {
$('#recordingGroups', page).show();
} else {
$('#recordingGroups', page).hide();
}
var html = '';
html += '<ul data-role="listview" data-inset="true">';
for (var i = 0, length = groups.length; i < length; i++) {
html += getRecordingGroupHtml(groups[i]);
}
html += '</ul>';
$('#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: "auto",
showTitle: true,
showParentTitle: true,
overlayText: screenWidth >= 600,
coverImage: true,
lazy: true
})).lazyChildren();
}
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('pagebeforeshowready', "#liveTvSuggestedPage", function () {
var page = this;
$(page.querySelector('neon-animated-pages')).on('tabchange', function () {
if (parseInt(this.selected) == 3) {
var tabContent = page.querySelector('.recordingsTabContent');
if (LibraryBrowser.needsRefresh(tabContent)) {
reload(tabContent);
}
}
});
});
})(jQuery, document);