Module: LabelsAsHash

Extended by:
ActiveSupport::Concern
Included in:
Groups::AutocompleteService, Projects::AutocompleteService
Defined in:
app/controllers/concerns/labels_as_hash.rb

Instance Method Summary collapse

Instance Method Details

#labels_as_hash(target = nil, params = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/concerns/labels_as_hash.rb', line 6

def labels_as_hash(target = nil, params = {})
  available_labels = LabelsFinder.new(
    current_user,
    params
  ).execute

  label_hashes = available_labels.as_json(only: [:title, :color])

  if target.respond_to?(:labels)
    already_set_labels = available_labels & target.labels
    if already_set_labels.present?
      titles = already_set_labels.map(&:title)
      label_hashes.each do |hash|
        hash[:set] = true if titles.include?(hash['title'])
      end
    end
  end

  label_hashes
end