Class: CamaleonCms::PostCommentDecorator
- Inherits:
-
Draper::Decorator
- Object
- Draper::Decorator
- CamaleonCms::PostCommentDecorator
- Defined in:
- app/decorators/camaleon_cms/post_comment_decorator.rb
Instance Method Summary collapse
- #the_answers ⇒ Object
- #the_author_email ⇒ Object
- #the_author_name ⇒ Object
- #the_author_url ⇒ Object
- #the_content ⇒ Object
-
#the_created_at(format = :long) ⇒ Object
return created at date formatted.
- #the_post ⇒ Object
-
#the_user ⇒ Object
(also: #the_author)
return owner of this comment.
Instance Method Details
#the_answers ⇒ Object
24 25 26 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 24 def the_answers object.children.approveds end |
#the_author_email ⇒ Object
32 33 34 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 32 def object..presence || object.user.email end |
#the_author_name ⇒ Object
28 29 30 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 28 def object..presence || object.user.full_name end |
#the_author_url ⇒ Object
36 37 38 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 36 def object..presence || (object.user.username == 'anonymous' ? '' : object.user.decorate.the_url) end |
#the_content ⇒ Object
20 21 22 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 20 def the_content object.content end |
#the_created_at(format = :long) ⇒ Object
return created at date formatted
6 7 8 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 6 def the_created_at(format = :long) h.l(object.created_at, format: format.to_sym) end |
#the_post ⇒ Object
16 17 18 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 16 def the_post object.post.decorate end |
#the_user ⇒ Object Also known as:
return owner of this comment
11 12 13 |
# File 'app/decorators/camaleon_cms/post_comment_decorator.rb', line 11 def the_user object.user.decorate end |