Class: Decidim::Debates::Admin::DebateForm
- Inherits:
-
Form
- Object
- Form
- Decidim::Debates::Admin::DebateForm
- Includes:
- TranslatableAttributes
- Defined in:
- app/forms/decidim/debates/admin/debate_form.rb
Overview
This class holds a Form to create/update debates from Decidim’s admin panel.
Instance Method Summary collapse
- #category ⇒ Object
- #map_model(model) ⇒ Object
-
#scope ⇒ Object
Finds the Scope from the given decidim_scope_id, uses the compoenent scope if missing.
-
#scope_id ⇒ Object
Scope identifier.
Instance Method Details
#category ⇒ Object
39 40 41 42 43 |
# File 'app/forms/decidim/debates/admin/debate_form.rb', line 39 def category return unless current_component @category ||= current_component.categories.find_by(id: decidim_category_id) end |
#map_model(model) ⇒ Object
31 32 33 34 35 36 37 |
# File 'app/forms/decidim/debates/admin/debate_form.rb', line 31 def map_model(model) self.decidim_category_id = model.categorization.decidim_category_id if model.categorization presenter = DebatePresenter.new(model) self.title = presenter.title(all_locales: title.is_a?(Hash)) self.description = presenter.description(all_locales: description.is_a?(Hash)) end |
#scope ⇒ Object
Finds the Scope from the given decidim_scope_id, uses the compoenent scope if missing.
Returns a Decidim::Scope
48 49 50 |
# File 'app/forms/decidim/debates/admin/debate_form.rb', line 48 def scope @scope ||= @scope_id ? current_component.scopes.find_by(id: @scope_id) : current_component.scope end |
#scope_id ⇒ Object
Scope identifier
Returns the scope identifier related to the meeting
55 56 57 |
# File 'app/forms/decidim/debates/admin/debate_form.rb', line 55 def scope_id @scope_id || scope&.id end |