Class: Decidim::Votings::ClosureResultForm

Inherits:
Form show all
Defined in:
decidim-elections/app/forms/decidim/votings/closure_result_form.rb

Constant Summary

Constants included from AttributeObject::TypeMap

AttributeObject::TypeMap::Boolean, AttributeObject::TypeMap::Decimal

Instance Attribute Summary

Attributes inherited from AttributeObject::Form

#context

Instance Method Summary collapse

Methods inherited from AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #to_param, #valid?, #with_context

Methods included from AttributeObject::Model

#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h

Instance Method Details

#map_model(model) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'decidim-elections/app/forms/decidim/votings/closure_result_form.rb', line 18

def map_model(model)
  self.id = model.id
  self.polling_station_id = model.polling_station.id
  self.election_id = model.election.id

  self.ballot_results = BallotResultForm.from_model(model)

  self.question_results = model.election.questions.flat_map do |question|
    QuestionResultForm.from_model(question:, closure: model)
  end

  self.answer_results = model.election.questions.flat_map do |question|
    question.answers.map do |answer|
      AnswerResultForm.from_model(answer:, closure: model)
    end
  end
end