Remove duplication rendering comments

We were using the same code 5 times, with the only slight variation
being the extra heading in the debates section.
This commit is contained in:
Javi Martín
2021-06-26 21:45:20 +02:00
parent 81f274a319
commit c3e0a6b089
8 changed files with 42 additions and 90 deletions

View File

@@ -0,0 +1,9 @@
class Shared::CommentsComponent < ApplicationComponent
attr_reader :record, :comment_tree
delegate :current_user, :current_order, :locale_and_user_status, :commentable_cache_key, to: :helpers
def initialize(record, comment_tree)
@record = record
@comment_tree = comment_tree
end
end