Class: Decidim::Proposals::Admin::ProposalBaseForm
- Inherits:
-
Form
- Object
- Form
- Decidim::Proposals::Admin::ProposalBaseForm
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.
Instance Method Summary
collapse
Instance Method Details
#author ⇒ Object
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
|
#category ⇒ Object
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
|
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
|
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
|
99
100
101
|
# File 'app/forms/decidim/proposals/admin/proposal_base_form.rb', line 99
def
@extra_hashtags ||= (component_automatic_hashtags + suggested_hashtags).uniq
end
|
#geocoded? ⇒ 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
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
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)..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_author ⇒ Object
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
|
#meetings ⇒ Object
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)
&.published&.order(title: :asc)
end
|
#scope ⇒ Object
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 ||= @attributes["scope_id"].value ? current_component.scopes.find_by(id: @attributes["scope_id"].value) : current_component.scope
end
|
#scope_id ⇒ Object
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
super || scope&.id
end
|
#suggested_hashtag_checked?(hashtag) ⇒ 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
|
103
104
105
106
|
# File '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
|