summaryrefslogtreecommitdiff
path: root/app/models/global_label.rb
blob: ddd4bad5c216fc8d729302ab820cbd1c21ab3f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class GlobalLabel
  attr_accessor :title, :labels
  alias_attribute :name, :title

  delegate :color, :description, to: :@first_label

  def self.build_collection(labels)
    labels = labels.group_by(&:title)

    labels.map do |title, labels|
      new(title, labels)
    end
  end

  def initialize(title, labels)
    @title = title
    @labels = labels
    @first_label = labels.find { |lbl| lbl.description.present? } || labels.first
  end
end