jellyfin-web/dashboard-ui/scripts/livetvguide.js

643 lines
17 KiB
JavaScript
Raw Normal View History

2014-10-15 20:26:39 -07:00
(function ($, document) {
2014-01-05 18:59:21 -07:00
2014-01-06 06:33:14 -07:00
// 30 mins
2014-01-06 09:48:43 -07:00
var cellCurationMinutes = 30;
var cellDurationMs = cellCurationMinutes * 60 * 1000;
var gridLocalStartDateMs;
var gridLocalEndDateMs;
2014-01-06 06:33:14 -07:00
var currentDate;
2014-01-10 06:52:01 -07:00
var channelQuery = {
StartIndex: 0,
Limit: 20
};
var channelsPromise;
2014-01-05 18:59:21 -07:00
function showLoadingMessage(page) {
$('.popupLoading', page).popup('open');
}
function hideLoadingMessage(page) {
$('.popupLoading', page).popup('close');
}
2014-01-05 18:59:21 -07:00
function normalizeDateToTimeslot(date) {
2014-01-06 09:48:43 -07:00
var minutesOffset = date.getMinutes() - cellCurationMinutes;
2014-01-05 18:59:21 -07:00
if (minutesOffset >= 0) {
2014-01-06 09:48:43 -07:00
date.setHours(date.getHours(), cellCurationMinutes, 0, 0);
2014-01-05 18:59:21 -07:00
} else {
2014-01-06 09:48:43 -07:00
date.setHours(date.getHours(), 0, 0, 0);
2014-01-05 18:59:21 -07:00
}
return date;
}
2014-01-15 15:19:45 -07:00
2014-01-10 06:52:01 -07:00
function reloadChannels(page) {
channelsPromise = null;
reloadGuide(page);
}
2014-01-05 18:59:21 -07:00
function reloadGuide(page) {
showLoadingMessage(page);
2014-01-05 18:59:21 -07:00
2014-01-10 06:52:01 -07:00
channelQuery.userId = Dashboard.getCurrentUserId();
2014-01-05 18:59:21 -07:00
2014-10-15 20:26:39 -07:00
channelsPromise = channelsPromise || ApiClient.getLiveTvChannels(channelQuery);
2014-01-05 18:59:21 -07:00
var date = currentDate;
var nextDay = new Date(date.getTime());
nextDay.setHours(0, 0, 0, 0);
nextDay.setDate(nextDay.getDate() + 1);
2014-01-10 22:49:18 -07:00
console.log(nextDay);
2014-01-15 15:19:45 -07:00
channelsPromise.done(function (channelsResult) {
2014-01-05 18:59:21 -07:00
2014-10-15 20:26:39 -07:00
ApiClient.getLiveTvPrograms({
2014-01-10 06:52:01 -07:00
UserId: Dashboard.getCurrentUserId(),
MaxStartDate: nextDay.toISOString(),
MinEndDate: date.toISOString(),
2014-01-15 15:19:45 -07:00
channelIds: channelsResult.Items.map(function (c) {
2014-01-10 06:52:01 -07:00
return c.Id;
}).join(',')
2014-01-15 15:19:45 -07:00
}).done(function (programsResult) {
2014-01-10 06:52:01 -07:00
renderGuide(page, date, channelsResult.Items, programsResult.Items);
hideLoadingMessage(page);
2014-01-10 06:52:01 -07:00
});
2014-01-15 15:19:45 -07:00
2014-01-10 06:52:01 -07:00
var channelPagingHtml = LibraryBrowser.getPagingHtml(channelQuery, channelsResult.TotalRecordCount, false, [10, 20, 30, 50, 100]);
$('.channelPaging', page).html(channelPagingHtml).trigger('create');
$('.btnNextPage', page).on('click', function () {
channelQuery.StartIndex += channelQuery.Limit;
reloadChannels(page);
});
$('.btnPreviousPage', page).on('click', function () {
channelQuery.StartIndex -= channelQuery.Limit;
reloadChannels(page);
});
$('.selectPageSize', page).on('change', function () {
channelQuery.Limit = parseInt(this.value);
channelQuery.StartIndex = 0;
reloadChannels(page);
});
2014-01-05 18:59:21 -07:00
});
}
function getTimeslotHeadersHtml(date) {
var html = '';
date = new Date(date.getTime());
var dateNumber = date.getDate();
while (date.getDate() == dateNumber) {
html += '<div class="timeslotHeader">';
2014-01-06 06:33:14 -07:00
html += '<div class="timeslotHeaderInner">';
2014-01-05 18:59:21 -07:00
html += LiveTvHelpers.getDisplayTime(date);
html += '</div>';
2014-01-06 06:33:14 -07:00
html += '</div>';
2014-01-05 18:59:21 -07:00
// Add 30 mins
2014-01-06 06:33:14 -07:00
date.setTime(date.getTime() + cellDurationMs);
2014-01-05 18:59:21 -07:00
}
return html;
}
2014-01-06 06:33:14 -07:00
function findProgramStartingInCell(programs, startIndex, cellStart, cellEnd, cellIndex) {
for (var i = startIndex, length = programs.length; i < length; i++) {
var program = programs[i];
if (!program.StartDateLocal) {
try {
program.StartDateLocal = parseISO8601Date(program.StartDate, { toLocal: true });
} catch (err) {
}
}
if (!program.EndDateLocal) {
try {
program.EndDateLocal = parseISO8601Date(program.EndDate, { toLocal: true });
} catch (err) {
}
}
var localTime = program.StartDateLocal.getTime();
if ((localTime >= cellStart || cellIndex == 0) && localTime < cellEnd && program.EndDateLocal > cellStart) {
2014-10-22 21:26:01 -07:00
return program;
2014-01-06 06:33:14 -07:00
}
}
return null;
}
2014-01-06 09:48:43 -07:00
function getProgramWidth(program) {
var end = Math.min(gridLocalEndDateMs, program.EndDateLocal.getTime());
var start = Math.max(gridLocalStartDateMs, program.StartDateLocal.getTime());
var ms = end - start;
var width = 100 * ms / cellDurationMs;
// Round to the nearest cell
var overlap = width % 100;
if (overlap) {
width = width - overlap + 100;
}
if (width > 300) {
width += (width / 100) - 3;
}
return width;
}
2014-01-06 06:33:14 -07:00
function getChannelProgramsHtml(page, date, channel, programs) {
2014-01-05 18:59:21 -07:00
var html = '';
2014-01-06 06:33:14 -07:00
var dateNumber = date.getDate();
programs = programs.filter(function (curr) {
return curr.ChannelId == channel.Id;
});
2014-01-05 18:59:21 -07:00
2014-01-06 06:33:14 -07:00
html += '<div class="channelPrograms">';
2014-01-05 18:59:21 -07:00
2014-01-06 06:33:14 -07:00
var cellIndex = 0;
2014-01-06 09:48:43 -07:00
2014-01-06 06:33:14 -07:00
while (date.getDate() == dateNumber) {
// Add 30 mins
var cellEndDate = new Date(date.getTime() + cellDurationMs);
2014-10-22 21:26:01 -07:00
var program = findProgramStartingInCell(programs, 0, date, cellEndDate, cellIndex);
2014-01-06 06:33:14 -07:00
html += '<div class="timeslotCell">';
2014-01-06 09:48:43 -07:00
var cellTagName;
var href;
2014-01-06 06:33:14 -07:00
var cssClass = "timeslotCellInner";
2014-01-06 09:48:43 -07:00
var style;
2014-01-15 15:19:45 -07:00
var dataProgramId;
2014-01-06 06:33:14 -07:00
if (program) {
if (program.IsKids) {
cssClass += " childProgramInfo";
2014-01-06 09:48:43 -07:00
} else if (program.IsSports) {
2014-01-06 06:33:14 -07:00
cssClass += " sportsProgramInfo";
2014-01-06 09:48:43 -07:00
} else if (program.IsNews) {
2014-01-06 06:33:14 -07:00
cssClass += " newsProgramInfo";
2014-01-06 09:48:43 -07:00
} else if (program.IsMovie) {
2014-01-06 06:33:14 -07:00
cssClass += " movieProgramInfo";
}
2014-01-06 09:48:43 -07:00
else {
cssClass += " plainProgramInfo";
}
cssClass += " timeslotCellInnerWithProgram";
cellTagName = "a";
href = ' href="livetvprogram.html?id=' + program.Id + '"';
var width = getProgramWidth(program);
if (width && width != 100) {
style = ' style="width:' + width + '%;"';
} else {
style = '';
}
2014-01-15 15:19:45 -07:00
dataProgramId = ' data-programid="' + program.Id + '"';
2014-01-06 09:48:43 -07:00
} else {
cellTagName = "div";
href = '';
style = '';
2014-01-15 15:19:45 -07:00
dataProgramId = '';
2014-01-06 06:33:14 -07:00
}
2014-01-15 15:19:45 -07:00
html += '<' + cellTagName + dataProgramId + ' class="' + cssClass + '"' + href + style + '>';
2014-01-06 09:48:43 -07:00
2014-01-06 06:33:14 -07:00
if (program) {
html += '<div class="guideProgramName">';
html += program.Name;
2014-01-10 06:52:01 -07:00
2014-01-06 06:33:14 -07:00
html += '</div>';
2014-01-06 09:48:43 -07:00
2014-01-06 06:33:14 -07:00
html += '<div class="guideProgramTime">';
if (program.IsLive) {
2014-08-04 20:41:56 -07:00
html += '<span class="liveTvProgram">'+Globalize.translate('LabelLiveProgram')+'&nbsp;&nbsp;</span>';
2014-01-06 06:33:14 -07:00
}
else if (program.IsPremiere) {
2014-08-04 20:41:56 -07:00
html += '<span class="premiereTvProgram">'+Globalize.translate('LabelPremiereProgram')+'&nbsp;&nbsp;</span>';
2014-01-06 06:33:14 -07:00
}
else if (program.IsSeries && !program.IsRepeat) {
2014-08-04 20:41:56 -07:00
html += '<span class="newTvProgram">'+Globalize.translate('LabelNewProgram')+'&nbsp;&nbsp;</span>';
2014-01-06 06:33:14 -07:00
}
html += LiveTvHelpers.getDisplayTime(program.StartDateLocal);
html += ' - ';
html += LiveTvHelpers.getDisplayTime(program.EndDateLocal);
2014-01-06 09:48:43 -07:00
if (program.SeriesTimerId) {
html += '<div class="timerCircle seriesTimerCircle"></div>';
html += '<div class="timerCircle seriesTimerCircle"></div>';
html += '<div class="timerCircle seriesTimerCircle"></div>';
}
else if (program.TimerId) {
html += '<div class="timerCircle"></div>';
}
2014-01-06 06:33:14 -07:00
html += '</div>';
} else {
html += '&nbsp;';
}
2014-01-06 09:48:43 -07:00
html += '</' + cellTagName + '>';
2014-01-06 06:33:14 -07:00
html += '</div>';
date = cellEndDate;
cellIndex++;
}
2014-01-05 18:59:21 -07:00
html += '</div>';
return html;
}
2014-01-06 06:33:14 -07:00
function renderPrograms(page, date, channels, programs) {
2014-01-05 18:59:21 -07:00
var html = [];
for (var i = 0, length = channels.length; i < length; i++) {
2014-01-06 06:33:14 -07:00
html.push(getChannelProgramsHtml(page, date, channels[i], programs));
2014-01-05 18:59:21 -07:00
}
2014-01-15 15:19:45 -07:00
$('.programGrid', page).html(html.join('')).scrollTop(0).scrollLeft(0)
.createGuideHoverMenu('.timeslotCellInnerWithProgram');
2014-01-06 06:33:14 -07:00
}
function renderChannelHeaders(page, channels) {
var html = '';
for (var i = 0, length = channels.length; i < length; i++) {
var channel = channels[i];
html += '<div class="channelHeaderCellContainer">';
2014-01-06 09:48:43 -07:00
html += '<div class="channelHeaderCell">';
html += '<a class="channelHeaderCellInner" href="livetvchannel.html?id=' + channel.Id + '">';
2014-01-06 11:25:33 -07:00
html += '<div class="guideChannelInfo">' + channel.Name + '<br/>' + channel.Number + '</div>';
if (channel.ImageTags.Primary) {
var url = ApiClient.getScaledImageUrl(channel.Id, {
maxHeight: 35,
maxWidth: 60,
2014-01-06 11:25:33 -07:00
tag: channel.ImageTags.Primary,
type: "Primary"
});
html += '<img class="guideChannelImage" src="' + url + '" />';
}
2014-01-06 09:48:43 -07:00
html += '</a>';
2014-01-06 06:33:14 -07:00
html += '</div>';
html += '</div>';
}
$('.channelList', page).html(html);
2014-01-05 18:59:21 -07:00
}
function renderGuide(page, date, channels, programs) {
2014-01-06 06:33:14 -07:00
renderChannelHeaders(page, channels);
$('.timeslotHeaders', page).html(getTimeslotHeadersHtml(date));
renderPrograms(page, date, channels, programs);
}
function onProgramGridScroll(page, elem) {
var grid = $(elem);
grid.prev().scrollTop(grid.scrollTop());
$('.timeslotHeaders', page).scrollLeft(grid.scrollLeft());
2014-01-05 18:59:21 -07:00
}
function changeDate(page, date) {
currentDate = normalizeDateToTimeslot(date);
gridLocalStartDateMs = currentDate.getTime();
var clone = new Date(gridLocalStartDateMs);
clone.setHours(0, 0, 0, 0);
clone.setDate(clone.getDate() + 1);
gridLocalEndDateMs = clone.getTime() - 1;
reloadGuide(page);
}
function setDateRange(page, guideInfo) {
var today = new Date();
today.setHours(today.getHours(), 0, 0, 0);
var start = parseISO8601Date(guideInfo.StartDate, { toLocal: true });
var end = parseISO8601Date(guideInfo.EndDate, { toLocal: true });
start.setHours(0, 0, 0, 0);
end.setHours(0, 0, 0, 0);
2014-08-16 22:38:13 -07:00
if (start.getTime() >= end.getTime()) {
end.setDate(start.getDate() + 1);
}
start = new Date(Math.max(today, start));
var html = '';
while (start <= end) {
html += '<option value="' + start.getTime() + '">' + LibraryBrowser.getFutureDateText(start) + '</option>';
start.setDate(start.getDate() + 1);
start.setHours(0, 0, 0, 0);
}
var elem = $('#selectDate', page).html(html).selectmenu('refresh');
2014-01-10 06:52:01 -07:00
if (currentDate) {
elem.val(currentDate.getTime()).selectmenu('refresh');
}
var val = elem.val();
var date = new Date();
2014-08-16 22:38:13 -07:00
if (val) {
date.setTime(parseInt(val));
}
changeDate(page, date);
}
2014-01-06 06:33:14 -07:00
$(document).on('pageinit', "#liveTvGuidePage", function () {
var page = this;
$('.programGrid', page).on('scroll', function () {
onProgramGridScroll(page, this);
});
2014-01-10 06:52:01 -07:00
$('#selectDate', page).on('change', function () {
var date = new Date();
date.setTime(parseInt(this.value));
2014-01-05 18:59:21 -07:00
changeDate(page, date);
2014-01-05 18:59:21 -07:00
});
2014-01-05 18:59:21 -07:00
}).on('pagebeforeshow', "#liveTvGuidePage", function () {
2014-01-06 09:48:43 -07:00
var page = this;
2014-01-06 09:48:43 -07:00
2014-10-15 20:26:39 -07:00
ApiClient.getLiveTvGuideInfo().done(function (guideInfo) {
setDateRange(page, guideInfo);
});
2014-01-05 18:59:21 -07:00
});
2014-10-15 20:26:39 -07:00
})(jQuery, document);
2014-01-15 15:19:45 -07:00
(function ($, document, window) {
var showOverlayTimeout;
var hideOverlayTimeout;
var currentPosterItem;
function onOverlayMouseOver() {
if (hideOverlayTimeout) {
clearTimeout(hideOverlayTimeout);
hideOverlayTimeout = null;
}
}
function onOverlayMouseOut() {
startHideOverlayTimer();
}
function getOverlayHtml(item) {
var html = '';
html += '<div class="itemOverlayContent">';
if (item.EpisodeTitle) {
html += '<p>';
html += item.EpisodeTitle;
html += '</p>';
}
html += '<p class="itemMiscInfo miscTvProgramInfo"></p>';
html += '<p style="margin: 1.25em 0;">';
2015-01-01 22:36:27 -07:00
html += '<span class="itemCommunityRating">';
2014-01-15 15:19:45 -07:00
html += LibraryBrowser.getRatingHtml(item);
2015-01-01 22:36:27 -07:00
html += '</span>';
2014-01-15 15:19:45 -07:00
html += '<span class="userDataIcons">';
html += LibraryBrowser.getUserDataIconsHtml(item);
html += '</span>';
html += '</p>';
html += '<p class="itemGenres"></p>';
html += '<p class="itemOverlayHtml">';
2014-05-27 07:30:21 -07:00
html += (item.Overview || '');
2014-01-15 15:19:45 -07:00
html += '</p>';
html += '</div>';
return html;
}
function showOverlay(elem, item) {
$('.itemFlyout').popup('close').remove();
var html = '<div data-role="popup" class="itemFlyout" data-theme="b" data-arrow="true" data-history="false">';
html += '<div class="ui-bar-b" style="text-align:center;">';
html += '<h3 style="margin: .5em 0;padding:0 1em;font-weight:normal;">' + item.Name + '</h3>';
html += '</div>';
html += '<div style="padding: 0 1em;">';
html += getOverlayHtml(item);
html += '</div>';
html += '</div>';
$('.itemFlyout').popup('close').popup('destroy').remove();
$(document.body).append(html);
var popup = $('.itemFlyout').on('mouseenter', onOverlayMouseOver).on('mouseleave', onOverlayMouseOut).popup({
positionTo: elem
}).trigger('create').popup("open").on("popupafterclose", function () {
$(this).off("popupafterclose").off("mouseenter").off("mouseleave").remove();
});
2015-01-31 19:41:35 -07:00
LibraryBrowser.renderGenres($('.itemGenres', popup), item, 'livetv', 3);
2014-01-15 15:19:45 -07:00
LiveTvHelpers.renderMiscProgramInfo($('.miscTvProgramInfo', popup), item);
popup.parents().prev('.ui-popup-screen').remove();
currentPosterItem = elem;
}
function onProgramClicked() {
if (showOverlayTimeout) {
clearTimeout(showOverlayTimeout);
showOverlayTimeout = null;
}
if (hideOverlayTimeout) {
clearTimeout(hideOverlayTimeout);
hideOverlayTimeout = null;
}
hideOverlay();
}
function hideOverlay() {
$('.itemFlyout').popup('close').remove();
if (currentPosterItem) {
$(currentPosterItem).off('click.overlay');
currentPosterItem = null;
}
}
function startHideOverlayTimer() {
if (hideOverlayTimeout) {
clearTimeout(hideOverlayTimeout);
hideOverlayTimeout = null;
}
hideOverlayTimeout = setTimeout(hideOverlay, 200);
}
function onHoverOut() {
if (showOverlayTimeout) {
clearTimeout(showOverlayTimeout);
showOverlayTimeout = null;
}
startHideOverlayTimer();
}
$.fn.createGuideHoverMenu = function (childSelector) {
function onShowTimerExpired(elem) {
var id = elem.getAttribute('data-programid');
ApiClient.getLiveTvProgram(id, Dashboard.getCurrentUserId()).done(function (item) {
showOverlay(elem, item);
});
}
function onHoverIn() {
if (showOverlayTimeout) {
clearTimeout(showOverlayTimeout);
showOverlayTimeout = null;
}
if (hideOverlayTimeout) {
clearTimeout(hideOverlayTimeout);
hideOverlayTimeout = null;
}
var elem = this;
if (currentPosterItem) {
if (currentPosterItem && currentPosterItem == elem) {
return;
} else {
hideOverlay();
}
}
showOverlayTimeout = setTimeout(function () {
onShowTimerExpired(elem);
}, 1000);
}
// https://hacks.mozilla.org/2013/04/detecting-touch-its-the-why-not-the-how/
if (('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)) {
/* browser with either Touch Events of Pointer Events
running on touch-capable device */
return this;
}
return this.on('mouseenter', childSelector, onHoverIn)
.on('mouseleave', childSelector, onHoverOut)
.on('click', childSelector, onProgramClicked);
};
})(jQuery, document, window);