20 lines
964 B
Plaintext
20 lines
964 B
Plaintext
<div id="p-index-by-comment" class="comments-for-post">
|
|
<div class="list-of-comments list-of-messages">
|
|
<% dtext_data = DText.preprocess(@comments.map(&:body)) %>
|
|
<% @comments.each do |comment| %>
|
|
<% if CurrentUser.is_moderator? || (params[:search] && params[:search][:is_deleted] =~ /t/) || !comment.is_deleted? %>
|
|
<%= tag.div id: "post_#{comment.post.id}", **PostPreviewComponent.new(post: comment.post).article_attrs("post") do %>
|
|
<div class="preview">
|
|
<% if policy(comment.post).visible? %>
|
|
<%= link_to(image_tag(comment.post.preview_file_url), post_path(comment.post)) %>
|
|
<% end %>
|
|
</div>
|
|
<%= render_comment(comment, dtext_data: dtext_data, context: :index_by_comment, show_deleted: params.dig(:search, :is_deleted).to_s.truthy?, current_user: CurrentUser.user) %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= numbered_paginator(@comments) %>
|