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.8 KiB
						
					
					
				
			
		
		
	
	
							72 lines
						
					
					
						
							2.8 KiB
						
					
					
				module CheckAnswersHelper | 
						|
  include GovukLinkHelper | 
						|
  include GovukVisuallyHiddenHelper | 
						|
 | 
						|
  def display_answered_questions_summary(subsection, lettings_log, current_user) | 
						|
    total = total_count(subsection, lettings_log, current_user) | 
						|
    answered = answered_questions_count(subsection, lettings_log, current_user) | 
						|
    if total == answered | 
						|
      '<p class="govuk-body">You answered all the questions.</p>'.html_safe | 
						|
    else | 
						|
      "<p class=\"govuk-body\">You have answered #{answered} of #{total} questions.</p>".html_safe | 
						|
    end | 
						|
  end | 
						|
 | 
						|
  def can_change_scheme_answer?(attribute_name, scheme) | 
						|
    return true if current_user.support? | 
						|
    return false unless current_user.data_coordinator? | 
						|
 | 
						|
    editable_attributes = ["Name", "Confidential information", "Housing stock owned by"] | 
						|
 | 
						|
    !scheme.confirmed? || editable_attributes.include?(attribute_name) | 
						|
  end | 
						|
 | 
						|
  def any_questions_have_summary_card_number?(subsection, lettings_log) | 
						|
    subsection.applicable_questions(lettings_log).map(&:check_answers_card_number).compact.length.positive? | 
						|
  end | 
						|
 | 
						|
  def next_incomplete_section_path(log, redirect_path) | 
						|
    "#{log.log_type}_#{redirect_path.underscore.tr('/', '_')}_path" | 
						|
  end | 
						|
 | 
						|
private | 
						|
 | 
						|
  def answered_questions_count(subsection, lettings_log, current_user) | 
						|
    answered_questions(subsection, lettings_log, current_user).count | 
						|
  end | 
						|
 | 
						|
  def answered_questions(subsection, lettings_log, current_user) | 
						|
    total_applicable_questions(subsection, lettings_log, current_user).select { |q| q.completed?(lettings_log) } | 
						|
  end | 
						|
 | 
						|
  def total_count(subsection, lettings_log, current_user) | 
						|
    total_applicable_questions(subsection, lettings_log, current_user).count | 
						|
  end | 
						|
 | 
						|
  def total_applicable_questions(subsection, lettings_log, current_user) | 
						|
    subsection.applicable_questions(lettings_log).reject { |q| q.hidden_in_check_answers?(lettings_log, current_user) } | 
						|
  end | 
						|
 | 
						|
  def get_answer_label(question, lettings_log) | 
						|
    question.answer_label(lettings_log, current_user).presence || unanswered_value(log: lettings_log, question:) | 
						|
  end | 
						|
 | 
						|
  def get_question_label(question) | 
						|
    [question.question_number_string, question.check_answer_label.to_s.presence || question.header.to_s].compact.join(" - ") | 
						|
  end | 
						|
 | 
						|
  def unanswered_action_href(question, log) | 
						|
    referrer = question.displayed_as_answered?(log) ? "check_answers" : "check_answers_new_answer" | 
						|
    send("#{log.model_name.param_key}_#{question.page.id}_path", log, referrer:) | 
						|
  end | 
						|
 | 
						|
  def unanswered_value(log:, question:) | 
						|
    link_class = if log.creation_method_bulk_upload? && log.bulk_upload.present? && !log.optional_fields.include?(question.id) | 
						|
                   "app-red-link app-red-link---no-visited-state" | 
						|
                 else | 
						|
                   "govuk-link govuk-link--no-visited-state" | 
						|
                 end | 
						|
 | 
						|
    govuk_link_to question.check_answer_prompt, unanswered_action_href(question, log), class: link_class | 
						|
  end | 
						|
end
 | 
						|
 |