Sha256: 136045e61ef34593df38312fd9a4739e9e8b6643f0863ad050a619fdcfa54b25

Contents?: true

Size: 1.32 KB

Versions: 8

Compression:

Stored size: 1.32 KB

Contents

require_dependency "renalware/dashboard"
require_dependency "collection_presenter"

module Renalware
  module Dashboard
    class DashboardPresenter
      def initialize(user)
        @user = user
      end

      attr_reader :user

      def bookmarks
        @bookmarks ||= begin
          Patients.cast_user(user)
                  .bookmarks
                  .ordered
                  .includes(patient: [current_modality: :description])
        end
      end

      def letters_in_progress
        @letters_in_progress ||= begin
          present_letters(
            Renalware::Letters.cast_author(user).letters.in_progress.reverse
          )
        end
      end

      def unread_messages_receipts
        @unread_messages_receipts ||= begin
          receipts = Messaging::Internal.cast_recipient(user).receipts.unread
          CollectionPresenter.new(receipts, Messaging::Internal::ReceiptPresenter)
        end
      end

      def unread_electronic_ccs
        @unread_electronic_ccs ||= begin
          receipts = Letters::ElectronicReceipt.unread.for_recipient(user.id).ordered
          CollectionPresenter.new(receipts, Letters::ElectronicReceiptPresenter)
        end
      end

      private

      def present_letters(letters)
        CollectionPresenter.new(letters, Letters::LetterPresenterFactory)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.rc11 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc10 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc9 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc8 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc7 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc6 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc5 app/presenters/renalware/dashboard/dashboard_presenter.rb
renalware-core-2.0.0.pre.rc4 app/presenters/renalware/dashboard/dashboard_presenter.rb