mirror of
https://github.com/iv-org/invidious.git
synced 2024-10-01 01:25:56 -04:00
Add content sections to trending feed
This commit is contained in:
parent
d3384e17f1
commit
fbe9a0c0f2
@ -600,3 +600,20 @@ hr {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.category {
|
||||||
|
margin: 3em 0px 4em 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category .heading > p {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category .badge.featured {
|
||||||
|
background: #005aa7;
|
||||||
|
color: white;
|
||||||
|
padding: 3px 4px 1px 4px;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
@ -380,7 +380,7 @@ def fetch_channel_playlists(ucid, author, continuation, sort_by)
|
|||||||
return items, continuation
|
return items, continuation
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_channel_featured_channels(ucid, tab_data, view = nil, shelf_id = nil, continuation = nil, query_title = nil) : {Array(Category), (String|Nil)}
|
def fetch_channel_featured_channels(ucid, tab_data, view = nil, shelf_id = nil, continuation = nil, query_title = nil) : {Array(Category), (String | Nil)}
|
||||||
auxiliary_data = {} of String => String
|
auxiliary_data = {} of String => String
|
||||||
|
|
||||||
if continuation.is_a?(String)
|
if continuation.is_a?(String)
|
||||||
|
@ -27,7 +27,7 @@ def fetch_trending(trending_type, region, locale)
|
|||||||
end
|
end
|
||||||
|
|
||||||
initial_data = extract_initial_data(trending)
|
initial_data = extract_initial_data(trending)
|
||||||
trending = extract_videos(initial_data)
|
trending = extract_items(initial_data)
|
||||||
|
|
||||||
return {trending, plid}
|
return {trending, plid}
|
||||||
end
|
end
|
||||||
|
@ -37,9 +37,36 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="pure-g">
|
<div class="pure-g">
|
||||||
<% trending.each_slice(4) do |slice| %>
|
<% trending.each do |category| %>
|
||||||
<% slice.each do |item| %>
|
<% if category.is_a? Category %>
|
||||||
<%= rendered "components/item" %>
|
<%# We don't need to differinate between a category that only
|
||||||
|
# contains videos and no metadata %>
|
||||||
|
<% if category.title.empty? %>
|
||||||
|
<% category.contents.each do |item| %>
|
||||||
|
<%= rendered "components/item" %>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<div class="category pure-u-1">
|
||||||
|
<div class="category-heading h-box">
|
||||||
|
<p> <%= category.title %> </p>
|
||||||
|
<% if (badges = category.badges).is_a? Array %>
|
||||||
|
<% badges.each do | badge |%>
|
||||||
|
<% if badge[0] == "BADGE_STYLE_TYPE_FEATURED" %>
|
||||||
|
<div class="badge featured">
|
||||||
|
<span> <%=badge[1] %><span>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<% category.contents.each do |item| %>
|
||||||
|
<%= rendered "components/item" %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user