* app/helpers i18n * tidy key names * fix keys * delete ja.yml * fix spec * fix spec 2 * fix for PR * remove one key for PR * delete ja.yml
79 lines
2.3 KiB
Ruby
79 lines
2.3 KiB
Ruby
module CommentsHelper
|
|
MAX_COMMENTS_TO_RENDER = 250
|
|
MIN_COMMENTS_TO_RENDER = 8
|
|
|
|
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
|
|
case comment.public_reactions_count
|
|
when 0
|
|
I18n.t("helpers.comments_helper.like")
|
|
else
|
|
I18n.t("helpers.comments_helper.nbsp_likes_html", count: comment.public_reactions_count)
|
|
end
|
|
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
|