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

Inherits:
Form
  • Object
show all
Includes:
ApplicationHelper, AttachmentAttributes, TranslatableAttributes
Defined in:
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

Instance Method Summary collapse

Instance Method Details

#authorObject



93
94
95
96
97
# File '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 '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 '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 '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 '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:

  • (Boolean)


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

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

#geocoding_enabled?Boolean

Returns:

  • (Boolean)


70
71
72
# File '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:

  • (Boolean)


74
75
76
# File '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 '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 '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 'app/forms/decidim/proposals/admin/proposal_base_form.rb', line 83

def meetings
  @meetings ||= Decidim.find_resource_manifest(:meetings).try(:resource_scope, current_component)
                       &.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 'app/forms/decidim/proposals/admin/proposal_base_form.rb', line 59

def scope
  @scope ||= @scope_id ? current_component.scopes.find_by(id: @scope_id) : current_component.scope
end

#scope_idObject

Scope identifier

Returns the scope identifier related to the proposal



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

def scope_id
  @scope_id || scope&.id
end

#suggested_hashtag_checked?(hashtag) ⇒ Boolean

Returns:

  • (Boolean)


108
109
110
# File '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 'app/forms/decidim/proposals/admin/proposal_base_form.rb', line 103

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