mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
123 lines
3.4 KiB
JavaScript
123 lines
3.4 KiB
JavaScript
define(['datetime', 'jQuery', 'paper-icon-button-light'], function (datetime, $) {
|
|
|
|
var query = {
|
|
|
|
SortBy: "SortName",
|
|
SortOrder: "Ascending"
|
|
};
|
|
|
|
function deleteSeriesTimer(context, id) {
|
|
|
|
require(['confirm'], function (confirm) {
|
|
|
|
confirm(Globalize.translate('MessageConfirmSeriesCancellation'), Globalize.translate('HeaderConfirmSeriesCancellation')).then(function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
ApiClient.cancelLiveTvSeriesTimer(id).then(function () {
|
|
|
|
require(['toast'], function (toast) {
|
|
toast(Globalize.translate('MessageSeriesCancelled'));
|
|
});
|
|
|
|
reload(context);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function renderTimers(context, timers) {
|
|
|
|
var html = '';
|
|
|
|
if (timers.length) {
|
|
html += '<div class="paperList">';
|
|
}
|
|
|
|
for (var i = 0, length = timers.length; i < length; i++) {
|
|
|
|
var timer = timers[i];
|
|
|
|
html += '<paper-icon-item>';
|
|
|
|
html += '<paper-fab mini icon="live-tv" item-icon></paper-fab>';
|
|
|
|
html += '<paper-item-body three-line>';
|
|
html += '<a class="clearLink" href="livetvseriestimer.html?id=' + timer.Id + '">';
|
|
|
|
html += '<div>';
|
|
html += timer.Name;
|
|
html += '</div>';
|
|
|
|
html += '<div secondary>';
|
|
if (timer.DayPattern) {
|
|
html += timer.DayPattern;
|
|
}
|
|
else {
|
|
var days = timer.Days || [];
|
|
|
|
html += days.join(', ');
|
|
}
|
|
|
|
if (timer.RecordAnyTime) {
|
|
|
|
html += ' - ' + Globalize.translate('LabelAnytime');
|
|
} else {
|
|
html += ' - ' + datetime.getDisplayTime(timer.StartDate);
|
|
}
|
|
html += '</div>';
|
|
|
|
html += '<div secondary>';
|
|
if (timer.RecordAnyChannel) {
|
|
html += Globalize.translate('LabelAllChannels');
|
|
}
|
|
else if (timer.ChannelId) {
|
|
html += timer.ChannelName;
|
|
}
|
|
html += '</div>';
|
|
html += '</a>';
|
|
|
|
html += '</paper-item-body>';
|
|
|
|
html += '<button type="button" is="paper-icon-button-light" data-seriestimerid="' + timer.Id + '" title="' + Globalize.translate('ButtonCancelSeries') + '" class="btnCancelSeries"><iron-icon icon="cancel"></iron-icon></button>';
|
|
|
|
html += '</paper-icon-item>';
|
|
}
|
|
|
|
if (timers.length) {
|
|
html += '</div>';
|
|
}
|
|
|
|
var elem = $('#items', context).html(html);
|
|
|
|
$('.btnCancelSeries', elem).on('click', function () {
|
|
|
|
deleteSeriesTimer(context, this.getAttribute('data-seriestimerid'));
|
|
|
|
});
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function reload(context) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
ApiClient.getLiveTvSeriesTimers(query).then(function (result) {
|
|
|
|
require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () {
|
|
renderTimers(context, result.Items);
|
|
});
|
|
});
|
|
}
|
|
|
|
return function (view, params, tabContent) {
|
|
|
|
var self = this;
|
|
|
|
self.renderTab = function () {
|
|
|
|
reload(tabContent);
|
|
};
|
|
};
|
|
|
|
}); |