X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/349ab8f9e11d462c878cd6be6d24bf5790af3d50..10176dd693120301ccc9695310c6ecbd7714cf79:/apps/workbench/app/views/users/_tables.html.erb diff --git a/apps/workbench/app/views/users/_tables.html.erb b/apps/workbench/app/views/users/_tables.html.erb index c271f2b5e8..5667951124 100644 --- a/apps/workbench/app/views/users/_tables.html.erb +++ b/apps/workbench/app/views/users/_tables.html.erb @@ -1,7 +1,11 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% if current_user.andand.is_active %>
Recent jobs - <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true, method: 'get'} %> + <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true} %> <%= link_to raw("Show all jobs →"), jobs_path, class: 'pull-right' %> <% if not current_user.andand.is_active or @my_jobs.empty? %>

(None)

@@ -20,22 +24,34 @@ Script Output Log - Age + Created at Status - Progress - <% - job_outputs = [] - job_logs = [] + <%# Preload collections, logs, and pipeline instance objects %> + <% + collection_uuids = [] + log_uuids = [] @my_jobs[0..6].each do |j| - job_outputs << j.output - job_logs << j.log + collection_uuids << j.output + log_uuids << j.log end - preload_collections job_outputs - preload_log_collections job_logs + @my_collections[0..6].each do |c| + collection_uuids << c.uuid + end + + preload_collections_for_objects collection_uuids + preload_log_collections_for_objects log_uuids + + pi_uuids = [] + @my_pipelines[0..6].each do |p| + pi_uuids << p.uuid + end + resource_class = resource_class_for_uuid(pi_uuids.first, friendly_name: true) + preload_objects_for_dataclass resource_class, pi_uuids %> + <% @my_jobs[0..6].each do |j| %> @@ -46,9 +62,11 @@ - <% if j.success and j.output %> + <% if j.state == "Complete" and j.output %> - <% get_collection(j.output).each do |c| %> + <% collections = collections_for_object(j.output) %> + <% if collections && !collections.empty? %> + <% c = collections.first %> <% c.files.each do |file| %> <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> <% end %> @@ -61,7 +79,9 @@ <% if j.log %> - <% get_log_collection(j.log).each do |c| %> + <% log_collections = log_collections_for_object(j.log) %> + <% if log_collections && !log_collections.empty? %> + <% c = log_collections.first %> <% c.files.each do |file| %> Log <% end %> @@ -75,13 +95,10 @@ - <%= raw(distance_of_time_in_words(j.created_at, Time.now).sub('about ','~').sub(' ',' ')) if j.created_at %> + <%= j.created_at.to_s if j.created_at %> - - <%= render partial: 'job_status_label', locals: {:j => j} %> -
<%= render partial: 'job_progress', locals: {:j => j} %> @@ -96,7 +113,7 @@
Recent pipeline instances - <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true, method: 'get'} %> + <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true} %> <%= link_to raw("Show all pipeline instances →"), pipeline_instances_path, class: 'pull-right' %> <% if not current_user.andand.is_active or @my_pipelines.empty? %>

(None)

@@ -113,7 +130,7 @@ Instance Template - Age + Created at Status Progress @@ -134,7 +151,7 @@ - <%= raw(distance_of_time_in_words(p.created_at, Time.now).sub('about ','~').sub(' ',' ')) if p.created_at %> + <%= (p.created_at.to_s) if p.created_at %> @@ -155,7 +172,7 @@
Recent collections - <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true, method: 'get'} %> + <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true} %> <%= link_to raw("Show all collections →"), collections_path, class: 'pull-right' %>
<%= form_tag collections_path, @@ -209,7 +226,7 @@ - <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %> + <%= c.created_at.to_s if c.created_at %>