debian-mirror-gitlab/app/helpers/stat_anchors_helper.rb

26 lines
567 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# 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
2021-04-17 20:07:23 +05:30
attrs[:data] = anchor.data if anchor.data
2021-01-29 00:20:46 +05:30
end
end
private
def button_attribute(anchor)
2021-04-17 20:07:23 +05:30
anchor.class_modifier || 'btn-dashed'
2021-01-29 00:20:46 +05:30
end
def extra_classes(anchor)
if anchor.is_link
'stat-link'
else
2021-03-11 19:13:27 +05:30
"gl-button btn #{button_attribute(anchor)}"
2021-01-29 00:20:46 +05:30
end
end
end