denny/ShinyCMS-ruby

View on GitHub
plugins/ShinyCMS/app/views/shinycms/comments/_comment_thread.html.erb

Summary

Maintainability
Test Coverage
<% if comment.hidden? %>
<%= render partial: 'comments/hidden_comment', locals: { comment: comment, depth: depth } %>
<% else %>
  <%= render partial: 'comments/comment', locals: { discussion: discussion, comment: comment, depth: depth } %>
<% end %>

<% depth = depth + 2 %>
<% comment.comments.each do |comment| %>
  <%= render partial: 'comments/comment_thread', locals: { discussion: discussion, comment: comment, depth: depth } %>
<% end %>
<% depth = depth - 2 %>