Sha256: 1f384dd47d70a498be1c20feb97bdb73dfa24e59ae1355726521c43d049d8faa

Contents?: true

Size: 503 Bytes

Versions: 44

Compression:

Stored size: 503 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/pathology"
require "sql/indexed_case_stmt"

module Renalware
  module Pathology
    class OrderedPatientQuery
      def initialize(patient_ids)
        @patient_ids = patient_ids
      end

      def call
        Pathology::Patient
          .where(id: @patient_ids)
          .order(ids_index)
      end

      private

      def ids_index
        ::SQL::IndexedCaseStmt.new("patients.id", @patient_ids).generate
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
renalware-core-2.0.137 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.136 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.135 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.134 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.133 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.132 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.131 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.130 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.129 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.128 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.127 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.126 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.125 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.124 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.123 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.121 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.120 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.119 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.118 app/models/renalware/pathology/ordered_patient_query.rb
renalware-core-2.0.117 app/models/renalware/pathology/ordered_patient_query.rb