Class: Decidim::Amendable::EmendationActionsCell
- Inherits:
-
ViewModel
- Object
- ViewModel
- Decidim::Amendable::EmendationActionsCell
- Includes:
- LayoutHelper
- Defined in:
- decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb
Overview
This cell renders the action buttons for coauthors to amend the given resource.
Instance Method Summary collapse
- #accept_button_classes ⇒ Object
- #accept_button_label ⇒ Object
- #accept_reject_help_text ⇒ Object
- #current_component ⇒ Object
- #decidim ⇒ Object
- #reject_amend_path ⇒ Object
- #reject_button_classes ⇒ Object
- #reject_button_label ⇒ Object
- #review_amend_path ⇒ Object
Instance Method Details
#accept_button_classes ⇒ Object
18 19 20 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 18 def "button success hollow expanded button--icon button--sc" end |
#accept_button_label ⇒ Object
22 23 24 25 26 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 22 def content = icon "thumb-up" content += t(:button_accept, scope: "decidim.amendments.emendation.actions") content end |
#accept_reject_help_text ⇒ Object
42 43 44 45 46 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 42 def accept_reject_help_text content_tag :small do t(:help_text, scope: "decidim.amendments.emendation.actions") end end |
#current_component ⇒ Object
10 11 12 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 10 def current_component model.component end |
#decidim ⇒ Object
48 49 50 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 48 def decidim Decidim::Core::Engine.routes.url_helpers end |
#reject_amend_path ⇒ Object
28 29 30 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 28 def reject_amend_path decidim.reject_amend_path(amendment) end |
#reject_button_classes ⇒ Object
32 33 34 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 32 def "button alert hollow expanded button--icon button--sc" end |
#reject_button_label ⇒ Object
36 37 38 39 40 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 36 def content = icon "thumb-down" content += t(:button_reject, scope: "decidim.amendments.emendation.actions") content end |
#review_amend_path ⇒ Object
14 15 16 |
# File 'decidim-core/app/cells/decidim/amendable/emendation_actions_cell.rb', line 14 def review_amend_path decidim.review_amend_path(amendment) end |