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.
63 lines
2.6 KiB
63 lines
2.6 KiB
module CheckAnswersHelper |
|
def total_answered_questions(subsection, case_log, form) |
|
total_questions(subsection, case_log, form).keys.count do |question_key| |
|
case_log[question_key].present? |
|
end |
|
end |
|
|
|
def total_number_of_questions(subsection, case_log, form) |
|
total_questions(subsection, case_log, form).count |
|
end |
|
|
|
def total_questions(subsection, case_log, form) |
|
total_questions = {} |
|
subsection_keys = form.pages_for_subsection(subsection).keys |
|
page_name = subsection_keys.first |
|
|
|
while page_name.to_s != "check_answers" && subsection_keys.include?(page_name) |
|
questions = form.questions_for_page(page_name) |
|
applicable_questions = form.filter_conditional_questions(questions, case_log) |
|
total_questions = total_questions.merge(applicable_questions) |
|
|
|
page_name = get_next_page_name(form, page_name, case_log) |
|
end |
|
|
|
total_questions |
|
end |
|
|
|
def get_next_page_name(form, page_name, case_log) |
|
page = form.all_pages[page_name] |
|
if page.key?("conditional_route_to") |
|
page["conditional_route_to"].each do |conditional_page_name, condition| |
|
unless condition.any? { |field, value| case_log[field].blank? || !value.include?(case_log[field]) } |
|
return conditional_page_name |
|
end |
|
end |
|
end |
|
form.next_page(page_name) |
|
end |
|
|
|
def create_update_answer_link(case_log_answer, case_log_id, page) |
|
link_name = case_log_answer.blank? ? "Answer" : "Change" |
|
link_to(link_name, "/case_logs/#{case_log_id}/#{page}", class: "govuk-link").html_safe |
|
end |
|
|
|
def create_next_missing_question_link(case_log_id, subsection, case_log, form) |
|
pages_to_fill_in = [] |
|
form.pages_for_subsection(subsection).each do |page_title, page_info| |
|
page_info["questions"].any? { |question| case_log[question].blank? } |
|
pages_to_fill_in << page_title |
|
end |
|
url = "/case_logs/#{case_log_id}/#{pages_to_fill_in.first}" |
|
link_to("Answer the missing questions", url, class: "govuk-link").html_safe |
|
end |
|
|
|
def display_answered_questions_summary(subsection, case_log, form) |
|
if total_answered_questions(subsection, case_log, form) == total_number_of_questions(subsection, case_log, form) |
|
'<p class="govuk-body govuk-!-margin-bottom-7">You answered all the questions</p>'.html_safe |
|
else |
|
"<p class=\"govuk-body govuk-!-margin-bottom-7\">You answered #{total_answered_questions(subsection, case_log, form)} of #{total_number_of_questions(subsection, case_log, form)} questions</p> |
|
#{create_next_missing_question_link(case_log['id'], subsection, case_log, form)}".html_safe |
|
end |
|
end |
|
end
|
|
|