Sha256: 29c1085eda5de716da7fadf15f1147db9afdd481dfe11b28fa099a8188b95dfd

Contents?: true

Size: 668 Bytes

Versions: 124

Compression:

Stored size: 668 Bytes

Contents

# frozen_string_literal: true

module Renalware
  module PatientHelper
    def patient_menu_item(title:, path:, active_when_controller_matches:, enabled: true)
      klasses = %w(link)
      klasses << "active" if current_controller_matches(active_when_controller_matches)
      content_tag :li, class: klasses.join(" ") do
        if enabled
          link_to(title, path)
        else
          content_tag :span, title
        end
      end
    end

    def current_controller_matches(regex)
      regex.match(params[:controller]).present?
    end

    def formatted_nhs_number(patient)
      ::Renalware::PatientPresenter.new(patient).nhs_number
    end
  end
end

Version data entries

124 entries across 124 versions & 1 rubygems

Version Path
renalware-core-2.0.129 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.128 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.127 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.126 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.125 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.124 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.123 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.121 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.120 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.119 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.118 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.117 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.116 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.115 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.113 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.112 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.111 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.110 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.109 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.108 app/helpers/renalware/patient_helper.rb