blob: 0afe01f926d3fc3bb8d2855b74005d3619ccccdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# 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
|