debian-mirror-gitlab/lib/sidebars/concerns/super_sidebar_panel.rb
2023-06-20 00:43:36 +05:30

53 lines
1.7 KiB
Ruby

# frozen_string_literal: true
module Sidebars
module Concerns
# Contains helper methods aid conversion of a "normal" panel
# into a Super Sidebar Panel
module SuperSidebarPanel
# Picks menus from a list and adds them to the current menu list
# if they should be picked into the super sidebar
def pick_from_old_menus(old_menus)
old_menus.select! do |menu|
next true unless menu.pick_into_super_sidebar?
add_menu(menu)
false
end
end
def transform_old_menus(current_menus, *old_menus)
old_menus.each do |menu|
next unless menu.render?
menu.renderable_items.each { |item| add_menu_item_to_super_sidebar_parent(current_menus, item) }
menu_item_args = menu.serialize_as_menu_item_args
next if menu_item_args.nil?
add_menu_item_to_super_sidebar_parent(
current_menus, ::Sidebars::MenuItem.new(**menu_item_args)
)
end
end
private
# Finds a menu_items super sidebar parent and adds the item to that menu
# Handles:
# - parent == nil, or parent not being part of the panel:
# we assume that the menu item hasn't been categorized yet
# - parent == ::Sidebars::NilMenuItem, the item explicitly is supposed to be removed
def add_menu_item_to_super_sidebar_parent(menus, menu_item)
parent = menu_item.super_sidebar_parent || ::Sidebars::UncategorizedMenu
return if parent == ::Sidebars::NilMenuItem
idx = index_of(menus, parent) || index_of(menus, ::Sidebars::UncategorizedMenu)
return unless idx
menus[idx].replace_placeholder(menu_item)
end
end
end
end