Class: Decidim::Budgets::Admin::ProjectForm
- Inherits:
-
Form
- Object
- Form
- Decidim::Budgets::Admin::ProjectForm
- Includes:
- TranslatableAttributes, TranslationsHelper
- Defined in:
- app/forms/decidim/budgets/admin/project_form.rb
Overview
This class holds a Form to create/update projects from Decidim’s admin panel.
Instance Method Summary collapse
-
#category ⇒ Object
Finds the Category from the decidim_category_id.
-
#decidim_scope_id ⇒ Object
Scope identifier.
- #map_model(model) ⇒ Object
- #proposals ⇒ Object
-
#scope ⇒ Object
Finds the Scope from the given decidim_scope_id, uses participatory space scope if missing.
Instance Method Details
#category ⇒ Object
Finds the Category from the decidim_category_id.
Returns a Decidim::Category
45 46 47 |
# File 'app/forms/decidim/budgets/admin/project_form.rb', line 45 def category @category ||= categories.find_by(id: decidim_category_id) end |
#decidim_scope_id ⇒ Object
Scope identifier
Returns the scope identifier related to the project
59 60 61 |
# File 'app/forms/decidim/budgets/admin/project_form.rb', line 59 def decidim_scope_id @decidim_scope_id || scope&.id end |
#map_model(model) ⇒ Object
30 31 32 33 34 35 36 |
# File 'app/forms/decidim/budgets/admin/project_form.rb', line 30 def map_model(model) self.proposal_ids = model.linked_resources(:proposals, "included_proposals").pluck(:id) return unless model.categorization self.decidim_category_id = model.categorization.decidim_category_id end |
#proposals ⇒ Object
38 39 40 |
# File 'app/forms/decidim/budgets/admin/project_form.rb', line 38 def proposals @proposals ||= Decidim.find_resource_manifest(:proposals).try(:resource_scope, current_feature)&.order(title: :asc)&.pluck(:title, :id) end |
#scope ⇒ Object
Finds the Scope from the given decidim_scope_id, uses participatory space scope if missing.
Returns a Decidim::Scope
52 53 54 |
# File 'app/forms/decidim/budgets/admin/project_form.rb', line 52 def scope @scope ||= @decidim_scope_id ? current_participatory_space.scopes.find_by(id: @decidim_scope_id) : current_participatory_space.scope end |