Move votes partials to components

We're going to change the code quite a bit, and with components we can
easily extract methods when necessary.
This commit is contained in:
Javi Martín
2021-09-28 19:10:27 +02:00
parent 0bacd5baf3
commit 78f372fd0b
16 changed files with 394 additions and 338 deletions

View File

@@ -0,0 +1,8 @@
class Comments::VotesComponent < ApplicationComponent
attr_reader :comment
delegate :user_signed_in?, :can?, :link_to_signin, :link_to_signup, to: :helpers
def initialize(comment)
@comment = comment
end
end