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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-11-10 21:09:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-10 21:09:07 +0300
commit206b03aeae3a368983ac3d6ad5e5828030bbaacd (patch)
treed36ce0745729f64bb54c468422f896c53748672c /app/helpers/stat_anchors_helper.rb
parentff06f859cdabec3c874c004f93fe5082aeacf917 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/stat_anchors_helper.rb')
-rw-r--r--app/helpers/stat_anchors_helper.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/helpers/stat_anchors_helper.rb b/app/helpers/stat_anchors_helper.rb
new file mode 100644
index 00000000000..76e58b45912
--- /dev/null
+++ b/app/helpers/stat_anchors_helper.rb
@@ -0,0 +1,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