docbrown/app/helpers/comments_helper.rb
Joshua Wehner 201f4d998a
Try hiding low-quality comments (#18513)
* Try hiding low-quality comments

* Message indicating when negative comments are being hidden

* Adjust comment show count for logged-out visitors

* Remove unusued comments_to_show_count from article decorator

* Remove unusued comments_to_show_count from podcast episode decorator

* Add test for hidden negative comment

* Update spec/system/articles/user_visits_an_article_spec.rb

Co-authored-by: Fernando Valverde <fernando@fdo.cr>

* Don't create twice; do test logged-in and -out

* Comment caching needs to account for signed-in status

Co-authored-by: Fernando Valverde <fernando@fdo.cr>
2022-10-11 14:15:40 +02:00

117 lines
3.5 KiB
Ruby

module CommentsHelper
MAX_COMMENTS_TO_RENDER = 250
MIN_COMMENTS_TO_RENDER = 8
def any_negative_comments?(commentable)
commentable.comments.where("score < 0").any?
end
def any_hidden_negative_comments?(commentable)
!user_signed_in? && any_negative_comments?(commentable)
end
def all_comments_visible?(commentable)
!(commentable.any_comments_hidden || any_hidden_negative_comments?(commentable))
end
def article_comment_tree(article, count, order)
@article_comment_tree ||= begin
collection = Comment.tree_for(article, count, order)
collection.reject! { |comment| comment.score.negative? } unless user_signed_in?
collection
end
end
def podcast_comment_tree(episode)
@podcast_comment_tree ||= begin
collection = Comment.tree_for(episode, 12)
collection.reject! { |comment| comment.score.negative? } unless user_signed_in?
collection
end
end
def comment_class(comment, is_view_root: false)
if comment.root? || is_view_root
"root"
else
"child"
end
end
def comment_user_id_unless_deleted(comment)
comment.deleted ? 0 : comment.user_id
end
def commentable_author_is_op?(commentable, comment)
commentable &&
[
commentable.user_id,
commentable.co_author_ids,
].flatten.any?(comment.user_id)
end
def get_ama_or_op_banner(commentable)
if commentable.decorate.cached_tag_list_array.include?(I18n.t("helpers.comments_helper.ama"))
I18n.t("helpers.comments_helper.ask_me_anything")
else
I18n.t("helpers.comments_helper.author")
end
end
def tree_for(comment, sub_comments, commentable)
nested_comments(tree: { comment => sub_comments }, commentable: commentable, is_view_root: true)
end
def should_be_hidden?(comment, root_comment)
# when opened by a permalink + root comment is hidden => show root comment and its descendants
comment.hidden_by_commentable_user && comment != root_comment && !root_comment&.hidden_by_commentable_user
end
def high_number_of_comments?(comments_number)
comments_number > MAX_COMMENTS_TO_RENDER
end
def view_all_comments?(comments_number)
comments_number > MIN_COMMENTS_TO_RENDER
end
def number_of_comments_to_render
MAX_COMMENTS_TO_RENDER
end
def comment_count(view)
view == "comments" ? MAX_COMMENTS_TO_RENDER : MIN_COMMENTS_TO_RENDER
end
def like_button_text(comment)
# TODO: [yheuhtozr] support cross-element i18n compatible with initializeCommentsPage.js.erb
if comment.public_reactions_count.zero?
""
else
I18n.t("helpers.comments_helper.nbsp_likes_html", count: comment.public_reactions_count)
end
end
def contextual_comment_url(comment, article: nil)
# Liquid tag parsing doesn't have Devise/Warden (request middleware)
return URL.comment(comment) if request.env["warden"].nil?
# Logged in users should get the comment permalink
return URL.comment(comment) if user_signed_in?
# Logged out users should get the article URL with the comment anchor
URL.fragment_comment(comment, path: article&.path)
end
private
def nested_comments(tree:, commentable:, is_view_root: false)
comments = tree.map do |comment, sub_comments|
render("comments/comment", comment: comment, commentable: commentable,
is_view_root: is_view_root, is_childless: sub_comments.empty?,
subtree_html: nested_comments(tree: sub_comments, commentable: commentable))
end
safe_join(comments)
end
end