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

colors_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80cf6f197e5a5b091c9a7d607a58b72be19aac1e (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
# frozen_string_literal: true

module ColorsHelper
  HEX_COLOR_PATTERN = /\A\#(?:[0-9A-Fa-f]{3}){1,2}\Z/.freeze

  def hex_color_to_rgb_array(hex_color)
    unless hex_color.is_a?(String) && HEX_COLOR_PATTERN.match?(hex_color)
      raise ArgumentError, "invalid hex color `#{hex_color}`"
    end

    hex_color.length == 7 ? hex_color[1, 7].scan(/.{2}/).map(&:hex) : hex_color[1, 4].scan(/./).map { |v| (v * 2).hex }
  end

  def rgb_array_to_hex_color(rgb_array)
    raise ArgumentError, "invalid RGB array `#{rgb_array}`" unless rgb_array_valid?(rgb_array)

    "##{rgb_array.map{ "%02x" % _1 }.join}"
  end

  private

  def rgb_array_valid?(rgb_array)
    rgb_array.is_a?(Array) && rgb_array.length == 3 && rgb_array.all?{ _1 >= 0 && _1 <= 255 }
  end
end