Sha256: 28235afe8ef220cecaa0eb58e9955d7b6ebfa4470336b97fd5c993d8162a7d2a

Contents?: true

Size: 1.47 KB

Versions: 124

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module Renalware
  module LettersHelper
    def letters_breadcrumb(patient)
      breadcrumb_for("Letters", patient_letters_letters_path(patient))
    end

    def patient_letters_letters_path(patient, event = nil)
      if event.present?
        super(patient, event_type: event.class.to_s, event_id: event.id)
      else
        super(patient)
      end
    end

    def inline_value(label, value, unit = nil)
      [
        content_tag(:strong, "#{label}: "),
        value,
        unit
      ].flatten.join(" ").html_safe
    end

    def patient_letters_letter_print_path(letter)
      patient_letters_letter_formatted_path(letter.patient,
                                            letter,
                                            format: "pdf", disposition: "inline")
    end

    def patient_letters_letter_download_path(letter, format = :pdf)
      patient_letters_letter_formatted_path(letter.patient, letter, format: format)
    end

    def patient_letters_letter_preview_path(letter)
      patient_letters_letter_formatted_path(letter.patient, letter)
    end

    def state_options
      Letters::Letter.states.map do |state|
        label = I18n.t(state.to_sym, scope: "enums.letter.state")
        [label, state]
      end
    end

    def state_options_for_receptionists
      Letters::Letter.states.map do |state|
        label = I18n.t(state.to_sym, scope: "enums.letter.for_receptionists.state")
        [label, state]
      end
    end
  end
end

Version data entries

124 entries across 124 versions & 1 rubygems

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