mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
32 lines
707 B
Ruby
32 lines
707 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StudentSurveyPresenter < DataItemPresenter
|
|
attr_reader :survey_items
|
|
|
|
def initialize(measure_id:, survey_items:, has_sufficient_data:, school:, academic_year:)
|
|
super(measure_id:, has_sufficient_data:, school:, academic_year:)
|
|
@survey_items = survey_items
|
|
end
|
|
|
|
def title
|
|
'Student survey'
|
|
end
|
|
|
|
def id
|
|
"student-survey-items-#{@measure_id}"
|
|
end
|
|
|
|
def item_descriptions
|
|
@survey_items.map(&:prompt)
|
|
end
|
|
|
|
def reason_for_insufficiency
|
|
'low response rate'
|
|
end
|
|
|
|
def descriptions_and_availability
|
|
survey_items.map do |survey_item|
|
|
DataAvailability.new(survey_item.survey_item_id, survey_item.prompt, true)
|
|
end
|
|
end
|
|
end
|