forked from midou/invidious
Fixes: * Sanitize user-provided content in HTML (Fixes #2193) * Fix encoding of search query in prev/next pages (Fixes #2229) * Fix some issues introduced with #2196: - Fix alignment of all <h3> elements (Move the inline style from the parent to the <h3> element) - Add missing comma on 'dir' HTML attribute (Typo introduced by PR #2196) Code cleaning: * Remove unnecessary 'each_sclice' + 'each' double loop in ECR files * Clean the player's <source> list generation code (in player.ecr)
72 lines
2.9 KiB
Plaintext
72 lines
2.9 KiB
Plaintext
<% content_for "header" do %>
|
|
<title><%= translate(locale, "History") %> - Invidious</title>
|
|
<% end %>
|
|
|
|
<div class="pure-g h-box">
|
|
<div class="pure-u-1-3">
|
|
<h3><%= translate(locale, "`x` videos", %(<span id="count">#{user.watched.size}</span>)) %></h3>
|
|
</div>
|
|
<div class="pure-u-1-3">
|
|
<h3 style="text-align:center">
|
|
<a href="/feed/subscriptions"><%= translate(locale, "`x` subscriptions", %(<span id="count">#{user.subscriptions.size}</span>)) %></a>
|
|
</h3>
|
|
</div>
|
|
<div class="pure-u-1-3">
|
|
<h3 style="text-align:right">
|
|
<a href="/clear_watch_history"><%= translate(locale, "Clear watch history") %></a>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<script id="watched_data" type="application/json">
|
|
<%=
|
|
{
|
|
"csrf_token" => URI.encode_www_form(env.get?("csrf_token").try &.as(String) || "")
|
|
}.to_pretty_json
|
|
%>
|
|
</script>
|
|
<script src="/js/watched_widget.js"></script>
|
|
|
|
<div class="pure-g">
|
|
<% watched.each do |item| %>
|
|
<div class="pure-u-1 pure-u-md-1-4">
|
|
<div class="h-box">
|
|
<a style="width:100%" href="/watch?v=<%= item %>">
|
|
<% if !env.get("preferences").as(Preferences).thin_mode %>
|
|
<div class="thumbnail">
|
|
<img class="thumbnail" src="/vi/<%= item %>/mqdefault.jpg"/>
|
|
<form data-onsubmit="return_false" action="/watch_ajax?action_mark_unwatched=1&id=<%= item %>&referer=<%= env.get("current_page") %>" method="post">
|
|
<input type="hidden" name="csrf_token" value="<%= URI.encode_www_form(env.get?("csrf_token").try &.as(String) || "") %>">
|
|
<p class="watched">
|
|
<a data-onclick="mark_unwatched" data-id="<%= item %>" href="javascript:void(0)">
|
|
<button type="submit" style="all:unset"><i class="icon ion-md-trash"></i></button>
|
|
</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<p></p>
|
|
<% end %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="pure-g h-box">
|
|
<div class="pure-u-1 pure-u-lg-1-5">
|
|
<% if page > 1 %>
|
|
<a href="/feed/history?page=<%= page - 1 %><% if env.params.query["max_results"]? %>&max_results=<%= max_results %><% end %>">
|
|
<%= translate(locale, "Previous page") %>
|
|
</a>
|
|
<% end %>
|
|
</div>
|
|
<div class="pure-u-1 pure-u-lg-3-5"></div>
|
|
<div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
|
|
<% if watched.size >= max_results %>
|
|
<a href="/feed/history?page=<%= page + 1 %><% if env.params.query["max_results"]? %>&max_results=<%= max_results %><% end %>">
|
|
<%= translate(locale, "Next page") %>
|
|
</a>
|
|
<% end %>
|
|
</div>
|
|
</div>
|