Sha256: 9090b082f23f3b5f25c3fe5f60365b408a88f9c5566e427c2f9c012b25fe25dd

Contents?: true

Size: 1.14 KB

Versions: 10

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require_dependency "renalware/letters"
require_dependency "renalware/address_presenter"

module Renalware
  module Letters
    class RecipientPresenter < DumbDelegator
      # We don't rely on `to_s` in this case as the string will not be marked as
      # HTML safe if we leave it to be implicitly called in the template.
      #
      def to_html
        AddressPresenter::Block.new(address_for_addressee).to_html
      end

      def address
        AddressPresenter.new(address_for_addressee)
      end

      private

      def address_for_addressee
        __getobj__.address
      end

      # @section sub-classes

      # The address for a recipient such as a primary care physician or a patient are
      # denormalized and stored with the recipient when the letter is archived.
      # Before the letter is archived, we display the current address directly
      # from the appropriate models ensuring the most recent address is presented.
      #
      class WithCurrentAddress < RecipientPresenter
        private

        def address_for_addressee
          __getobj__.current_address
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
renalware-core-2.0.9 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.8 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.7 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.5 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.4 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.3 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.2 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.1 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.0 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.0.pre.rc13 app/presenters/renalware/letters/recipient_presenter.rb