2016-03-18 21:26:17 -07:00
|
|
|
|
define(['jQuery'], function ($) {
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
function getRecordingGroupHtml(group) {
|
2013-11-29 09:58:24 -07:00
|
|
|
|
|
2013-11-27 12:04:19 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '<paper-icon-item>';
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2015-10-26 11:55:46 -07:00
|
|
|
|
html += '<paper-fab mini class="blue" icon="live-tv" item-icon></paper-fab>';
|
2015-09-07 21:22:38 -07:00
|
|
|
|
|
|
|
|
|
html += '<paper-item-body two-line>';
|
|
|
|
|
html += '<a href="livetvrecordinglist.html?groupid=' + group.Id + '" class="clearLink">';
|
|
|
|
|
|
|
|
|
|
html += '<div>';
|
2014-01-01 11:26:31 -07:00
|
|
|
|
html += group.Name;
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '</div>';
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '<div secondary>';
|
|
|
|
|
if (group.RecordingCount == 1) {
|
|
|
|
|
html += Globalize.translate('ValueItemCount', group.RecordingCount);
|
|
|
|
|
} else {
|
|
|
|
|
html += Globalize.translate('ValueItemCountPlural', group.RecordingCount);
|
|
|
|
|
}
|
|
|
|
|
html += '</div>';
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '</a>';
|
|
|
|
|
html += '</paper-item-body>';
|
|
|
|
|
html += '</paper-icon-item>';
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
return html;
|
|
|
|
|
}
|
2013-11-30 23:25:19 -07:00
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
function renderRecordingGroups(page, groups) {
|
|
|
|
|
|
2013-12-28 16:09:24 -07:00
|
|
|
|
if (groups.length) {
|
|
|
|
|
$('#recordingGroups', page).show();
|
|
|
|
|
} else {
|
|
|
|
|
$('#recordingGroups', page).hide();
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '<div class="paperList">';
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
for (var i = 0, length = groups.length; i < length; i++) {
|
|
|
|
|
|
|
|
|
|
html += getRecordingGroupHtml(groups[i]);
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
html += '</div>';
|
2013-12-28 14:37:01 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
page.querySelector('#recordingGroupItems').innerHTML = html;
|
2013-12-28 14:37:01 -07:00
|
|
|
|
|
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-01 11:26:31 -07:00
|
|
|
|
function renderRecordings(elem, recordings) {
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2013-12-28 16:09:24 -07:00
|
|
|
|
if (recordings.length) {
|
2015-09-07 21:22:38 -07:00
|
|
|
|
elem.classList.remove('hide');
|
2013-12-28 16:09:24 -07:00
|
|
|
|
} else {
|
2015-09-07 21:22:38 -07:00
|
|
|
|
elem.classList.add('hide');
|
2013-12-28 16:09:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
var recordingItems = elem.querySelector('.recordingItems');
|
|
|
|
|
recordingItems.innerHTML = LibraryBrowser.getPosterViewHtml({
|
2013-12-28 16:09:24 -07:00
|
|
|
|
items: recordings,
|
2014-05-29 07:19:12 -07:00
|
|
|
|
shape: "auto",
|
2013-12-28 16:09:24 -07:00
|
|
|
|
showTitle: true,
|
|
|
|
|
showParentTitle: true,
|
2015-08-22 08:54:29 -07:00
|
|
|
|
centerText: true,
|
2015-04-11 18:38:38 -07:00
|
|
|
|
coverImage: true,
|
2016-01-19 11:27:55 -07:00
|
|
|
|
lazy: true,
|
|
|
|
|
overlayPlayButton: true
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ImageLoader.lazyChildren(recordingItems);
|
2013-12-28 16:09:24 -07:00
|
|
|
|
}
|
2013-11-29 09:58:24 -07:00
|
|
|
|
|
2013-11-27 12:04:19 -07:00
|
|
|
|
function reload(page) {
|
|
|
|
|
|
2013-11-29 09:58:24 -07:00
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
2014-10-15 20:26:39 -07:00
|
|
|
|
ApiClient.getLiveTvRecordings({
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2014-01-01 11:26:31 -07:00
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
2016-01-19 12:03:46 -07:00
|
|
|
|
IsInProgress: true,
|
|
|
|
|
Fields: 'CanDelete'
|
2013-12-28 14:37:01 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}).then(function (result) {
|
2013-12-28 14:37:01 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
renderRecordings(page.querySelector('#activeRecordings'), result.Items);
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
|
|
|
|
});
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2014-10-15 20:26:39 -07:00
|
|
|
|
ApiClient.getLiveTvRecordings({
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
2014-01-12 22:41:00 -07:00
|
|
|
|
limit: 12,
|
2016-01-19 12:03:46 -07:00
|
|
|
|
IsInProgress: false,
|
2016-02-26 10:15:06 -07:00
|
|
|
|
Fields: 'CanDelete,PrimaryImageAspectRatio'
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}).then(function (result) {
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
2015-09-07 21:22:38 -07:00
|
|
|
|
renderRecordings(page.querySelector('#latestRecordings'), result.Items);
|
2014-01-01 11:26:31 -07:00
|
|
|
|
});
|
|
|
|
|
|
2014-10-15 20:26:39 -07:00
|
|
|
|
ApiClient.getLiveTvRecordingGroups({
|
2014-01-01 11:26:31 -07:00
|
|
|
|
|
|
|
|
|
userId: Dashboard.getCurrentUserId()
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}).then(function (result) {
|
2013-12-28 16:09:24 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () {
|
|
|
|
|
renderRecordingGroups(page, result.Items);
|
|
|
|
|
});
|
2013-12-28 16:09:24 -07:00
|
|
|
|
});
|
2013-11-27 12:04:19 -07:00
|
|
|
|
}
|
2013-11-29 09:58:24 -07:00
|
|
|
|
|
2015-08-18 08:52:48 -07:00
|
|
|
|
window.LiveTvPage.renderRecordingsTab = function (page, tabContent) {
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2015-08-18 08:52:48 -07:00
|
|
|
|
if (LibraryBrowser.needsRefresh(tabContent)) {
|
|
|
|
|
reload(tabContent);
|
|
|
|
|
}
|
|
|
|
|
};
|
2013-11-27 12:04:19 -07:00
|
|
|
|
|
2016-03-18 21:26:17 -07:00
|
|
|
|
});
|