Merge branch '10484-count-clients' closes #10484
[arvados.git] / apps / workbench / app / views / projects / _show_dashboard.html.erb
1 <%
2   recent_procs = recent_processes(12)
3
4   wus = {}
5   outputs = []
6   recent_procs.each do |p|
7     wu = p.work_unit
8     wus[p] = wu
9     outputs << wu.outputs
10   end
11   outputs = outputs.flatten.uniq
12
13   collection_pdhs = outputs.select {|x| !(m = CollectionsHelper.match(x)).nil?}.uniq.compact
14   collection_uuids = outputs - collection_pdhs
15
16   if Rails.configuration.show_recent_collections_on_dashboard
17     recent_cs = recent_collections(8)
18     collection_uuids = collection_uuids + recent_cs[:collections].collect {|c| c.uuid}
19     collection_uuids.flatten.uniq
20   end
21
22   preload_collections_for_objects collection_uuids if collection_uuids.any?
23   preload_for_pdhs collection_pdhs if collection_pdhs.any?
24   preload_links_for_objects(collection_pdhs + collection_uuids)
25 %>
26
27 <%
28   if !PipelineInstance.api_exists?(:index)
29     recent_procs_title = 'Recent processes'
30     run_proc_title = 'Choose a workflow to run:'
31   else
32     recent_procs_title = 'Recent pipelines and processes'
33     run_proc_title = 'Choose a pipeline or workflow to run:'
34   end
35 %>
36
37   <div class="row">
38     <div class="col-md-6">
39       <div class="panel panel-default" style="min-height: 10.5em">
40         <div class="panel-heading">
41           <span class="panel-title"><%=recent_procs_title%></span>
42           <% if current_user.andand.is_active %>
43             <span class="pull-right recent-processes-actions">
44               <span>
45                 <%= link_to(
46                 choose_work_unit_templates_path(
47                   title: run_proc_title,
48                   action_name: 'Next: choose inputs <i class="fa fa-fw fa-arrow-circle-right"></i>',
49                   action_href: work_units_path,
50                   action_method: 'post',
51                   action_data: {'selection_param' => 'work_unit[template_uuid]', 'work_unit[owner_uuid]' => current_user.uuid, 'success' => 'redirect-to-created-object'}.to_json),
52                 { class: "btn btn-primary btn-xs", remote: true }) do %>
53                   <i class="fa fa-fw fa-gear"></i> Run a process...
54                 <% end %>
55               </span>
56               <span>
57                   <%= link_to all_processes_path, class: 'btn btn-default btn-xs' do %>
58                     All processes <i class="fa fa-fw fa-arrow-circle-right"></i>
59                   <% end %>
60               </span>
61             </span>
62           <% end %>
63         </div>
64
65         <div class="panel-body recent-processes">
66           <% if recent_procs.empty? %>
67             No recent pipelines or processes.
68           <% else %>
69           <% wus.each do |p, wu| %>
70             <% if wu.is_finished? %>
71             <div class="dashboard-panel-info-row row-<%=wu.uuid%>">
72               <div class="row">
73                 <div class="col-md-6 text-overflow-ellipsis">
74                   <%= link_to_if_arvados_object p, {friendly_name: true} %>
75                 </div>
76                 <div class="col-md-2">
77                   <span class="label label-<%=wu.state_bootstrap_class%>"><%=wu.state_label%></span>
78                 </div>
79                 <div class="col-md-4">
80                   <%= render_localized_date(wu.finished_at || wu.modified_at, "noseconds") %>
81                 </div>
82               </div>
83               <div class="row">
84                 <div class="col-md-12">
85                   <% if wu.started_at and wu.finished_at %>
86                     <% wu_time = wu.finished_at - wu.started_at %>
87                     Active for <%= render_runtime(wu_time, false) %>
88                   <% end %>
89
90                   <%= render partial: 'work_units/show_output', locals: {wu: wu, align: 'pull-right', include_icon: true} %>
91                 </div>
92               </div>
93
94             </div>
95             <% else %>
96             <div class="dashboard-panel-info-row row-<%=wu.uuid%>">
97               <div class="row">
98                 <div class="col-md-6">
99                   <%= link_to_if_arvados_object p, {friendly_name: true} %>
100                 </div>
101                 <% if wu.is_running? %>
102                 <div class="col-md-6">
103                   <div class="progress" style="margin-bottom: 0px">
104                     <% wu.progress %>
105                   </div>
106                 </div>
107                 <% else %>
108                 <div class="col-md-2">
109                   <span class="label label-<%=wu.state_bootstrap_class%>"><%=wu.state_label%></span>
110                 </div>
111                 <% end %>
112               </div>
113
114               <%
115                 children = wu.children
116                 running = children.select { |c| c.state_label == "Running" }
117                 queued = children.select { |c| c.state_label == "Queued" }
118               %>
119
120               <div class="clearfix">
121                 Started at <%= render_localized_date(wu.started_at || wu.created_at, "noseconds") %>.
122                 <% wu_time = Time.now - (wu.started_at || wu.created_at) %>
123                 Active for <%= render_runtime(wu_time, false) %>.
124
125                 <div class="pull-right">
126                   <% running.each do |r| %>
127                     <span class="label label-<%= r.state_bootstrap_class %>"> <%= r.label || r.state_label || 'Not ready' %> </span>
128                   <% end %>
129                   <% queued.each do |q| %>
130                     <span class="label label-<%= q.state_bootstrap_class %>"> <%= q.label || r.state_label || 'Not ready' %> </span>
131                   <% end %>
132                 </div>
133               </div>
134             </div>
135             <% end %>
136           <% end %>
137           <% end %>
138         </div>
139       </div>
140     </div>
141
142     <div class="col-md-6">
143       <% nodes = Node.filter([["last_ping_at", ">", Time.now - 3600]]).results %>
144       <div class="panel panel-default" style="min-height: 10.5em">
145         <div class="panel-heading"><span class="panel-title">Compute node status</span>
146           <span class="pull-right compute-node-actions">
147             <% if current_user.andand.is_admin %>
148               <span>
149                 <%= link_to nodes_path, class: 'btn btn-default btn-xs' do %>
150                   All nodes <i class="fa fa-fw fa-arrow-circle-right"></i>
151                 <% end %>
152               </span>
153             <% end %>
154           </span>
155         </div>
156         <div class="panel-body compute-node-summary-pane">
157           <div>
158             <%= render partial: 'compute_node_summary', locals: {nodes: nodes} %>
159             <% active_nodes = [] %>
160             <% nodes.sort_by { |n| n.hostname || "" }.each do |n| %>
161               <% if n.crunch_worker_state.in? ["busy", "idle"] %>
162                 <% active_nodes << n %>
163               <% end %>
164             <% end %>
165             <% if active_nodes.any? %>
166               <div style="text-align: center">
167                 <a data-toggle="collapse" href="#compute_node_status">Details <span class="caret"></span></a>
168               </div>
169             <% end %>
170           </div>
171           <div id="compute_node_status" class="collapse">
172             <%= render partial: 'compute_node_status', locals: {nodes: active_nodes} %>
173           </div>
174         </div>
175       </div>
176       <% if Rails.configuration.show_recent_collections_on_dashboard %>
177       <div class="panel panel-default">
178         <div class="panel-heading"><span class="panel-title">Recent collections</span>
179           <span class="pull-right">
180             <%= link_to collections_path, class: 'btn btn-default btn-xs' do %>
181               All collections <i class="fa fa-fw fa-arrow-circle-right"></i>
182             <% end %>
183           </span>
184         </div>
185         <div class="panel-body">
186           <% recent_cs[:collections].each do |p| %>
187             <div class="dashboard-panel-info-row">
188               <div>
189                 <% if recent_cs[:owners][p[:owner_uuid]].is_a?(Group) %>
190                 <i class="fa fa-fw fa-folder-o"></i><%= link_to_if_arvados_object recent_cs[:owners][p[:owner_uuid]], friendly_name: true %>/
191                 <% end %>
192                 <span class="pull-right"><%= render_localized_date(p[:modified_at], "noseconds") %></span>
193               </div>
194               <div class="text-overflow-ellipsis" style="margin-left: 1em; width: 100%"><%= link_to_if_arvados_object p, {friendly_name: true, no_tags: true} %>
195               </div>
196             </div>
197           <% end %>
198         </div>
199       </div>
200       <% end %>
201     </div>
202   </div>