Sha256: 32de3bb3d780876608a2151bb3fdc22bf424be7aa905f2436ed036f4f3d2c68a

Contents?: true

Size: 1.01 KB

Versions: 8

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

module Renalware
  module Patients
    class MessagesComponent < ApplicationComponent
      include ToggleHelper
      include Pagy::Backend
      include Pagy::Frontend
      TITLE = "Messages"

      rattr_initialize [:patient!, :current_user!]

      def pagination
        load_messages unless @pagination
        @pagination
      end

      def messages
        load_messages unless @messages
        @messages
      end

      def title
        if pagination.items < pagination.count
          "#{TITLE} (#{pagination.items} of #{pagination.count})"
        else
          "#{TITLE} (#{pagination.count})"
        end
      end

      private

      def load_messages
        @pagination, @messages = pagy(scope, items: 5, link_extra: "data-remote='true'")
      end

      def messaging_patient
        @messaging_patient ||= Messaging.cast_patient(patient)
      end

      def scope
        messaging_patient.messages.where(public: true).order(created_at: :desc)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
renalware-core-2.0.167 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.166 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.165 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.164 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.163 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.162 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.161 app/components/renalware/patients/messages_component.rb
renalware-core-2.0.160 app/components/renalware/patients/messages_component.rb