90 lines
2.9 KiB
Plaintext
90 lines
2.9 KiB
Plaintext
<div class="votes">
|
|
<% if user_signed_in? %>
|
|
<%= t("comments.comment.votes", count: comment.total_votes) %>
|
|
|
|
|
|
|
<span class="in_favor">
|
|
<% if can?(:vote, comment) %>
|
|
<%= link_to vote_comment_path(comment, value: "yes"),
|
|
method: "post", remote: true, title: t("votes.agree") do %>
|
|
<span class="icon-like">
|
|
<span class="show-for-sr"><%= t("votes.agree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to new_user_session_path do %>
|
|
<span class="icon-like">
|
|
<span class="show-for-sr"><%= t("votes.agree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
<%= comment.total_likes %>
|
|
</span>
|
|
|
|
<span class="against">
|
|
<% if can?(:vote, comment) %>
|
|
<%= link_to vote_comment_path(comment, value: "no"),
|
|
method: "post", remote: true, title: t("votes.disagree") do %>
|
|
<span class="icon-unlike">
|
|
<span class="show-for-sr"><%= t("votes.disagree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<span class="icon-unlike">
|
|
<span class="show-for-sr"><%= t("votes.disagree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<%= comment.total_dislikes %>
|
|
</span>
|
|
|
|
<% elsif !user_signed_in? %>
|
|
|
|
<div class="participation-allowed">
|
|
<%= t("comments.comment.votes", count: comment.total_votes) %>
|
|
|
|
|
|
|
<span class="in_favor">
|
|
<% if can?(:vote, comment) %>
|
|
<%= link_to vote_comment_path(comment, value: "yes"),
|
|
method: "post", remote: true, title: t("votes.agree") do %>
|
|
<span class="icon-like">
|
|
<span class="show-for-sr"><%= t("votes.agree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to new_user_session_path do %>
|
|
<span class="icon-like">
|
|
<span class="show-for-sr"><%= t("votes.agree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
<%= comment.total_likes %>
|
|
</span>
|
|
|
|
<span class="against">
|
|
<% if can?(:vote, comment) %>
|
|
<%= link_to vote_comment_path(comment, value: "no"),
|
|
method: "post", remote: true, title: t("votes.disagree") do %>
|
|
<span class="icon-unlike">
|
|
<span class="show-for-sr"><%= t("votes.disagree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to new_user_session_path do %>
|
|
<span class="icon-unlike">
|
|
<span class="show-for-sr"><%= t("votes.disagree") %></span>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
<%= comment.total_dislikes %>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="participation-not-allowed" style="display:none" aria-hidden="false">
|
|
<%= t("votes.comment_unauthenticated",
|
|
signin: link_to_signin,
|
|
signup: link_to_signup).html_safe %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|