2013-12-14 18:17:57 -07:00
|
|
|
|
(function (window, $, document, apiClient) {
|
|
|
|
|
|
|
|
|
|
var currentItem;
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
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);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
function renderTimer(page, item) {
|
|
|
|
|
|
|
|
|
|
currentItem = item;
|
|
|
|
|
|
|
|
|
|
$('.itemName', page).html(item.Name);
|
|
|
|
|
|
2013-12-19 14:51:32 -07:00
|
|
|
|
$('#txtPrePaddingSeconds', page).val(item.PrePaddingSeconds / 60);
|
|
|
|
|
$('#txtPostPaddingSeconds', page).val(item.PostPaddingSeconds / 60);
|
2013-12-17 22:44:46 -07:00
|
|
|
|
$('#chkPrePaddingRequired', page).checked(item.IsPrePaddingRequired).checkboxradio('refresh');
|
|
|
|
|
$('#chkPostPaddingRequired', page).checked(item.IsPostPaddingRequired).checkboxradio('refresh');
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
2013-12-16 23:08:06 -07:00
|
|
|
|
$('#chkNewOnly', page).checked(item.RecordNewOnly).checkboxradio('refresh');
|
|
|
|
|
$('#chkAllChannels', page).checked(item.RecordAnyChannel).checkboxradio('refresh');
|
|
|
|
|
$('#chkAnyTime', page).checked(item.RecordAnyTime).checkboxradio('refresh');
|
|
|
|
|
|
2013-12-15 07:19:24 -07:00
|
|
|
|
var channelHtml = '';
|
|
|
|
|
|
|
|
|
|
if (item.RecurrenceType == 'NewProgramEventsAllChannels' || item.RecurrenceType == 'AllProgramEventsAllChannels') {
|
|
|
|
|
channelHtml += 'All Channels';
|
|
|
|
|
}
|
|
|
|
|
else if (item.ChannelId) {
|
|
|
|
|
channelHtml += '<a href="livetvchannel.html?id=' + item.ChannelId + '">' + item.ChannelName + '</a>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$('.channel', page).html('Channel: ' + channelHtml).trigger('create');
|
|
|
|
|
|
|
|
|
|
selectDays(page, item.Days);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('.time', page).html('Time: ' + LiveTvHelpers.getDisplayTime(item.StartDate));
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 07:19:24 -07:00
|
|
|
|
function selectDays(page, days) {
|
|
|
|
|
|
|
|
|
|
var daysOfWeek = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
|
|
|
|
|
|
|
|
|
for (var i = 0, length = daysOfWeek.length; i < length; i++) {
|
|
|
|
|
|
|
|
|
|
var day = daysOfWeek[i];
|
|
|
|
|
|
|
|
|
|
$('#chk' + day, page).checked(days.indexOf(day) != -1).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDays(page) {
|
|
|
|
|
|
|
|
|
|
var daysOfWeek = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
|
|
|
|
|
|
|
|
|
var days = [];
|
|
|
|
|
|
|
|
|
|
for (var i = 0, length = daysOfWeek.length; i < length; i++) {
|
|
|
|
|
|
|
|
|
|
var day = daysOfWeek[i];
|
|
|
|
|
|
|
|
|
|
if ($('#chk' + day, page).checked()) {
|
|
|
|
|
days.push(day);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return days;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
function onSubmit() {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
var form = this;
|
|
|
|
|
|
|
|
|
|
apiClient.getLiveTvSeriesTimer(currentItem.Id).done(function (item) {
|
|
|
|
|
|
2013-12-19 14:51:32 -07:00
|
|
|
|
item.PrePaddingSeconds = $('#txtPrePaddingSeconds', form).val() * 60;
|
|
|
|
|
item.PostPaddingSeconds = $('#txtPostPaddingSeconds', form).val() * 60;
|
2013-12-17 22:44:46 -07:00
|
|
|
|
item.IsPrePaddingRequired = $('#chkPrePaddingRequired', form).checked();
|
|
|
|
|
item.IsPostPaddingRequired = $('#chkPostPaddingRequired', form).checked();
|
2013-12-16 23:08:06 -07:00
|
|
|
|
|
|
|
|
|
item.RecordNewOnly = $('#chkNewOnly', form).checked();
|
|
|
|
|
item.RecordAnyChannel = $('#chkAllChannels', form).checked();
|
|
|
|
|
item.RecordAnyTime = $('#chkAnyTime', form).checked();
|
2013-12-15 07:19:24 -07:00
|
|
|
|
|
|
|
|
|
item.Days = getDays(form);
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
|
|
|
|
ApiClient.updateLiveTvSeriesTimer(item).done(function () {
|
|
|
|
|
Dashboard.alert('Timer Saved');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Disable default form submission
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
|
|
|
|
function renderRecordings(page, result) {
|
|
|
|
|
|
|
|
|
|
$('.recordingsTab', page).html(LibraryBrowser.getPosterViewHtml({
|
|
|
|
|
|
|
|
|
|
items: result.Items,
|
|
|
|
|
shape: "smallBackdrop",
|
|
|
|
|
showTitle: true,
|
|
|
|
|
overlayText: true,
|
|
|
|
|
coverImage: true
|
|
|
|
|
|
2014-01-16 20:13:12 -07:00
|
|
|
|
})).createPosterItemHoverMenu();
|
2014-01-07 22:25:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function renderSchedule(page, result) {
|
|
|
|
|
|
|
|
|
|
var timers = result.Items;
|
|
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
|
|
html += '<ul data-role="listview" data-inset="true" data-split-icon="delete">';
|
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
var index = '';
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
for (var i = 0, length = timers.length; i < length; i++) {
|
|
|
|
|
|
|
|
|
|
var timer = timers[i];
|
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
var startDateText = LibraryBrowser.getFutureDateText(parseISO8601Date(timer.StartDate, { toLocal: true }));
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
if (startDateText != index) {
|
|
|
|
|
html += '<li data-role="list-divider">' + startDateText + '</li>';
|
|
|
|
|
index = startDateText;
|
|
|
|
|
}
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
html += '<li><a href="livetvtimer.html?id=' + timer.Id + '">';
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
var program = timer.ProgramInfo;
|
|
|
|
|
var imgUrl;
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
if (program.ImageTags && program.ImageTags.Primary) {
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
imgUrl = ApiClient.getImageUrl(program.Id, {
|
|
|
|
|
height: 160,
|
|
|
|
|
tag: program.ImageTags.Primary,
|
|
|
|
|
type: "Primary"
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
imgUrl = "css/images/items/searchhintsv2/tv.png";
|
2014-01-07 22:25:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-10 22:49:18 -07:00
|
|
|
|
html += '<img src="css/images/items/searchhintsv2/tv.png" style="display:none;">';
|
|
|
|
|
html += '<div class="ui-li-thumb" style="background-image:url(\'' + imgUrl + '\');width:5em;height:5em;background-repeat:no-repeat;background-position:center center;background-size: cover;"></div>';
|
|
|
|
|
|
|
|
|
|
html += '<h3>';
|
|
|
|
|
html += program.EpisodeTitle || timer.Name;
|
|
|
|
|
html += '</h3>';
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
|
|
|
|
html += '<p>';
|
2014-01-20 09:09:53 -07:00
|
|
|
|
|
|
|
|
|
if (program.IsLive) {
|
|
|
|
|
html += '<span class="liveTvProgram">LIVE </span>';
|
|
|
|
|
}
|
|
|
|
|
else if (program.IsPremiere) {
|
|
|
|
|
html += '<span class="premiereTvProgram">PREMIERE </span>';
|
|
|
|
|
}
|
|
|
|
|
else if (program.IsSeries && !program.IsRepeat) {
|
|
|
|
|
html += '<span class="newTvProgram">NEW </span>';
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
html += LiveTvHelpers.getDisplayTime(timer.StartDate);
|
2014-01-10 22:49:18 -07:00
|
|
|
|
html += ' - ' + LiveTvHelpers.getDisplayTime(timer.EndDate);
|
2014-01-07 22:25:21 -07:00
|
|
|
|
html += '</p>';
|
2014-01-10 22:49:18 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (timer.SeriesTimerId) {
|
|
|
|
|
html += '<div class="ui-li-aside" style="right:0;">';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '<div class="timerCircle seriesTimerCircle"></div>';
|
|
|
|
|
html += '</div>';
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
html += '</a>';
|
|
|
|
|
|
|
|
|
|
html += '<a data-timerid="' + timer.Id + '" href="#" title="Cancel Recording" class="btnCancelTimer">Cancel Recording</a>';
|
|
|
|
|
|
|
|
|
|
html += '</li>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html += '</ul>';
|
|
|
|
|
|
|
|
|
|
var elem = $('.scheduleTab', page).html(html).trigger('create');
|
|
|
|
|
|
|
|
|
|
$('.btnCancelTimer', elem).on('click', function () {
|
|
|
|
|
|
|
|
|
|
deleteTimer(page, this.getAttribute('data-timerid'));
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
|
|
|
|
function reload(page) {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
var id = getParameterByName('id');
|
|
|
|
|
|
2013-12-15 07:19:24 -07:00
|
|
|
|
apiClient.getLiveTvSeriesTimer(id).done(function (result) {
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
|
|
|
|
renderTimer(page, result);
|
|
|
|
|
|
|
|
|
|
});
|
2014-01-07 22:25:21 -07:00
|
|
|
|
|
|
|
|
|
apiClient.getLiveTvRecordings({
|
|
|
|
|
|
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
|
|
|
seriesTimerId: id
|
|
|
|
|
|
|
|
|
|
}).done(function (result) {
|
|
|
|
|
|
|
|
|
|
renderRecordings(page, result);
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
apiClient.getLiveTvTimers({
|
|
|
|
|
|
|
|
|
|
seriesTimerId: id
|
|
|
|
|
|
|
|
|
|
}).done(function (result) {
|
|
|
|
|
|
|
|
|
|
renderSchedule(page, result);
|
|
|
|
|
|
|
|
|
|
});
|
2013-12-14 18:17:57 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
$(document).on('pageinit', "#liveTvSeriesTimerPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
$('.radioSeriesTimerTab', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
$('.tab', page).hide();
|
|
|
|
|
$('.' + this.value + 'Tab', page).show();
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}).on('pagebeforeshow', "#liveTvSeriesTimerPage", function () {
|
2013-12-14 18:17:57 -07:00
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
2014-01-07 22:25:21 -07:00
|
|
|
|
$('.radioSeriesTimerTab', page).checked(false).checkboxradio('refresh');
|
|
|
|
|
$('#radioSettings', page).checked(true).checkboxradio('refresh').trigger('change');
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
reload(page);
|
|
|
|
|
|
|
|
|
|
}).on('pagehide', "#liveTvSeriesTimerPage", function () {
|
|
|
|
|
|
|
|
|
|
currentItem = null;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function liveTvSeriesTimerPage() {
|
|
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
self.onSubmit = onSubmit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.LiveTvSeriesTimerPage = new liveTvSeriesTimerPage();
|
|
|
|
|
|
|
|
|
|
})(window, jQuery, document, ApiClient);
|