hide forum votes if the request is not pending
This commit is contained in:
@@ -155,7 +155,7 @@ class PixivApiClient
|
||||
raise Error.new("Pixiv API call failed (status=#{resp.code} body=#{body})")
|
||||
end
|
||||
rescue Net::OpenTimeout
|
||||
print "R"
|
||||
print "R" if Rails.env.test?
|
||||
sleep(5)
|
||||
retry
|
||||
rescue JSON::ParserError
|
||||
@@ -191,7 +191,7 @@ class PixivApiClient
|
||||
end
|
||||
|
||||
rescue Net::OpenTimeout
|
||||
print "R"
|
||||
print "R" if Rails.env.test?
|
||||
sleep(5)
|
||||
retry
|
||||
end
|
||||
|
||||
@@ -134,6 +134,10 @@ class ForumPost < ApplicationRecord
|
||||
end
|
||||
end
|
||||
|
||||
def tag_change_request
|
||||
bulk_update_request || tag_alias || tag_implication
|
||||
end
|
||||
|
||||
def votable?
|
||||
# shortcut to eliminate posts that are probably not tag change requests
|
||||
body =~ /->/ && (bulk_update_request.present? || tag_alias.present? || tag_implication.present?) && created_at >= TagRelationship::EXPIRY.days.ago
|
||||
|
||||
@@ -11,6 +11,6 @@
|
||||
<%= render "forum_post_votes/vote", vote: vote, forum_post: forum_post %>
|
||||
<% end %>
|
||||
|
||||
<% if !votes.by(CurrentUser.user.id).exists? %>
|
||||
<% if forum_post.tag_change_request.is_pending? && !votes.by(CurrentUser.user.id).exists? %>
|
||||
<%= render "forum_post_votes/add_vote", vote: votes.by(CurrentUser.user.id).first, forum_post: forum_post %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%>
|
||||
|
||||
<li class="vote-score-<%= vote.vote_type %>">
|
||||
<% if vote.creator_id == CurrentUser.id %>
|
||||
<% if forum_post.tag_change_request.is_pending? && vote.creator_id == CurrentUser.id %>
|
||||
<%= link_to content_tag(:i, nil, class: "far #{vote.fa_class}"), forum_post_votes_path(forum_post_id: forum_post.id, format: "js"), remote: true, method: :delete %>
|
||||
<%= link_to_user vote.creator %>
|
||||
<% else %>
|
||||
|
||||
Reference in New Issue
Block a user