Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template.rb « release « badge « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65bff4371cf6827b9e0889cb3cd546a4881437df (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

module Gitlab::Ci
  module Badge
    module Release
      # Template object will be passed to badge.svg.erb template.
      class Template < Badge::Template
        STATUS_COLOR = {
          latest: '#3076af',
          none: '#e05d44'
        }.freeze
        KEY_WIDTH_DEFAULT = 90
        VALUE_WIDTH_DEFAULT = 54

        def initialize(badge)
          @entity = badge.entity
          @tag = badge.tag || "none"
          @key_width = badge.customization.dig(:key_width)
          @key_text = badge.customization.dig(:key_text)
        end

        def key_text
          @key_text || @entity.to_s
        end

        def key_width
          @key_width || KEY_WIDTH_DEFAULT
        end

        def value_text
          @tag.to_s
        end

        def value_width
          VALUE_WIDTH_DEFAULT
        end

        def value_color
          STATUS_COLOR[@tag.to_sym] || STATUS_COLOR[:latest]
        end
      end
    end
  end
end