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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# frozen_string_literal: true
module Sidebars
class Panel
extend ::Gitlab::Utils::Override
include ::Sidebars::Concerns::PositionableList
include Gitlab::Experiment::Dsl
attr_reader :context, :scope_menu, :hidden_menu
def initialize(context)
@context = context
@scope_menu = nil
@hidden_menu = nil
@menus = []
configure_menus
end
def configure_menus
# No-op
end
def add_menu(menu)
add_element(@menus, menu)
end
def insert_menu_before(before_menu, new_menu)
insert_element_before(@menus, before_menu, new_menu)
end
def insert_menu_after(after_menu, new_menu)
insert_element_after(@menus, after_menu, new_menu)
end
def replace_menu(menu_to_replace, new_menu)
replace_element(@menus, menu_to_replace, new_menu)
end
def remove_menu(menu_to_remove)
remove_element(@menus, menu_to_remove)
end
def set_scope_menu(scope_menu)
@scope_menu = scope_menu
end
def set_hidden_menu(hidden_menu)
@hidden_menu = hidden_menu
end
def aria_label
raise NotImplementedError
end
def has_renderable_menus?
renderable_menus.any?
end
def renderable_menus
@renderable_menus ||= @menus.select(&:render?)
end
def container
context.container
end
# Auxiliar method that helps with the migration from
# regular views to the new logic
def render_raw_scope_menu_partial
# No-op
end
# Auxiliar method that helps with the migration from
# regular views to the new logic.
#
# Any menu inside this partial will be added after
# all the menus added in the `configure_menus`
# method.
def render_raw_menus_partial
# No-op
end
private
override :index_of
def index_of(list, element)
list.index { |e| e.is_a?(element) }
end
end
end
|