Sha256: bd9af95912658346c8d0a4c3da3da5eb923839976866593ac2184becbf5fa16f

Contents?: true

Size: 1.11 KB

Versions: 92

Compression:

Stored size: 1.11 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

      # 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

92 entries across 92 versions & 1 rubygems

Version Path
renalware-core-2.0.109 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.108 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.106 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.105 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.104 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.103 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.102 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.101 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.100 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.99 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.98 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.97 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.96 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.95 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.94 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.93 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.92 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.91 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.90 app/presenters/renalware/letters/recipient_presenter.rb
renalware-core-2.0.89 app/presenters/renalware/letters/recipient_presenter.rb