2018-03-25 03:38:35 +00:00
|
|
|
<% content_for "header" do %>
|
2018-12-20 21:32:09 +00:00
|
|
|
<title><%= translate(locale, "Subscriptions") %> - Invidious</title>
|
2018-03-25 03:38:35 +00:00
|
|
|
<% end %>
|
|
|
|
|
2018-07-29 14:47:32 +00:00
|
|
|
<div class="pure-g h-box">
|
2018-12-20 17:05:54 +00:00
|
|
|
<div class="pure-u-1-3">
|
2018-07-20 16:19:49 +00:00
|
|
|
<h3>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/subscription_manager"><%= translate(locale, "Manage subscriptions") %></a>
|
2018-07-20 16:19:49 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2018-12-20 17:05:54 +00:00
|
|
|
<div class="pure-u-1-3" style="text-align:center;">
|
|
|
|
<h3>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/feed/history"><%= translate(locale, "Watch history") %></a>
|
2018-12-20 17:05:54 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2018-07-25 00:34:49 +00:00
|
|
|
<div class="pure-u-1-3" style="text-align:right;">
|
2018-07-20 16:19:49 +00:00
|
|
|
<h3>
|
2018-07-30 23:38:55 +00:00
|
|
|
<a href="/feed/private?token=<%= user.token %>"><i class="icon ion-logo-rss"></i></a>
|
2018-07-20 16:19:49 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-06 00:48:55 +00:00
|
|
|
|
2018-12-20 21:32:09 +00:00
|
|
|
<center><%= translate(locale, "`x` unseen notifications", "#{notifications.size}") %></center>
|
2018-08-30 21:52:29 +00:00
|
|
|
|
|
|
|
<% if !notifications.empty? %>
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2018-11-20 00:43:06 +00:00
|
|
|
<div class="pure-g">
|
2018-08-06 18:48:02 +00:00
|
|
|
<% notifications.each_slice(4) do |slice| %>
|
2018-09-20 14:36:09 +00:00
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
2018-08-06 18:48:02 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2018-11-20 00:43:06 +00:00
|
|
|
</div>
|
2018-08-06 18:49:52 +00:00
|
|
|
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
2018-05-08 02:57:47 +00:00
|
|
|
|
2018-11-20 00:43:06 +00:00
|
|
|
<div class="pure-g">
|
2018-03-25 03:38:35 +00:00
|
|
|
<% videos.each_slice(4) do |slice| %>
|
2018-09-20 14:36:09 +00:00
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
2018-06-01 22:26:00 +00:00
|
|
|
<% end %>
|
2018-03-25 03:38:35 +00:00
|
|
|
<% end %>
|
2018-11-20 00:43:06 +00:00
|
|
|
</div>
|
2018-03-25 03:38:35 +00:00
|
|
|
|
2018-11-20 04:06:59 +00:00
|
|
|
<script>
|
|
|
|
function mark_watched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tile.style.display = "none";
|
|
|
|
|
|
|
|
var url = "/mark_watched?redirect=false&id=" + target.getAttribute("data-id");
|
|
|
|
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) {
|
|
|
|
tile.style.display = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2018-03-25 03:38:35 +00:00
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
2018-08-15 00:15:33 +00:00
|
|
|
<% if page >= 2 %>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page - 1 %>">
|
|
|
|
<%= translate(locale, "Previous page") %>
|
|
|
|
</a>
|
2018-03-25 03:38:35 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-3-5"></div>
|
2018-03-25 04:14:35 +00:00
|
|
|
<div style="text-align:right;" class="pure-u-1 pure-u-md-1-5">
|
2018-08-15 00:15:33 +00:00
|
|
|
<% if (videos.size + notifications.size) == max_results %>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page + 1 %>">
|
|
|
|
<%= translate(locale, "Next page") %>
|
|
|
|
</a>
|
2018-08-15 00:15:33 +00:00
|
|
|
<% end %>
|
2018-03-25 03:38:35 +00:00
|
|
|
</div>
|
2018-08-17 16:04:38 +00:00
|
|
|
</div>
|