Sha256: f68ffe647e7b408fb40264095916a20125d8acb77a21e79381cdca04cf3bf20f

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

require_dependency "renalware/messaging"

# Builds a new MessageForm form object. MessageForm is used behind the html form when displaying a
# `Send Message` Dialog the first time. Note that we don't use this builder again on e.g.
# form submission - at that point all the required params are in the form payload - this is
# only for the initial MesageForm creation.
#
module Renalware
  module Messaging
    class MessageFormBuilder
      attr_reader :patient, :params

      def initialize(patient:, params:)
        @patient = patient
        @params = params
      end

      def call
        MessageForm.new(
          subject: build_subject,
          recipient_ids: build_recipient_ids,
          replying_to_message_id: replying_to_message_id
        )
      end

      private

      def build_subject
        replying? ? "Re: #{replying_to_message.subject}" : patient.to_s
      end

      def build_recipient_ids
        replying? ? Array(replying_to_message.author_id) : []
      end

      def replying_to_message
        return NullObject.instance unless replying?
        @replying_to_message ||= Message.find(replying_to_message_id)
      end

      def replying_to_message_id
        params[:replying_to_message_id]
      end

      def replying?
        replying_to_message_id.present?
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta7 app/models/renalware/messaging/message_form_builder.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/messaging/message_form_builder.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/messaging/message_form_builder.rb