Class: Decidim::Amendable::EmendationActionsCell
- Inherits:
-
ViewModel
- Object
- Cell::ViewModel
- ViewModel
- Decidim::Amendable::EmendationActionsCell
show all
- Includes:
- LayoutHelper
- Defined in:
- 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
#_icon_classes, #apple_favicon, #application_path, #extended_navigation_bar, #external_icon, #favicon, #icon, #legacy_favicon, #organization_colors, #role
Methods inherited from ViewModel
#call, #current_user
#element_id
#button_to, #submit_tag
#action_authorized_button_to, #action_authorized_link_to, #logged_button_to, #logged_link_to
#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_picker_tag
#default_locale?
#areas_for_select, #base_error_messages, #decidim_form_for, #decidim_form_slug_url, #editor_field_tag, #form_field_has_error?, #form_required_explanation, #name_with_locale, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag
#linked_classes_filter_values_for, #linked_classes_for, #linked_resources_for, #resource_locator, #resource_title
Instance Method Details
18
19
20
|
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 18
def accept_button_classes
"button success hollow expanded button--icon button--sc"
end
|
22
23
24
25
26
|
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 22
def accept_button_label
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 '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 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 10
def current_component
model.component
end
|
#decidim ⇒ Object
48
49
50
|
# File '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 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 28
def reject_amend_path
decidim.reject_amend_path(amendment)
end
|
32
33
34
|
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 32
def reject_button_classes
"button alert hollow expanded button--icon button--sc"
end
|
36
37
38
39
40
|
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 36
def reject_button_label
content = icon "thumb-down"
content += t(:button_reject, scope: "decidim.amendments.emendation.actions")
content
end
|
#review_amend_path ⇒ Object
14
15
16
|
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 14
def review_amend_path
decidim.review_amend_path(amendment)
end
|