Sha256: 53d20ddbe34250481d83b17bc792462d246c2c6ee92d8fd0cc51de44ade6e1da

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

<%= content_tag :div, id: "comment_#{model.id}", class: comment_classes, data: { comment_id: model.id } do %>
  <div class="comment__header">
    <div class="author-data">
      <div class="author-data__main">
        <%= render :author %>
        <span>
          <%= time_tag created_at, l(created_at, format: :decidim_short) %>
        </span>
      </div>
      <div class="author-data__extra">
        <%= render :utilities %>
      </div>
    </div>
  </div>
  <div class="comment__content">
    <%= alignment_badge %>
    <%= comment_body %>
  </div>
  <div class="comment__footer">
    <%= render :actions %>
    <%= votes %>
  </div>
  <div id="comment-<%= model.id %>-replies">
    <% if has_replies? %>
      <% replies.each do |reply| %>
        <%= cell("decidim/comments/comment", reply, root_depth: root_depth, order: order) %>
      <% end %>
    <% end %>
  </div>
  <% if can_reply? %>
    <div class="comment__additionalreply<%= " hide" unless has_replies? %>">
      <button class="comment__reply muted-link" aria-controls="<%= reply_id %>" data-toggle="<%= reply_id %>">
        <%= icon "pencil", class: "icon--small", role: "none presentation" %>&nbsp;<%= t("decidim.components.comment.reply") %>
      </button>
    </div>
    <div class="add-comment hide" id="<%= reply_id %>" data-toggler=".hide">
      <%== cell("decidim/comments/comment_form", model, root_depth: root_depth, order: order) %>
    </div>
  <% end %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-comments-0.24.3 app/cells/decidim/comments/comment/show.erb
decidim-comments-0.24.2 app/cells/decidim/comments/comment/show.erb
decidim-comments-0.24.1 app/cells/decidim/comments/comment/show.erb
decidim-comments-0.24.0 app/cells/decidim/comments/comment/show.erb
decidim-comments-0.24.0.rc2 app/cells/decidim/comments/comment/show.erb
decidim-comments-0.24.0.rc1 app/cells/decidim/comments/comment/show.erb