summaryrefslogtreecommitdiff
path: root/app/models/service_list.rb
blob: 8a52539d12876ebb33b6106a2d3997809af6a5da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class ServiceList
  def initialize(batch, service_hash, association)
    @batch = batch
    @service_hash = service_hash
    @association = association
  end

  def to_array
    [Integration, columns, values]
  end

  private

  attr_reader :batch, :service_hash, :association

  def columns
    service_hash.keys << "#{association}_id"
  end

  def values
    batch.select(:id).map do |record|
      service_hash.values << record.id
    end
  end
end