Skip to content

Commit e25637a

Browse files
authored
Merge pull request #894 from OSC/update-pinned-apps-menu-rebased
Update pinned apps menu rebased
2 parents f484209 + ca177f7 commit e25637a

File tree

6 files changed

+108
-9
lines changed

6 files changed

+108
-9
lines changed

apps/dashboard/app/apps/ood_app_group.rb

+26-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
class OodAppGroup
2-
attr_accessor :apps, :title
2+
attr_accessor :apps
33

44
def initialize(title: "", apps: [])
55
@apps = apps
6-
@title = title
6+
@_title = title
77
end
88

99
def has_apps?
@@ -15,6 +15,30 @@ def has_batch_connect_apps?
1515
@has_batch_connect_apps = apps.any?(&:batch_connect_app?)
1616
end
1717

18+
def title
19+
@title ||= begin
20+
if @_title == "Pinned Apps"
21+
if apps.size > nav_limit
22+
"Pinned Apps (showing #{nav_limit} of #{apps.size})"
23+
else
24+
"Pinned Apps"
25+
end
26+
else
27+
@_title
28+
end
29+
end
30+
end
31+
32+
def nav_limit
33+
@nav_limit ||= begin
34+
if @_title == "Pinned Apps"
35+
::Configuration.pinned_apps_menu_length
36+
else
37+
apps.size
38+
end
39+
end
40+
end
41+
1842
# given an array of apps, group those apps by app category (or the attribute)
1943
# specified by 'group_by', sorting both groups and apps arrays by title
2044
def self.groups_for(apps: [], group_by: :category)

apps/dashboard/app/controllers/application_controller.rb

+16-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ class ApplicationController < ActionController::Base
55

66
before_action :set_user, :set_nav_groups, :set_announcements, :set_locale
77
before_action :set_my_balances, only: [:index, :new, :featured]
8+
before_action :set_featured_group
89

910
def set_locale
1011
I18n.locale = ::Configuration.locale
@@ -17,13 +18,12 @@ def set_user
1718
end
1819

1920
def set_nav_groups
20-
groups = sys_app_groups + pinned_app_group
2121
#TODO: for AweSim, what if we added the shared apps here?
22-
if NavConfig.categories_whitelist?
23-
@nav_groups = OodAppGroup.select(titles: NavConfig.categories, groups: groups)
24-
else
25-
@nav_groups = OodAppGroup.order(titles: NavConfig.categories, groups: groups)
26-
end
22+
@nav_groups = filter_groups(sys_app_groups)
23+
end
24+
25+
def set_featured_group
26+
@featured_group = filter_groups(pinned_app_group).first # 1 single group called 'Apps'
2727
end
2828

2929
def sys_apps
@@ -80,4 +80,14 @@ def set_my_balances
8080
::Configuration.balance_paths.each { |path| @my_balances += Balance.find(path, OodSupport::User.new.name) }
8181
@my_balances
8282
end
83+
84+
private
85+
86+
def filter_groups(groups)
87+
if NavConfig.categories_whitelist?
88+
OodAppGroup.select(titles: NavConfig.categories, groups: groups)
89+
else
90+
OodAppGroup.order(titles: NavConfig.categories, groups: groups)
91+
end
92+
end
8393
end

apps/dashboard/app/views/layouts/application.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
</div>
3737
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-9">
3838
<ul class="nav navbar-nav">
39+
<%= render partial: 'layouts/nav/featured_apps', locals: { group: @featured_group } if pinned_apps? %>
3940
<%= render partial: 'layouts/nav/group', collection: @nav_groups %>
4041
<%= render partial: 'layouts/nav/sessions', nav_groups: @nav_groups if Configuration.app_development_enabled? || @nav_groups.any?(&:has_batch_connect_apps?) %>
4142
<%= render partial: 'layouts/nav/all_apps' if Configuration.show_all_apps_link? %>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<li class="dropdown" title="<%= group.title %>" >
2+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><%= group.title %><span class="caret"></span></a>
3+
<ul class="dropdown-menu">
4+
<% OodAppGroup.groups_for(apps: group.apps, group_by: :subcategory).each_with_index do |g, index| %>
5+
<%= content_tag "li", "", class: "divider", role: "separator" if index > 0 %>
6+
<%= content_tag "li", g.title, class: "dropdown-header" unless g.title.empty? %>
7+
<% g.apps.take(g.nav_limit).each do |app| %>
8+
<% app.links.each do |link| %>
9+
<li>
10+
<%=
11+
link_to(
12+
link.url.to_s,
13+
title: link.title,
14+
target: link.new_tab? ? "_blank" : nil
15+
) do
16+
%>
17+
<%= icon_tag(link.icon_uri) %> <%=link.title %>
18+
<% if link.subtitle.present? %>
19+
<%= content_tag(:small, link.subtitle, style: "text-indent: 20px", class: 'visible-xs-block visible-sm-inline visible-md-inline visible-lg-inline') %>
20+
<% end %>
21+
<% end %>
22+
</li>
23+
<% end %>
24+
<% end %>
25+
<% end %>
26+
27+
<%= content_tag "li", "", class: "divider", role: "separator" %>
28+
<%= render partial: 'layouts/nav/all_apps' %>
29+
</ul>
30+
</li>

apps/dashboard/config/configuration_singleton.rb

+5
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,11 @@ def pinned_apps
260260
config.fetch(:pinned_apps, [])
261261
end
262262

263+
# The length of the "Pinned Apps" navbar menu
264+
def pinned_apps_menu_length
265+
config.fetch(:pinned_apps_menu_length, 6)
266+
end
267+
263268
private
264269

265270
def config

apps/dashboard/test/controllers/dashboard_controller_test.rb

+30-1
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,39 @@ def dropdown_list_items_urls(list)
147147
"Owens Desktop",
148148
"Jupyter Notebook",
149149
"Paraview",
150-
"PseudoFuN"
150+
"PseudoFuN",
151+
:divider,
152+
"All Apps"
151153
], dditems
152154
end
153155

156+
test "should limit list of Pinned Apps in dropdown" do
157+
SysRouter.stubs(:base_path).returns(Rails.root.join("test/fixtures/sys_with_gateway_apps"))
158+
OodAppkit.stubs(:clusters).returns(OodCore::Clusters.load_file("test/fixtures/config/clusters.d"))
159+
Configuration.stubs(:pinned_apps).returns([
160+
'sys/bc_jupyter',
161+
'sys/bc_paraview',
162+
'sys/bc_desktop/owens',
163+
'sys/bc_desktop/doesnt_exist',
164+
'sys/pseudofun',
165+
'sys/should_get_filtered'
166+
])
167+
Configuration.stubs(:pinned_apps_menu_length).returns(2)
168+
169+
get :index
170+
171+
dd = dropdown_list('Apps')
172+
dditems = dropdown_list_items(dd)
173+
assert dditems.any?, "dropdown list items not found"
174+
assert_equal [
175+
{ header: "Pinned Apps (showing 2 of 4)" },
176+
"Owens Desktop",
177+
"Jupyter Notebook",
178+
:divider,
179+
"All Apps"
180+
], dditems
181+
end
182+
154183
test "should create Pinned app icons when pinned apps are available" do
155184
SysRouter.stubs(:base_path).returns(Rails.root.join("test/fixtures/sys_with_gateway_apps"))
156185
OodAppkit.stubs(:clusters).returns(OodCore::Clusters.load_file("test/fixtures/config/clusters.d"))

0 commit comments

Comments
 (0)