docbrown/app/views/organizations/_sidebar_additional.html.erb
2020-02-07 08:56:16 -05:00

30 lines
1.3 KiB
Text

<div id="sidebar-wrapper-right" class="sidebar-wrapper sidebar-wrapper-right">
<div class="sidebar-bg" id="sidebar-bg-right"></div>
<div class="side-bar sidebar-additional showing" id="sidebar-additional">
<% @organization.sponsorships.live.find_each do |sponsorship| %>
<div class="sidebar-sponsorship-level" style="background:<%= sponsorship.decorate.level_color_hex %>">
<%= sponsorship.level.capitalize %> Community Sponsor ❤️
</div>
<% end %>
<%# given the probability that organizations can have lots of users,
here we're using the any?/find_each pattern to avoid loading possibly
too many objects in memory %>
<% if @organization.users.any? %>
<div class="widget">
<div class="widget-suggested-follows-container">
<header><h4>meet the team</h4></header>
<div class="widget-body">
<% @organization.users.find_each do |user| %>
<div class="widget-user-pic">
<a href="/<%= user.username %>">
<img src="<%= ProfileImage.new(user).get(width: 90) %>" alt="<%= user.username %> profile image">
</a>
</div>
<% end %>
</div>
</div>
</div>
<% end %>
</div>
</div>