Class: Decidim::Proposals::Admin::ProposalBaseForm

Inherits:
Form show all
Includes:
ApplicationHelper, AttachmentAttributes, TranslatableAttributes
Defined in:
decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb

Overview

A form object to be used when admin users want to create a proposal.

Direct Known Subclasses

ParticipatoryTextProposalForm, ProposalForm

Constant Summary

Constants included from AmendmentsHelper

AmendmentsHelper::TOTAL_STEPS

Constants included from AttributeObject::TypeMap

AttributeObject::TypeMap::Boolean, AttributeObject::TypeMap::Decimal

Instance Attribute Summary

Attributes inherited from AttributeObject::Form

#context

Instance Method Summary collapse

Methods included from ApplicationHelper

#cell, #edit_link, #extra_admin_link, #html_truncate, #present, #prevent_timeout_seconds, #resolve_presenter_class, #step_cta_url

Methods included from CacheHelper

#cache

Methods included from AmendmentsHelper

#accept_and_reject_buttons_for, #action_button_card_for, #allowed_to_accept_and_reject?, #allowed_to_promote?, #amend_button_for, #amendments_enabled?, #amendments_form_field_for, #amendments_form_fields_label, #amendments_form_fields_value, #can_participate_in_private_space?, #can_react_to_emendation?, #current_step, #emendation_actions_for, #emendation_announcement_for, #promote_button_for, #render_emendation_body, #total_steps, #wizard_aside_back_url, #wizard_header_title

Methods included from RichTextEditorHelper

included, #text_editor_for

Methods included from ContextualHelpHelper

#floating_help

Methods included from ScopesHelper

#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_select_field, #scopes_select_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, #ordered_scopes_descendants, #ordered_scopes_descendants_for_select, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag

Methods included from OmniauthHelper

#normalize_provider_name, #oauth_icon, #provider_name

Methods inherited from AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #to_param, #valid?, #with_context

Methods included from AttributeObject::Model

#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h

Instance Method Details

#authorObject



93
94
95
96
97
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 93

def author
  return current_organization unless created_in_meeting?

  meeting_as_author
end

#categoryObject

Finds the Category from the category_id.

Returns a Decidim::Category



52
53
54
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 52

def category
  @category ||= categories.find_by(id: category_id)
end

#component_automatic_hashtagsObject



112
113
114
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 112

def component_automatic_hashtags
  @component_automatic_hashtags ||= ordered_hashtag_list(current_component.current_settings.automatic_hashtags)
end

#component_suggested_hashtagsObject



116
117
118
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 116

def component_suggested_hashtags
  @component_suggested_hashtags ||= ordered_hashtag_list(current_component.current_settings.suggested_hashtags)
end

#extra_hashtagsObject



99
100
101
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 99

def extra_hashtags
  @extra_hashtags ||= (component_automatic_hashtags + suggested_hashtags).uniq
end

#geocoded?Boolean

Returns:



78
79
80
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 78

def geocoded?
  latitude.present? && longitude.present?
end

#geocoding_enabled?Boolean

Returns:



70
71
72
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 70

def geocoding_enabled?
  Decidim::Map.available?(:geocoding) && current_component.settings.geocoding_enabled?
end

#has_address?Boolean

Returns:



74
75
76
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 74

def has_address?
  geocoding_enabled? && address.present?
end

#map_model(model) ⇒ Object



37
38
39
40
41
42
43
44
45
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 37

def map_model(model)
  body = translated_attribute(model.body)
  @suggested_hashtags = Decidim::ContentRenderers::HashtagRenderer.new(body).extra_hashtags.map(&:name).map(&:downcase)

  return unless model.categorization

  self.category_id = model.categorization.decidim_category_id
  self.scope_id = model.decidim_scope_id
end

#meeting_as_authorObject

Return the meeting as author



89
90
91
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 89

def meeting_as_author
  @meeting_as_author ||= meetings.find_by(id: meeting_id)
end

#meetingsObject

Finds the Meetings of the current participatory space



83
84
85
86
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 83

def meetings
  @meetings ||= Decidim.find_resource_manifest(:meetings).try(:resource_scope, current_component)
                  &.published&.order(title: :asc)
end

#scopeObject

Finds the Scope from the given decidim_scope_id, uses participatory space scope if missing.

Returns a Decidim::Scope



59
60
61
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 59

def scope
  @scope ||= @attributes["scope_id"].value ? current_component.scopes.find_by(id: @attributes["scope_id"].value) : current_component.scope
end

#scope_idObject

Scope identifier

Returns the scope identifier related to the proposal



66
67
68
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 66

def scope_id
  super || scope&.id
end

#suggested_hashtag_checked?(hashtag) ⇒ Boolean

Returns:



108
109
110
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 108

def suggested_hashtag_checked?(hashtag)
  suggested_hashtags.member?(hashtag)
end

#suggested_hashtagsObject



103
104
105
106
# File 'decidim-proposals/app/forms/decidim/proposals/admin/proposal_base_form.rb', line 103

def suggested_hashtags
  downcased_suggested_hashtags = super.to_set(&:downcase)
  component_suggested_hashtags.select { |hashtag| downcased_suggested_hashtags.member?(hashtag.downcase) }
end