Class: Decidim::Meetings::UserAnswersSerializer

Inherits:
Exporters::Serializer
  • Object
show all
Includes:
TranslationsHelper
Defined in:
lib/decidim/meetings/user_answers_serializer.rb

Overview

This class serializes the answers given by a User for questionnaire so can be exported to CSV, JSON or other formats.

Instance Method Summary collapse

Constructor Details

#initialize(answers) ⇒ UserAnswersSerializer

Public: Initializes the serializer with a collection of Answers.



11
12
13
# File 'lib/decidim/meetings/user_answers_serializer.rb', line 11

def initialize(answers)
  @answers = answers
end

Instance Method Details

#serializeObject

Public: Exports a hash with the serialized data for the user answers.



16
17
18
19
20
21
22
23
24
25
# File 'lib/decidim/meetings/user_answers_serializer.rb', line 16

def serialize
  @answers.each_with_index.inject({}) do |serialized, (answer, idx)|
    serialized.update(
      answer_translated_attribute_name(:id) => [answer.id, answer.user.id].join("_"),
      answer_translated_attribute_name(:created_at) => answer.created_at.to_s(:db),
      answer_translated_attribute_name(:user_status) => answer_translated_attribute_name(answer.decidim_user_id.present? ? "registered" : "unregistered"),
      "#{idx + 1}. #{translated_attribute(answer.question.body)}" => normalize_body(answer)
    )
  end
end