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.86 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.85 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.84 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.83 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.82 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.81 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.80 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.79 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.78 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.77 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.76 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.75 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.74 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.73 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.72 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.71 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.70 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.69 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.68 app/helpers/renalware/patient_helper.rb
renalware-core-2.0.67 app/helpers/renalware/patient_helper.rb