Class: Decidim::Forms::Admin::QuestionForm
- Inherits:
-
Decidim::Form
- Object
- AttributeObject::Form
- Decidim::Form
- Decidim::Forms::Admin::QuestionForm
- Includes:
- TranslatableAttributes
- Defined in:
- decidim-forms/app/forms/decidim/forms/admin/question_form.rb
Overview
This class holds a Form to update questionnaire questions from Decidim’s admin panel.
Constant Summary
Constants included from AttributeObject::TypeMap
AttributeObject::TypeMap::Boolean, AttributeObject::TypeMap::Decimal
Instance Attribute Summary
Attributes inherited from AttributeObject::Form
Instance Method Summary collapse
- #matrix_rows_by_position ⇒ Object
- #number_of_options ⇒ Object
- #separator? ⇒ Boolean
- #title_and_description? ⇒ Boolean
- #to_param ⇒ Object
Methods included from TranslatableAttributes
#attachment?, #default_locale?
Methods inherited from AttributeObject::Form
ensure_hash, from_model, from_params, hash_from, infer_model_name, #map_model, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #valid?, #with_context
Methods included from AttributeObject::Model
#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h
Instance Method Details
#matrix_rows_by_position ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'decidim-forms/app/forms/decidim/forms/admin/question_form.rb', line 49 def matrix_rows_by_position matrix_rows.sort do |a, b| if a.position && b.position a.position <=> b.position elsif a.position -1 elsif b.position 1 else 0 end end end |
#number_of_options ⇒ Object
37 38 39 |
# File 'decidim-forms/app/forms/decidim/forms/admin/question_form.rb', line 37 def .size end |
#separator? ⇒ Boolean
41 42 43 |
# File 'decidim-forms/app/forms/decidim/forms/admin/question_form.rb', line 41 def separator? question_type == Decidim::Forms::Question::SEPARATOR_TYPE end |
#title_and_description? ⇒ Boolean
45 46 47 |
# File 'decidim-forms/app/forms/decidim/forms/admin/question_form.rb', line 45 def title_and_description? question_type == Decidim::Forms::Question::TITLE_AND_DESCRIPTION_TYPE end |
#to_param ⇒ Object
31 32 33 34 35 |
# File 'decidim-forms/app/forms/decidim/forms/admin/question_form.rb', line 31 def to_param return id if id.present? "questionnaire-question-id" end |