Class: Decidim::Amendable::EmendationActionsCell

Inherits:
ViewModel
  • Object
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

Methods included from LayoutHelper

#_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

Methods included from MarkupHelper

#element_id

Methods included from ReplaceButtonsHelper

#button_to, #submit_tag

Methods included from Decidim::ActionAuthorizationHelper

#action_authorized_button_to, #action_authorized_link_to, #logged_button_to, #logged_link_to

Methods included from ScopesHelper

#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_picker_tag

Methods included from TranslatableAttributes

#default_locale?

Methods included from DecidimFormHelper

#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

Methods included from ResourceHelper

#linked_classes_filter_values_for, #linked_classes_for, #linked_resources_for, #resource_locator, #resource_title

Instance Method Details

#accept_button_classesObject



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

#accept_button_labelObject



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_textObject



42
43
44
45
46
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 42

def accept_reject_help_text
   :small do
    t(:help_text, scope: "decidim.amendments.emendation.actions")
  end
end

#current_componentObject



10
11
12
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 10

def current_component
  model.component
end

#decidimObject



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_pathObject



28
29
30
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 28

def reject_amend_path
  decidim.reject_amend_path(amendment)
end

#reject_button_classesObject



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

#reject_button_labelObject



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_pathObject



14
15
16
# File 'app/cells/decidim/amendable/emendation_actions_cell.rb', line 14

def review_amend_path
  decidim.review_amend_path(amendment)
end