HTML: Use the new pagination component for channel pages

This commit is contained in:
Samantaz Fox
2023-04-21 00:28:11 +02:00
parent efaf7cb09c
commit 7bd6d0ac49
5 changed files with 20 additions and 31 deletions

View File

@@ -15,7 +15,12 @@
youtube_url = "https://www.youtube.com#{relative_url}"
redirect_url = Invidious::Frontend::Misc.redirect_url(env)
-%>
page_nav_html = IV::Frontend::Pagination.nav_ctoken(locale,
base_url: relative_url,
ctoken: next_continuation
)
%>
<% content_for "header" do %>
<%- if selected_tab.videos? -%>
@@ -43,21 +48,5 @@
<hr>
</div>
<div class="pure-g">
<% items.each do |item| %>
<%= rendered "components/item" %>
<% end %>
</div>
<script src="/js/watched_indicator.js"></script>
<div class="pure-g h-box">
<div class="pure-u-1 pure-u-md-4-5"></div>
<div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
<% if next_continuation %>
<a href="<%= relative_url %>?continuation=<%= next_continuation %><% if sort_options.any? sort_by %>&sort_by=<%= sort_by %><% end %>">
<%= translate(locale, "Next page") %>
</a>
<% end %>
</div>
</div>
<%= rendered "components/items_paginated" %>

View File

@@ -1,7 +1,7 @@
<%= page_nav_html %>
<div class="pure-g">
<%- videos.each do |item| -%>
<%- items.each do |item| -%>
<%= rendered "components/item" %>
<%- end -%>
</div>

View File

@@ -8,7 +8,7 @@
<hr/>
<%- if videos.empty? -%>
<%- if items.empty? -%>
<div class="h-box no-results-error">
<div>
<%= translate(locale, "search_message_no_results") %><br/><br/>