invidious/src/invidious/views/watch.ecr

550 lines
22 KiB
Text
Raw Normal View History

2018-01-07 17:40:03 +00:00
<% content_for "header" do %>
2018-03-07 22:48:26 +00:00
<meta name="thumbnail" content="<%= thumbnail %>">
2018-07-31 16:33:25 +00:00
<meta name="description" content="<%= description %>">
2018-11-02 13:09:28 +00:00
<meta name="keywords" content="<%= video.keywords.join(",") %>">
2018-07-23 01:02:49 +00:00
<meta property="og:site_name" content="Invidious">
<meta property="og:url" content="<%= host_url %>/watch?v=<%= video.id %>">
<meta property="og:title" content="<%= HTML.escape(video.title) %>">
2018-09-15 02:24:28 +00:00
<meta property="og:image" content="/vi/<%= video.id %>/maxres.jpg">
2018-07-23 13:07:24 +00:00
<meta property="og:description" content="<%= description %>">
2018-07-23 01:02:49 +00:00
<meta property="og:type" content="video.other">
<meta property="og:video:url" content="<%= host_url %>/embed/<%= video.id %>">
<meta property="og:video:secure_url" content="<%= host_url %>/embed/<%= video.id %>">
2018-07-23 01:02:49 +00:00
<meta property="og:video:type" content="text/html">
<meta property="og:video:width" content="1280">
<meta property="og:video:height" content="720">
<meta name="twitter:card" content="player">
2018-08-13 18:24:10 +00:00
<meta name="twitter:site" content="@omarroth1">
<meta name="twitter:url" content="<%= host_url %>/watch?v=<%= video.id %>">
<meta name="twitter:title" content="<%= HTML.escape(video.title) %>">
2018-07-23 13:07:24 +00:00
<meta name="twitter:description" content="<%= description %>">
<meta name="twitter:image" content="<%= host_url %>/vi/<%= video.id %>/maxres.jpg">
<meta name="twitter:player" content="<%= host_url %>/embed/<%= video.id %>">
2018-07-23 04:20:49 +00:00
<meta name="twitter:player:width" content="1280">
<meta name="twitter:player:height" content="720">
2018-10-07 03:20:40 +00:00
<script src="/js/watch.js"></script>
<%= rendered "components/player_sources" %>
<title><%= HTML.escape(video.title) %> - Invidious</title>
2018-01-07 17:40:03 +00:00
<% end %>
2018-01-15 03:16:09 +00:00
<div id="player-container" class="h-box">
2019-05-02 01:03:39 +00:00
<%= rendered "components/player" %>
2018-03-11 17:05:56 +00:00
</div>
2018-01-16 19:58:08 +00:00
2018-08-25 23:33:15 +00:00
<div class="h-box">
2019-05-02 01:03:39 +00:00
<h1>
<%= HTML.escape(video.title) %>
<% if params.listen %>
<a title="<%=translate(locale, "Video mode")%>" href="/watch?<%= env.params.query %>&listen=0">
<i class="icon ion-ios-videocam"></i>
</a>
<% else %>
<a title="<%=translate(locale, "Audio mode")%>" href="/watch?<%= env.params.query %>&listen=1">
<i class="icon ion-md-headset"></i>
</a>
<% end %>
</h1>
<% if !video.is_listed %>
<h3>
<i class="icon ion-ios-lock"></i> <%= translate(locale, "Unlisted") %>
</h3>
<% end %>
<% if !reason.empty? %>
<h3>
<%= reason %>
</h3>
2018-08-25 23:33:15 +00:00
<% end %>
</div>
<div class="pure-g">
2019-04-14 22:04:52 +00:00
<div class="pure-u-1 pure-u-lg-1-5">
2018-08-25 23:33:15 +00:00
<div class="h-box">
2019-05-01 04:39:04 +00:00
<p>
2019-05-02 01:03:39 +00:00
<a href="https://www.youtube.com/watch?v=<%= video.id %>"><%= translate(locale, "Watch on YouTube") %></a>
</p>
<p>
<% if params.annotations %>
<a href="/watch?<%= env.params.query %>&iv_load_policy=3">
<%= translate(locale, "Hide annotations") %>
</a>
<% else %>
<a href="/watch?<%= env.params.query %>&iv_load_policy=1">
<%=translate(locale, "Show annotations")%>
</a>
<% end %>
2019-05-01 04:39:04 +00:00
</p>
<% if CONFIG.dmca_content.includes? video.id %>
2019-05-02 01:03:39 +00:00
<p><%= translate(locale, "Download is disabled.") %></p>
<% else %>
2019-05-02 01:03:39 +00:00
<form class="pure-form pure-form-stacked" action="/latest_version" method="get" rel="noopener" target="_blank">
<div class="pure-control-group">
<label for="download_widget"><%= translate(locale, "Download as: ") %></label>
<select style="width:100%" name="download_widget" id="download_widget">
<% fmt_stream.each do |option| %>
<option value='{"id":"<%= video.id %>","itag":"<%= option["itag"] %>","title":"<%= URI.escape(video.title) %>-<%= video.id %>.<%= option["type"].split(";")[0].split("/")[1] %>"}'>
<%= itag_to_metadata?(option["itag"]).try &.["height"]? || "~240" %>p - <%= option["type"].split(";")[0] %>
</option>
<% end %>
<% video_streams.each do |option| %>
<option value='{"id":"<%= video.id %>","itag":"<%= option["itag"] %>","title":"<%= URI.escape(video.title) %>-<%= video.id %>.<%= option["type"].split(";")[0].split("/")[1] %>"}'>
<%= option["quality_label"] %> - <%= option["type"].split(";")[0] %> @ <%= option["fps"] %>fps - video only
</option>
<% end %>
<% audio_streams.each do |option| %>
<option value='{"id":"<%= video.id %>","itag":"<%= option["itag"] %>","title":"<%= URI.escape(video.title) %>-<%= video.id %>.<%= option["type"].split(";")[0].split("/")[1] %>"}'>
<%= option["type"].split(";")[0] %> @ <%= option["bitrate"] %>k - audio only
</option>
<% end %>
<% captions.each do |caption| %>
<option value='{"id":"<%= video.id %>","label":"<%= caption.name.simpleText %>","title":"<%= URI.escape(video.title) %>-<%= video.id %>.<%= caption.languageCode %>.vtt"}'>
<%= translate(locale, "Subtitles - `x` (.vtt)", caption.name.simpleText) %>
</option>
<% end %>
</select>
</div>
2019-01-24 01:05:24 +00:00
2019-05-02 01:03:39 +00:00
<button type="submit" class="pure-button pure-button-primary">
<b><%= translate(locale, "Download") %></b>
</button>
</form>
<% end %>
2019-01-24 01:05:24 +00:00
2018-08-25 23:33:15 +00:00
<p><i class="icon ion-ios-eye"></i> <%= number_with_separator(video.views) %></p>
<p><i class="icon ion-ios-thumbs-up"></i> <%= number_with_separator(video.likes) %></p>
<p><i class="icon ion-ios-thumbs-down"></i> <%= number_with_separator(video.dislikes) %></p>
2019-05-02 01:03:39 +00:00
<p id="genre"><%= translate(locale, "Genre: ") %>
<% if video.genre_url.empty? %>
<%= video.genre %>
<% else %>
<a href="<%= video.genre_url %>"><%= video.genre %></a>
<% end %>
2018-09-25 15:10:25 +00:00
</p>
2018-09-09 19:47:26 +00:00
<% if !video.license.empty? %>
2019-05-02 01:03:39 +00:00
<p id="license"><%= translate(locale, "License: ") %><%= video.license %></p>
2018-09-09 19:47:26 +00:00
<% end %>
2019-05-02 01:03:39 +00:00
<p id="family_friendly"><%= translate(locale, "Family friendly? ") %><%= translate_bool(locale, video.is_family_friendly) %></p>
<p id="wilson"><%= translate(locale, "Wilson score: ") %><%= video.wilson_score.round(4) %></p>
<p id="rating"><%= translate(locale, "Rating: ") %><%= rating.round(4) %> / 5</p>
<p id="engagement"><%= translate(locale, "Engagement: ") %><%= engagement.round(2) %>%</p>
2018-08-25 23:33:15 +00:00
<% if video.allowed_regions.size != REGIONS.size %>
2019-05-02 01:03:39 +00:00
<p id="allowed_regions">
<% if video.allowed_regions.size < REGIONS.size / 2 %>
<%= translate(locale, "Whitelisted regions: ") %><%= video.allowed_regions.join(", ") %>
<% else %>
<%= translate(locale, "Blacklisted regions: ") %><%= (REGIONS.to_a - video.allowed_regions).join(", ") %>
<% end %>
2018-08-25 23:33:15 +00:00
</p>
<% end %>
</div>
</div>
2019-05-01 04:39:04 +00:00
<div class="pure-u-1 <% if params.related_videos || plid %>pure-u-lg-3-5<% else %>pure-u-md-4-5<% end %>">
2018-08-25 23:33:15 +00:00
<div class="h-box">
<p>
<a href="/channel/<%= video.ucid %>">
<h3><%= video.author %></h3>
</a>
</p>
2019-05-02 01:03:39 +00:00
<% ucid = video.ucid %>
<% author = video.author %>
<% sub_count_text = video.sub_count_text %>
<%= rendered "components/subscribe_widget" %>
2019-05-02 01:03:39 +00:00
2018-08-25 23:33:15 +00:00
<p>
2018-12-20 21:32:09 +00:00
<b><%= translate(locale, "Shared `x`", video.published.to_s("%B %-d, %Y")) %></b>
2018-08-25 23:33:15 +00:00
</p>
2019-05-02 01:03:39 +00:00
2018-08-25 23:33:15 +00:00
<div>
<%= video.description %>
</div>
2019-05-02 01:03:39 +00:00
2018-08-25 23:33:15 +00:00
<hr>
2019-05-02 01:03:39 +00:00
2018-08-25 23:33:15 +00:00
<div id="comments">
<% if nojs %>
<%= comment_html %>
<% else %>
2019-05-02 01:03:39 +00:00
<noscript>
<a href="/watch?<%= env.params.query %>&nojs=1">
<%= translate(locale, "Hi! Looks like you have JavaScript turned off. Click here to view comments, keep in mind they may take a bit longer to load.") %>
</a>
</noscript>
<% end %>
2018-08-25 23:33:15 +00:00
</div>
</div>
</div>
2018-10-08 02:11:33 +00:00
2019-05-02 01:03:39 +00:00
<% if params.related_videos || plid %>
<div class="pure-u-1 pure-u-lg-1-5">
<% if plid %>
<div id="playlist" class="h-box"></div>
<% end %>
2018-11-11 17:45:05 +00:00
2019-05-02 01:03:39 +00:00
<% if params.related_videos %>
<div class="h-box">
<% if !rvs.empty? %>
<div <% if plid %>style="display:none"<% end %>>
<div class="pure-control-group">
<label for="continue"><%= translate(locale, "Autoplay next video: ") %></label>
<input name="continue" onclick="continue_autoplay(this)" id="continue" type="checkbox" <% if params.continue %>checked<% end %>>
</div>
<hr>
</div>
<% end %>
2019-04-28 17:07:19 +00:00
2019-05-02 01:03:39 +00:00
<% rvs.each do |rv| %>
<% if rv["id"]? %>
<a href="/watch?v=<%= rv["id"] %>">
<% if !env.get("preferences").as(Preferences).thin_mode %>
<div class="thumbnail">
<img class="thumbnail" src="/vi/<%= rv["id"] %>/mqdefault.jpg">
<p class="length"><%= recode_length_seconds(rv["length_seconds"]?.try &.to_i? || 0) %></p>
</div>
<% end %>
<p style="width:100%"><%= rv["title"] %></p>
<h5 class="pure-g">
<div class="pure-u-14-24">
<b style="width:100%"><%= rv["author"] %></b>
</div>
<div class="pure-u-10-24" style="text-align:right">
<% if views = rv["short_view_count_text"]?.try &.delete(", views") %>
<b class="width:100%"><%= translate(locale, "`x` views", views) %></b>
<% end %>
</div>
</h5>
</a>
2019-04-28 17:07:19 +00:00
<% end %>
2019-05-02 01:03:39 +00:00
<% end %>
</div>
2018-08-25 23:33:15 +00:00
<% end %>
</div>
<% end %>
2018-08-25 23:33:15 +00:00
</div>
2018-01-16 19:58:08 +00:00
<script>
2019-05-01 04:39:04 +00:00
<% if !rvs.empty? && !plid && params.continue %>
2018-11-11 17:45:05 +00:00
player.on('ended', function() {
2019-05-02 01:03:39 +00:00
location.assign('/watch?v=' +
'<%= rvs.select { |rv| rv["id"]? }[0]?.try &.["id"] %>' +
'&continue=1' +
2019-05-01 04:39:04 +00:00
<% if params.listen != preferences.listen %>
2019-05-02 01:03:39 +00:00
'&listen=<%= params.listen %>' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.autoplay || params.continue_autoplay %>
2019-05-02 01:03:39 +00:00
'&autoplay=1' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.speed != preferences.speed %>
2019-05-02 01:03:39 +00:00
'&speed=<%= params.speed %>' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-02 01:03:39 +00:00
''
2018-11-11 17:45:05 +00:00
);
});
<% end %>
function continue_autoplay(target) {
if (target.checked) {
player.on('ended', function() {
2019-05-02 01:03:39 +00:00
location.assign('/watch?v=' +
'<%= rvs.select { |rv| rv["id"]? }[0]?.try &.["id"] %>' +
'&continue=1' +
2019-05-01 04:39:04 +00:00
<% if params.listen != preferences.listen %>
2019-05-02 01:03:39 +00:00
'&listen=<%= params.listen %>' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.autoplay || params.continue_autoplay %>
2019-05-02 01:03:39 +00:00
'&autoplay=1' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.speed != preferences.speed %>
2019-05-02 01:03:39 +00:00
'&speed=<%= params.speed %>' +
2018-11-11 17:45:05 +00:00
<% end %>
2019-05-02 01:03:39 +00:00
''
2018-11-11 17:45:05 +00:00
);
});
} else {
player.off('ended');
}
}
2018-10-20 18:52:06 +00:00
function number_with_separator(val) {
2019-05-02 01:03:39 +00:00
while (/(\d+)(\d{3})/.test(val.toString())) {
val = val.toString().replace(/(\d+)(\d{3})/, "$1" + "," + "$2");
}
return val;
2018-10-20 18:52:06 +00:00
}
<% ucid = video.ucid %>
<% author = video.author %>
<% sub_count_text = video.sub_count_text %>
<%= rendered "components/subscribe_widget_script" %>
2018-10-08 02:11:33 +00:00
<% if plid %>
2019-05-02 01:03:39 +00:00
function get_playlist(plid, timeouts = 0) {
playlist = document.getElementById('playlist');
if (timeouts > 10) {
2019-05-02 01:03:39 +00:00
console.log('Failed to pull playlist');
playlist.innerHTML = '';
return;
}
2018-10-15 16:15:23 +00:00
playlist.innerHTML = ' \
2019-05-02 01:03:39 +00:00
<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3> \
<hr>'
2018-10-08 02:11:33 +00:00
2019-05-02 01:03:39 +00:00
if (plid.startsWith('RD')) {
var plid_url = '/api/v1/mixes/' + plid +
'?continuation=<%= video.id %>' +
'&format=html&hl=<%= env.get("preferences").as(Preferences).locale %>';
2018-10-08 02:11:33 +00:00
} else {
2019-05-02 01:03:39 +00:00
var plid_url = '/api/v1/playlists/' + plid +
'?continuation=<%= video.id %>' +
'&format=html&hl=<%= env.get("preferences").as(Preferences).locale %>';
2018-10-08 02:11:33 +00:00
}
var xhr = new XMLHttpRequest();
2019-05-02 01:03:39 +00:00
xhr.responseType = 'json';
2018-10-08 02:11:33 +00:00
xhr.timeout = 20000;
2019-05-02 01:03:39 +00:00
xhr.open('GET', plid_url, true);
2018-10-08 02:11:33 +00:00
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
playlist.innerHTML = xhr.response.playlistHtml;
2018-10-08 02:11:33 +00:00
if (xhr.response.nextVideo) {
player.on('ended', function() {
2019-05-02 01:03:39 +00:00
location.assign('/watch?v=' + xhr.response.nextVideo +
'&list=' + plid +
2019-05-01 04:39:04 +00:00
<% if params.listen != preferences.listen %>
2019-05-02 01:03:39 +00:00
'&listen=<%= params.listen %>' +
2018-10-08 02:11:33 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.autoplay || params.continue_autoplay %>
2019-05-02 01:03:39 +00:00
'&autoplay=1' +
2018-10-08 02:11:33 +00:00
<% end %>
2019-05-01 04:39:04 +00:00
<% if params.speed != preferences.speed %>
2019-05-02 01:03:39 +00:00
'&speed=<%= params.speed %>' +
2018-10-09 13:08:52 +00:00
<% end %>
2019-05-02 01:03:39 +00:00
''
2018-10-08 02:11:33 +00:00
);
});
}
} else {
2019-05-02 01:03:39 +00:00
playlist.innerHTML = '';
document.getElementById('continue').style.display = '';
2018-10-08 02:11:33 +00:00
}
}
};
xhr.ontimeout = function() {
2019-05-02 01:03:39 +00:00
console.log('Pulling playlist timed out.');
playlist = document.getElementById('playlist');
playlist.innerHTML =
2019-03-20 14:20:31 +00:00
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3><hr>';
2019-05-02 01:03:39 +00:00
get_playlist(plid, timeouts + 1);
2018-10-08 02:11:33 +00:00
};
}
2019-05-02 01:03:39 +00:00
get_playlist('<%= plid %>');
2018-10-08 02:11:33 +00:00
<% end %>
function get_reddit_comments(timeouts = 0) {
2019-05-02 01:03:39 +00:00
comments = document.getElementById('comments');
if (timeouts > 10) {
console.log('Failed to pull comments');
comments.innerHTML = '';
return;
2018-10-08 02:11:33 +00:00
}
2018-08-04 19:39:41 +00:00
2019-05-02 01:03:39 +00:00
var fallback = comments.innerHTML;
comments.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
2018-08-23 21:55:26 +00:00
2019-05-02 01:03:39 +00:00
var url = '/api/v1/comments/<%= video.id %>' +
'?source=reddit&format=html' +
'&hl=<%= env.get("preferences").as(Preferences).locale %>';
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
2018-07-28 14:49:58 +00:00
2019-05-02 01:03:39 +00:00
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
comments.innerHTML = ' \
2018-09-13 23:12:19 +00:00
<div> \
<h3> \
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
2019-05-02 01:03:39 +00:00
{title} \
2018-09-13 23:12:19 +00:00
</h3> \
2019-05-02 01:03:39 +00:00
<p> \
<b> \
<a href="javascript:void(0)" onclick="swap_comments(\'youtube\')"> \
<%= translate(locale, "View YouTube comments") %> \
</a> \
</b> \
</p> \
<b> \
2019-05-02 01:03:39 +00:00
<a rel="noopener" target="_blank" href="https://reddit.com{permalink}"><%= translate(locale, "View more comments on Reddit") %></a> \
</b> \
2018-09-13 23:12:19 +00:00
</div> \
<div>{contentHtml}</div> \
<hr>'.supplant({
2019-05-02 01:03:39 +00:00
title: xhr.response.title,
permalink: xhr.response.permalink,
contentHtml: xhr.response.contentHtml
});
} else {
<% if preferences && preferences.comments[1] == "youtube" %>
get_youtube_comments(timeouts + 1);
<% else %>
comments.innerHTML = fallback;
<% end %>
}
}
2019-05-02 01:03:39 +00:00
};
xhr.ontimeout = function() {
console.log('Pulling comments timed out.');
get_reddit_comments(timeouts + 1);
};
}
2018-08-04 19:39:41 +00:00
2019-05-02 01:03:39 +00:00
function get_youtube_comments(timeouts = 0) {
comments = document.getElementById('comments');
2018-08-23 21:55:26 +00:00
2019-05-02 01:03:39 +00:00
if (timeouts > 10) {
console.log('Failed to pull comments');
comments.innerHTML = '';
return;
}
var fallback = comments.innerHTML;
2018-08-13 14:58:02 +00:00
comments.innerHTML =
2019-05-02 01:03:39 +00:00
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
var url = '/api/v1/comments/<%= video.id %>' +
'?format=html' +
'&hl=<%= env.get("preferences").as(Preferences).locale %>' +
'&thin_mode=<%= env.get("preferences").as(Preferences).thin_mode %>';
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
if (xhr.response.commentCount > 0) {
comments.innerHTML = ' \
<div> \
<h3> \
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
<%= translate(locale, "View `x` comments", "{commentCount}") %> \
</h3> \
<b> \
<a href="javascript:void(0)" onclick="swap_comments(\'reddit\')"> \
<%= translate(locale, "View Reddit comments") %> \
</a> \
</b> \
</div> \
<div>{contentHtml}</div> \
<hr>'.supplant({
contentHtml: xhr.response.contentHtml,
commentCount: number_with_separator(xhr.response.commentCount)
});
} else {
comments.innerHTML = "";
}
} else {
<% if preferences && preferences.comments[1] == "youtube" %>
get_youtube_comments(timeouts + 1);
<% else %>
comments.innerHTML = '';
<% end %>
}
}
};
xhr.ontimeout = function() {
console.log('Pulling comments timed out.');
comments.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
get_youtube_comments(timeouts + 1);
};
2018-07-28 14:49:58 +00:00
}
2018-10-22 22:15:36 +00:00
function get_youtube_replies(target, load_more) {
2019-05-02 01:03:39 +00:00
var continuation = target.getAttribute('data-continuation');
var body = target.parentNode.parentNode;
var fallback = body.innerHTML;
body.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
var url = '/api/v1/comments/<%= video.id %>' +
'?format=html' +
'&hl=<%= env.get("preferences").as(Preferences).locale %>' +
'&thin_mode=<%= env.get("preferences").as(Preferences).thin_mode %>' +
'&continuation=' + continuation;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
2019-05-02 01:03:39 +00:00
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
if (load_more) {
body = body.parentNode.parentNode;
body.removeChild(body.lastElementChild);
body.innerHTML += xhr.response.contentHtml;
} else {
body.innerHTML = ' \
<p><a href="javascript:void(0)" \
2019-02-16 20:24:15 +00:00
onclick="hide_youtube_replies(this, \'<%= translate(locale, "Hide replies") %>\', \'<%= translate(locale, "Show replies") %>\')"><%= translate(locale, "Hide replies") %> \
2019-05-02 01:03:39 +00:00
</a></p> \
<div>{contentHtml}</div>'.supplant({
contentHtml: xhr.response.contentHtml,
});
}
} else {
body.innerHTML = fallback;
}
2018-10-22 22:15:36 +00:00
}
2019-05-02 01:03:39 +00:00
};
2018-08-17 14:25:47 +00:00
2019-05-02 01:03:39 +00:00
xhr.ontimeout = function() {
console.log('Pulling comments timed out.');
body.innerHTML = fallback;
};
2018-10-07 03:20:40 +00:00
}
2018-08-25 23:33:15 +00:00
<% if preferences %>
<% if preferences.comments[0] == "youtube" %>
2019-05-02 01:03:39 +00:00
get_youtube_comments();
2018-08-25 23:33:15 +00:00
<% elsif preferences.comments[0] == "reddit" %>
2019-05-02 01:03:39 +00:00
get_reddit_comments();
2018-01-16 19:58:08 +00:00
<% else %>
2018-08-25 23:33:15 +00:00
<% if preferences.comments[1] == "youtube" %>
2019-05-02 01:03:39 +00:00
get_youtube_comments();
2018-08-25 23:33:15 +00:00
<% elsif preferences.comments[1] == "reddit" %>
2019-05-02 01:03:39 +00:00
get_reddit_comments();
2018-08-25 23:33:15 +00:00
<% else %>
2019-05-02 01:03:39 +00:00
comments = document.getElementById('comments');
comments.innerHTML = '';
2018-08-25 23:33:15 +00:00
<% end %>
2018-01-16 19:58:08 +00:00
<% end %>
2018-08-25 23:33:15 +00:00
<% else %>
2019-05-02 01:03:39 +00:00
get_youtube_comments();
<% end %>
2018-11-02 13:09:28 +00:00
</script>