You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.0 KiB
72 lines
2.0 KiB
class Form::Subsection |
|
attr_accessor :id, :label, :section, :pages, :depends_on, :form |
|
|
|
def initialize(id, hsh, section) |
|
@id = id |
|
@label = hsh["label"] |
|
@depends_on = hsh["depends_on"] |
|
@pages = hsh["pages"].map { |s_id, p| Form::Page.new(s_id, p, self) } |
|
@section = section |
|
end |
|
|
|
delegate :form, to: :section |
|
|
|
def questions |
|
@questions ||= pages.flat_map(&:questions) |
|
end |
|
|
|
def enabled?(case_log) |
|
return true unless depends_on |
|
|
|
depends_on.any? do |conditions_set| |
|
conditions_set.all? do |subsection_id, dependent_status| |
|
form.get_subsection(subsection_id).status(case_log) == dependent_status.to_sym |
|
end |
|
end |
|
end |
|
|
|
def status(case_log) |
|
unless enabled?(case_log) |
|
return :cannot_start_yet |
|
end |
|
|
|
qs = applicable_questions(case_log) |
|
qs_optional_removed = qs.reject { |q| CaseLog::OPTIONAL_FIELDS.include?(q.id) } |
|
return :not_started if qs.all? { |question| case_log[question.id].blank? || question.read_only? } |
|
return :completed if qs_optional_removed.all? { |question| question.completed?(case_log) } |
|
|
|
:in_progress |
|
end |
|
|
|
def is_incomplete?(case_log) |
|
%i[not_started in_progress].include?(status(case_log)) |
|
end |
|
|
|
def is_started?(case_log) |
|
%i[in_progress completed].include?(status(case_log)) |
|
end |
|
|
|
def applicable_questions_count(case_log) |
|
applicable_questions(case_log).count |
|
end |
|
|
|
def answered_questions_count(case_log) |
|
answered_questions(case_log).count |
|
end |
|
|
|
def applicable_questions(case_log) |
|
questions.select { |q| (displayed_to_user?(case_log, q) && !q.hidden_in_check_answers?(case_log)) || q.has_inferred_check_answers_value?(case_log) } |
|
end |
|
|
|
def answered_questions(case_log) |
|
applicable_questions(case_log).select { |question| question.completed?(case_log) } |
|
end |
|
|
|
def unanswered_questions(case_log) |
|
applicable_questions(case_log) - answered_questions(case_log) |
|
end |
|
|
|
def displayed_to_user?(case_log, question) |
|
question.page.routed_to?(case_log) && question.enabled?(case_log) |
|
end |
|
end
|
|
|