(function ($, document, apiClient) { function deleteTimer(page, id) { Dashboard.confirm("Are you sure you wish to cancel this recording?", "Confirm Recording Cancellation", function (result) { if (result) { Dashboard.showLoadingMsg(); ApiClient.cancelLiveTvTimer(id).done(function () { Dashboard.alert('Recording cancelled.'); reload(page); }); } }); } function renderTimers(page, timers) { var html = ''; html += '
'; html += LiveTvHelpers.getDisplayTime(timer.StartDate); html += ' - ' + LiveTvHelpers.getDisplayTime(timer.EndDate); html += '
'; if (timer.SeriesTimerId) { html += ''; //html += ' | Name | '; //html += 'Channel | '; //html += 'Date | '; //html += 'Time | '; //html += 'Length | '; //html += 'Status | '; //html += 'Series | '; //html += '
---|---|---|---|---|---|---|---|
'; // html += ''; // html += ' | '; // html += ''; // html += '' + timer.Name + ''; // html += ' | '; // html += ''; // if (timer.ChannelId) { // html += '' + timer.ChannelName + ''; // } // html += ' | '; // var startDate = timer.StartDate; // try { // startDate = parseISO8601Date(startDate, { toLocal: true }); // } catch (err) { // } // html += '' + startDate.toLocaleDateString() + ' | '; // html += '' + LiveTvHelpers.getDisplayTime(timer.StartDate) + ' | '; // var minutes = timer.RunTimeTicks / 600000000; // minutes = minutes || 1; // html += '' + Math.round(minutes) + 'min | '; // html += ''; // if (timer.Status == 'ConflictedNotOk' || timer.Status == 'Error') { // html += ''; // html += timer.Status; // html += ''; // } else { // html += timer.Status; // } // html += ' | '; // html += ''; // if (timer.SeriesTimerId) { // html += ''; // html += ''; // html += ''; // html += ''; // html += ''; // } // html += ' | '; // html += '