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

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

module StatAnchorsHelper
  def stat_anchor_attrs(anchor)
    {}.tap do |attrs|
      attrs[:class] = %w(nav-link gl-display-flex gl-align-items-center) << extra_classes(anchor)
      attrs[:itemprop] = anchor.itemprop if anchor.itemprop
    end
  end

  private

  def button_attribute(anchor)
    "btn-#{anchor.class_modifier || 'missing'}"
  end

  def extra_classes(anchor)
    if anchor.is_link
      'stat-link'
    else
      "btn #{button_attribute(anchor)}"
    end
  end
end