debian-mirror-gitlab/lib/sidebars/projects/menus/learn_gitlab_menu.rb

61 lines
1.3 KiB
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module Sidebars
module Projects
module Menus
class LearnGitlabMenu < ::Sidebars::Menu
include Gitlab::Utils::StrongMemoize
override :link
def link
project_learn_gitlab_path(context.project)
end
override :active_routes
def active_routes
{ controller: :learn_gitlab }
end
override :title
def title
_('Learn GitLab')
end
override :has_pill?
def has_pill?
2021-11-11 11:23:49 +05:30
context.learn_gitlab_enabled
2021-06-08 01:23:25 +05:30
end
override :pill_count
def pill_count
strong_memoize(:pill_count) do
percentage = LearnGitlab::Onboarding.new(context.project.namespace).completed_percentage
"#{percentage}%"
end
end
2021-09-04 01:27:46 +05:30
override :extra_nav_link_html_options
def extra_nav_link_html_options
2021-06-08 01:23:25 +05:30
{
class: 'home',
data: {
2021-11-11 11:23:49 +05:30
track_label: 'learn_gitlab'
2021-06-08 01:23:25 +05:30
}
}
end
override :image_path
def image_path
'learn_gitlab/graduation_hat.svg'
end
override :render?
def render?
2021-11-11 11:23:49 +05:30
context.learn_gitlab_enabled
2021-06-08 01:23:25 +05:30
end
end
end
end
end