invidious-experimenting/src/views/watch.ecr

134 lines
4.2 KiB
Plaintext
Raw Normal View History

2018-01-07 23:10:03 +05:30
<% content_for "header" do %>
2018-03-08 04:18:26 +05:30
<meta name="thumbnail" content="<%= thumbnail %>">
2018-02-07 06:22:01 +05:30
<link rel="stylesheet" href="http://vjs.zencdn.net/6.6.3/video-js.css">
<script src="http://vjs.zencdn.net/6.6.3/video.js"></script>
<script src="//cdn.sc.gl/videojs-hotkeys/latest/videojs.hotkeys.min.js"></script>
2018-01-28 07:40:08 +05:30
<title><%= video.title %> - Invidious</title>
2018-01-07 23:10:03 +05:30
<% end %>
2018-01-15 08:46:09 +05:30
2018-02-12 04:31:32 +05:30
<% if listen %>
<%= render "src/views/player/audio.ecr" %>
2018-01-17 01:32:35 +05:30
<% else %>
<%= render "src/views/player/video.ecr" %>
2018-01-17 01:32:35 +05:30
<% end %>
2018-01-17 01:28:08 +05:30
<script>
var options = {
aspectRatio: "16:9",
preload: "auto",
playbackRates: [0.5, 1, 1.5, 2]
};
var player = videojs('player', options, function() {
this.hotkeys({
volumeStep: 0.1,
seekStep: 5,
2018-02-06 06:06:16 +05:30
enableModifiersForNumbers: false,
enableVolumeScroll: false,
customKeys: {
play: {
key: function(e) {
// Toggle play with K Key
return (e.which === 75);
},
handler: function(player, options, e) {
if (player.paused()) {
player.play();
} else {
player.pause();
}
}
},
backward: {
key: function(e) {
// Go backward 5 seconds
return (e.which === 74);
},
handler: function(player, options, e) {
player.currentTime(player.currentTime() - 5);
}
},
forward: {
key: function(e) {
// Go forward 5 seconds
return (e.which === 76);
},
handler: function(player, options, e) {
player.currentTime(player.currentTime() + 5);
}
}
}
2018-01-17 01:28:08 +05:30
});
});
2018-03-04 02:36:14 +05:30
function toggle(target) {
body = target.parentNode.parentNode.children[1];
if (body.style.display === null || body.style.display === '') {
target.innerHTML = '[ + ]';
body.style.display = 'none';
} else {
target.innerHTML = '[ - ]';
body.style.display = '';
}
2018-03-04 02:36:14 +05:30
}
2018-01-17 01:28:08 +05:30
</script>
2018-01-16 08:00:57 +05:30
2018-01-17 01:28:08 +05:30
<h1>
<%= video.info["title"] %>
2018-02-12 04:31:32 +05:30
<% if listen %>
<a href="/watch?<%= env.params.query %>">
2018-02-12 04:31:32 +05:30
<i class="fa fa-video" aria-hidden="true"></i>
2018-01-17 01:28:08 +05:30
</a>
<% else %>
<a href="/watch?<%= env.params.query %>&listen=true">
2018-01-17 01:28:08 +05:30
<i class="fa fa-volume-up" aria-hidden="true"></i>
</a>
<% end %>
</h1>
2018-01-16 08:00:57 +05:30
2018-01-17 01:28:08 +05:30
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
<p><i class="fa fa-eye" aria-hidden="true"></i> <%= number_with_separator(video.views) %></p>
<p><i class="fa fa-thumbs-up" aria-hidden="true"></i> <%= number_with_separator(video.likes) %></p>
<p><i class="fa fa-thumbs-down" aria-hidden="true"></i> <%= number_with_separator(video.dislikes) %></p>
2018-01-28 07:40:08 +05:30
<p id="Wilson">Wilson Score : <%= video.wilson_score.round(4) %></p>
2018-01-17 01:28:08 +05:30
<p id="Rating">Rating : <%= rating.round(4) %> / 5</p>
<p id="Engagement">Engagement : <%= engagement.round(2) %>%</p>
</div>
2018-01-16 08:00:57 +05:30
2018-01-17 01:28:08 +05:30
<div class="pure-u-1 pure-u-md-3-5">
<p>
<a href="https://youtube.com/channel/<%= video.info["ucid"] %>">
2018-01-17 01:28:08 +05:30
<h3><%= video.info["author"] %></h3>
</a>
</p>
2018-03-09 22:42:28 +05:30
<p>
<b>Shared <%= video.published.to_s("%B %-d, %Y") %></b>
</p>
2018-03-07 04:29:08 +05:30
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
2018-02-27 06:28:45 +05:30
<%= video.description %>
2018-02-06 06:38:20 +05:30
</div>
2018-03-04 02:36:14 +05:30
<hr style="margin-right:1em;">
2018-03-07 09:30:35 +05:30
<% if reddit_thread && !reddit_html.empty? %>
2018-03-07 04:29:08 +05:30
<div style="margin-right:1em; overflow-wrap:break-word; word-wrap:break-word;">
2018-03-04 02:36:14 +05:30
<h3><%= reddit_thread.data.title %></h3>
<b>
2018-03-09 22:17:50 +05:30
<a target="_blank" href="https://reddit.com<%= reddit_thread.data.permalink %>">View more comments on Reddit</a>
2018-03-04 02:36:14 +05:30
</b>
2018-03-07 09:30:35 +05:30
<%= reddit_html %>
2018-03-04 02:36:14 +05:30
</div>
<% end %>
2018-01-17 01:28:08 +05:30
</div>
2018-01-16 08:00:57 +05:30
2018-01-17 01:28:08 +05:30
<div class="pure-u-1 pure-u-md-1-5">
<% rvs.each do |rv| %>
2018-01-15 08:46:09 +05:30
<% if rv.has_key?("id") %>
<a href="/watch?v=<%= rv["id"] %>">
2018-02-06 06:14:42 +05:30
<img style="width:100%;" alt="thumbnail" src="<%= rv["iurlmq"] %>">
2018-02-27 08:29:18 +05:30
<p style="width:100%"><%= rv["title"] %></p>
<p><b style="width: 100%"><%= rv["author"] %></b></p>
2018-01-17 01:55:59 +05:30
</a>
2018-01-15 08:46:09 +05:30
<% end %>
2018-01-17 01:28:08 +05:30
<% end %>
2018-01-07 23:20:04 +05:30
</div>
2018-01-17 01:28:08 +05:30
</div>