Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OHR Support
Manage
Activity
Members
Labels
Plan
Issues
97
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
OHR Support
Commits
1897459b
Commit
1897459b
authored
13 years ago
by
Eric Davis
Browse files
Options
Downloads
Patches
Plain Diff
[
#263
] Refactor: move top menu logic to ApplicationHelper
parent
3e87af38
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/helpers/application_helper.rb
+33
-1
33 additions, 1 deletion
app/helpers/application_helper.rb
app/views/layouts/base.rhtml
+2
-16
2 additions, 16 deletions
app/views/layouts/base.rhtml
with
35 additions
and
17 deletions
app/helpers/application_helper.rb
+
33
−
1
View file @
1897459b
...
...
@@ -962,7 +962,39 @@ module ApplicationHelper
javascript_tag
(
"jQuery.menu_expand({ menuItem: '.
#{
current_menu_class
}
' });"
)
end
# Menu items for the main top menu
def
main_top_menu_items
split_top_menu_into_main_or_more_menus
[
:main
]
end
# Menu items for the more top menu
def
more_top_menu_items
split_top_menu_into_main_or_more_menus
[
:more
]
end
# Split the :top_menu into separate :main and :more items
def
split_top_menu_into_main_or_more_menus
unless
@top_menu_split
items_for_main_level
=
[]
items_for_more_level
=
[]
menu_items_for
(
:top_menu
)
do
|
item
|
if
item
.
name
==
:home
||
item
.
name
==
:my_page
items_for_main_level
<<
item
elsif
item
.
name
==
:projects
# Remove, present in layout
else
items_for_more_level
<<
item
end
end
@top_menu_split
=
{
:main
=>
items_for_main_level
,
:more
=>
items_for_more_level
}
end
@top_menu_split
end
private
def
wiki_helper
...
...
This diff is collapsed.
Click to expand it.
app/views/layouts/base.rhtml
+
2
−
16
View file @
1897459b
...
...
@@ -41,23 +41,9 @@
<%
end
%>
</ul>
<%
items_for_main_level
=
[]
items_for_more_level
=
[]
menu_items_for
(
:top_menu
)
do
|
item
|
if
item
.
name
==
:home
||
item
.
name
==
:my_page
items_for_main_level
<<
item
elsif
item
.
name
==
:projects
# Remove
else
items_for_more_level
<<
item
end
end
%>
<%
if
User
.
current
.
logged?
||
!
Setting
.
login_required?
%>
<ul
id=
"account-nav"
>
<%
items_for_main_level
.
each
do
|
item
|
%>
<%
main_top_menu_items
.
each
do
|
item
|
%>
<%=
render_menu_node
(
item
)
%>
<%
end
%>
<li
class=
"drop-down"
>
...
...
@@ -77,7 +63,7 @@
<li
class=
"drop-down"
id=
"more-menu"
>
<a
class=
"more"
href=
"#"
>
More
</a>
<ul
style=
"display:none;"
>
<%
items_for_more_level
.
each
do
|
item
|
%>
<%
more_top_menu_items
.
each
do
|
item
|
%>
<%=
render_menu_node
(
item
)
%>
<%
end
%>
<%# TODO: Redmine defines these in a view, should be moved to a helper or data structure %>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment