mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
138 lines
3.9 KiB
JavaScript
138 lines
3.9 KiB
JavaScript
define(['datetime', 'paper-icon-button-light', 'emby-button', 'listViewStyle'], 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 += '<div class="listItem">';
|
|
|
|
html += '<button type="button" is="emby-button" class="fab mini autoSize blue" item-icon><i class="md-icon">live_tv</i></button>';
|
|
|
|
html += '<div class="listItemBody">';
|
|
html += '<a class="clearLink" href="livetvseriestimer.html?id=' + timer.Id + '">';
|
|
html += '<h3>';
|
|
html += timer.Name;
|
|
html += '</h3>';
|
|
|
|
html += '<div class="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 class="secondary">';
|
|
if (timer.RecordAnyChannel) {
|
|
html += Globalize.translate('LabelAllChannels');
|
|
}
|
|
else if (timer.ChannelId) {
|
|
html += timer.ChannelName;
|
|
}
|
|
html += '</div>';
|
|
|
|
html += '</a>';
|
|
html += '</div>';
|
|
|
|
html += '<button type="button" is="paper-icon-button-light" data-seriestimerid="' + timer.Id + '" title="' + Globalize.translate('ButtonCancelSeries') + '" class="btnCancelSeries autoSize"><i class="md-icon">cancel</i></button>';
|
|
|
|
html += '</div>';
|
|
}
|
|
|
|
if (timers.length) {
|
|
html += '</div>';
|
|
}
|
|
|
|
var elem = context.querySelector('#items');
|
|
elem.innerHTML = html;
|
|
|
|
if (timers.length) {
|
|
elem.querySelector('.paperList').addEventListener('click', function (e) {
|
|
|
|
var btnCancelSeries = parentWithClass(e.target, 'btnCancelSeries');
|
|
if (btnCancelSeries) {
|
|
deleteSeriesTimer(context, btnCancelSeries.getAttribute('data-seriestimerid'));
|
|
}
|
|
});
|
|
}
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function parentWithClass(elem, className) {
|
|
|
|
while (!elem.classList || !elem.classList.contains(className)) {
|
|
elem = elem.parentNode;
|
|
|
|
if (!elem) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return elem;
|
|
}
|
|
|
|
function reload(context) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
ApiClient.getLiveTvSeriesTimers(query).then(function (result) {
|
|
|
|
renderTimers(context, result.Items);
|
|
});
|
|
}
|
|
|
|
return function (view, params, tabContent) {
|
|
|
|
var self = this;
|
|
|
|
self.renderTab = function () {
|
|
|
|
reload(tabContent);
|
|
};
|
|
};
|
|
|
|
}); |