Files
gitlabhq/lib/sidebars/explore/panel.rb

35 lines
860 B
Ruby

# frozen_string_literal: true
module Sidebars
module Explore
class Panel < ::Sidebars::Panel
override :configure_menus
def configure_menus
add_menus
end
override :aria_label
def aria_label
_('Explore')
end
override :super_sidebar_context_header
def super_sidebar_context_header
aria_label
end
private
def add_menus
add_menu(Sidebars::Explore::Menus::ProjectsMenu.new(context))
add_menu(Sidebars::Explore::Menus::GroupsMenu.new(context))
add_menu(Sidebars::Explore::Menus::CatalogMenu.new(context))
add_menu(Sidebars::Explore::Menus::TopicsMenu.new(context))
add_menu(Sidebars::Explore::Menus::SnippetsMenu.new(context))
end
end
end
end
Sidebars::Explore::Panel.prepend_mod_with('Sidebars::Explore::Panel')