Skip to content

Commit

Permalink
tag page image header fix publiclab#6799 (publiclab#8144)
Browse files Browse the repository at this point in the history
* tag page image header fix publiclab#6799

* Update show.html.erb

* Update show.html.erb

* Update tags_controller_test.rb

* Update tag_controller_test.rb

* Update tag_controller_test.rb

* Update show.html.erb

* Update tag_controller_test.rb

* Update show.html.erb
  • Loading branch information
jywarren authored and alvesitalo committed Oct 14, 2020
1 parent 540ac55 commit bf8c0e3
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 193 deletions.
177 changes: 106 additions & 71 deletions app/views/tag/show.html.erb
Original file line number Diff line number Diff line change
@@ -1,50 +1,117 @@
<!-- cLose container divs so we can be full-width -->
</div>
</div>

<script src="/assets/wikis.js" type="text/javascript"></script>

<div class="container tag-header">
<%= render partial: 'tag/show/header' %>
<div class= "card tag-card">
<div class="card-body">
<div class="pull-right"><%= render :partial => "tag/show/user_controls" %></div>
<h1 style="margin-top:6px;">
<%= @wiki&.latest&.title || @title %>
<span rel="tooltip" title="This 'tagname' forms part of the URL for this topic." class="badge badge-secondary" style="font-family: 'Helvetica Neue',Arial,sans-serif;font-size: 12px;background: #ccc;color: white;"><%= params[:id] %></span>
</h1>
<% if @wildcard %>

<% if @node_type == "questions"%>
<p><i>Showing <b>questions</b></i></p>
<% elsif @node_type == "note" && params[:id].match("activity:") %>
<p><i>Showing <b>activities</b></i></p>
<% elsif @node_type == "note" && params[:id].match("replication:") %>
<p><i>Showing <b>completed activities</b></i></p>
<% end %>
<style>
.tag-header {
margin-top: -21px;
}
@media screen and (max-width: 340px) {
.tag-header {
margin-top: -30px;
}
}
.fdb-block {
box-shadow: 0;
margin-bottom: 0;
transition: margin 0.25s linear 0.25s;
padding: 3.5rem 0;
position: relative;
background-size: cover;
background-color: #FFF;
}
.fdb-block, .rounded {
overflow: hidden;
}
.fdb-block, .fdb-block .container {
background-position: center;
background-repeat: no-repeat;
}
.fdb-block .container {
background-size: contain;
}
.fdb-block, .fdb-block .container {
background-position: center;
background-repeat: no-repeat;
}
.fdb-block .fdb-box {
background: #FFF;
padding: 2.75rem 2.5rem;
overflow: hidden;
color: #444;
border-radius: .25rem;
box-shadow: 0 .3125rem .875rem 0 rgba(129,129,129,.2)!important;
}
.fdb-block .rounded-bottom-0 {
border-bottom-left-radius: 0!important;
border-bottom-right-radius: 0!important;
}

<p><i>This is a wildcard (*) tag search. Please enter a tag without wildcards to display lead wiki pages.</i></p>
</style>

<% end %>
<% if @wiki %>
<p class = "wiki-sub"><%= @wiki.latest.body.split('\n').first %></p>
<% end %>
<div class="tag-buttons">
<div class="btn-group" role="group">
<% if current_user && current_user.following(params[:id]) %>
<a rel="tooltip" title="<%= translation('sidebar._post_button.share_your_work') %>" data-placement="bottom" href="/post?tags=<%= @title %>" class="btn btn-primary requireLogin">New post <i class="fa fa-plus fa-white"></i></a>
<% else %>
<a class="btn btn-primary requireLogin" target="_blank" href="/subscribe/tag/<%= params[:id] %>"> Follow</a>
<% if @related_tags %>
<a><%= render partial: 'tag/dropdown_subscribe', locals: { tags: @related_tags, buttonStyle: "btn-primary"} %></a>
<% end %>
<section class="tag-header fdb-block pb-0" style="<% if @wiki && @wiki.main_image %>background-image: url(<%= @wiki.main_image.path %>);<% else %>background: #eee;<% end %>" data-block-type="contents" data-id="1">

<div class="container">
<div class="row text-left justify-content-start">
<div class="col-12 col-md-6 col-xl-5"><div class="fdb-box rounded-bottom-0">

<div class="pull-right"><%= render :partial => "tag/show/user_controls" %></div>

<h1 style="margin-top:6px;">
<%= @wiki&.latest&.title || @title %>
<span rel="tooltip" title="This 'tagname' forms part of the URL for this topic." class="badge badge-secondary" style="font-family: 'Helvetica Neue',Arial,sans-serif;font-size: 12px;background: #ccc;color: white;">
<%= params[:id] %>
</span>
</h1>

<% if @wildcard %>

<% if @node_type == "questions"%>
<p><i>Showing <b>questions</b></i></p>
<% elsif @node_type == "note" && params[:id].match("activity:") %>
<p><i>Showing <b>activities</b></i></p>
<% elsif @node_type == "note" && params[:id].match("replication:") %>
<p><i>Showing <b>completed activities</b></i></p>
<% end %>
</div>

<p><i>This is a wildcard (*) tag search. Please enter a tag without wildcards to display lead wiki pages.</i></p>

<% end %>

<% if @wiki %>
<a><%= link_to("Learn more &raquo;".html_safe, "/wiki/#{params[:id]}", :class=> "btn btn-outline-secondary")%></a>
<% else %>
<a class="btn btn-outline-secondary" href="/wiki/new?title=<%= params[:id] %>">Add a description <span class="fa fa-plus"></span></a>
<p class = "wiki-sub wiki-summary" id="wiki-summary"><%= @wiki.latest.body.split('\n').first %></p>
<% end %>
</div>

<div class="tag-buttons">
<div class="btn-group" role="group">
<% if current_user && current_user.following(params[:id]) %>
<a rel="tooltip" title="<%= translation('sidebar._post_button.share_your_work') %>" data-placement="bottom" href="/post?tags=<%= @title %>" class="btn btn-primary requireLogin">New post <i class="fa fa-plus fa-white"></i></a>
<% else %>
<a class="btn btn-primary requireLogin" target="_blank" href="/subscribe/tag/<%= params[:id] %>"> Follow</a>
<% if @related_tags %>
<a><%= render partial: 'tag/dropdown_subscribe', locals: { tags: @related_tags, buttonStyle: "btn-primary"} %></a>
<% end %>
<% end %>
</div>
<% if @wiki %>
<a><%= link_to("Learn more &raquo;".html_safe, "/wiki/#{params[:id]}", :class=> "btn btn-outline-secondary")%></a>
<% else %>
<a class="btn btn-outline-secondary" href="/wiki/new?title=<%= params[:id] %>">Add a description <span class="fa fa-plus"></span></a>
<% end %>
</div>

</div></div>
</div>
</div>
</div>

</section>

<br />

<div class="container">
<div class="row">

<% cache("tag-show-#{request.fullpath}", expires_in: 5.minutes, skip_digest: true) do %>
<div class="container">
Expand All @@ -68,45 +135,13 @@
</div>
</div>
<% end %>

<%= stylesheet_link_tag "dashboard" %>

<style>
.node-types .nav-link {
color: #495057;
}
.tag-card {
position: absolute;
top: 100px;
left: 5%;
z-index: 1;
width: 40%;
padding: 10px 10px !important;
}

@media screen and (max-width: 998px) {
.tag-card {
width: 60%;
}
}

@media screen and (max-width: 480px) {
.tag-card {
top: 90px;
width: 90%;
}
}
.tag-header {
height: 355px;
}
.wiki-sub{
overflow: hidden;
color: #666;
height: 70px;
}
.tag-buttons .btn {
margin-top: 10px;
}

.contributor-info,
.contributor-info a i,
.contributor-info a:link i,
Expand Down
119 changes: 0 additions & 119 deletions app/views/tag/show/_header.html.erb

This file was deleted.

4 changes: 2 additions & 2 deletions test/functional/tag_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def setup
end

# assert_equal assigns['tags'].length, 1
assert_select '#wiki-content', 1
assert_select '#wiki-summary', 1
end

test 'show page for non-existent tag' do
Expand Down Expand Up @@ -309,7 +309,7 @@ def setup

get :show, params: { id: nodes(:organizers).slug }

assert_select '#wiki-content', 1
assert_select '#wiki-summary', 1
end

test 'show note with author and tagname without wildcard' do
Expand Down
2 changes: 1 addition & 1 deletion test/system/tags_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def setup
visit '/tag/nature'

# Click on 3 dots menu
find('.tag-card .pull-right').click()
find('.tag-header .pull-right').click()

# Subscribe to the tag "nature"
find('.dropdown-menu.show a[href="/subscribe/tag/nature"]').click()
Expand Down

0 comments on commit bf8c0e3

Please sign in to comment.