73 lines
3.6 KiB
Plaintext
73 lines
3.6 KiB
Plaintext
<div class="comment-box" id="comments-box-<%= annotation.id %>">
|
|
<div class="comment-header">
|
|
<span class="icon-comment" aria-hidden="true"></span>
|
|
<div class="comment-number"><%= t('legislation.annotations.comments.comments_count', count: annotation.comments.roots.count) %></div>
|
|
<%= link_to legislation_process_draft_version_annotation_path(annotation.draft_version.process, annotation.draft_version, annotation) do %>
|
|
<span class="icon-expand" aria-hidden="true"></span>
|
|
<% end %>
|
|
</div>
|
|
<div class="comments-wrapper">
|
|
<% annotation.comments.roots.sort_by_most_voted.limit(Legislation::Annotation::COMMENTS_PAGE_SIZE).each do |comment| %>
|
|
<div class="comment">
|
|
<div class="comment-text">
|
|
<p><%= truncate comment.body, length: 250 %></p>
|
|
</div>
|
|
<div class="comment-meta">
|
|
<div class="comment-more-info">
|
|
<% if comment.body.length > 250 %>
|
|
<div class="comment-expand">
|
|
<%= link_to legislation_process_draft_version_annotation_path(annotation.draft_version.process, annotation.draft_version, annotation) do %>
|
|
<%= t('legislation.annotations.comments.see_complete') %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<div class="comment-replies">
|
|
<%= link_to legislation_process_draft_version_annotation_path(annotation.draft_version.process, annotation.draft_version, annotation, anchor: "comment_#{comment.id}") do %>
|
|
<%= t('legislation.annotations.comments.replies_count', count: comment.children.size) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div class="comment-votes">
|
|
<div id="<%= dom_id(comment) %>_votes" class="comment-votes float-right">
|
|
<%= render 'comments/votes', comment: comment %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="comment-footer">
|
|
<% if annotation.comments.roots.count > Legislation::Annotation::COMMENTS_PAGE_SIZE %>
|
|
<%= link_to legislation_process_draft_version_annotation_path(annotation.draft_version.process, annotation.draft_version, annotation), class: "button strong" do %>
|
|
<%= t('legislation.annotations.comments.see_all') %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if @process.open_phase?(:allegations) %>
|
|
<a class="button strong publish-comment" href="#"><%= t('legislation.annotations.comments.publish_comment') %></a>
|
|
|
|
<% end %>
|
|
|
|
<% if @process.open_phase?(:allegations) %>
|
|
<% if user_signed_in? %>
|
|
<% css_id = parent_or_commentable_dom_id(nil, annotation) %>
|
|
<div id="js-comment-form-annotation-<%= annotation.id %>" style="display:none" class="comment-form js-comment-form-annotation">
|
|
<%= form_for @comment, url: legislation_process_draft_version_annotation_new_comment_path(annotation.draft_version.process, annotation.draft_version, annotation), remote: true do |f| %>
|
|
<%= label_tag "comment-body-#{css_id}", leave_comment_text(annotation) %>
|
|
<%= f.text_area :body, id: "comment-body-#{css_id}", maxlength: Comment.body_max_length, label: false, rows: 8 %>
|
|
<%= f.submit comment_button_text(nil, annotation), class: "button" %>
|
|
<% end %>
|
|
</div>
|
|
<% else %>
|
|
<div data-alert class="callout primary">
|
|
<%= t("legislation.annotations.form.login_to_comment",
|
|
signin: link_to(t("legislation.annotations.form.signin"), new_user_session_path),
|
|
signup: link_to(t("legislation.annotations.form.signup"), new_user_registration_path)).html_safe %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|