X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f6f07b1856fc0aa32cdf1f96d5bdeb12e9e314ef..441ef97e93a951b349356df96d8a6ef604c6cab7:/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 ed38429c70..b0f57530de 100644 --- a/apps/workbench/app/views/users/_tables.html.erb +++ b/apps/workbench/app/views/users/_tables.html.erb @@ -1,7 +1,7 @@ <% if current_user.andand.is_active %>
Recent jobs - <%= link_to '(refresh)', request.fullpath, 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,13 +20,36 @@ Script Output Log - Age + Created at Status - Progress + <%# Preload collections, logs, and pipeline instance objects %> + <% + collection_uuids = [] + log_uuids = [] + @my_jobs[0..6].each do |j| + collection_uuids << j.output + log_uuids << j.log + end + + @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| %> - + <%= link_to((j.script.andand[0..31] || j.uuid), job_path(j.uuid)) %> @@ -35,30 +58,31 @@ - <% if j.success and j.output %> - + <% if j.state == "Complete" and j.output %> - <% Collection.limit(1).where(uuid: j.output).each do |c| %> - <% c.files.each do |file| %> - <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> - <% end %> - <% end %> - - - <% end %> - - + <% 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 %> + <% end %> + + <% end %> + + <% if j.log %> - <% fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(j.log)%> - <% Collection.limit(1).where(uuid: fixup[1]).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 %> <% end %> - <% elsif j.respond_to? :log_buffer and j.log_buffer %> + <% elsif j.respond_to? :log_buffer and j.log_buffer.is_a? String %> <% buf = j.log_buffer.strip.split("\n").last %> <%= buf %> <% end %> @@ -67,13 +91,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} %> @@ -88,7 +109,7 @@
Recent pipeline instances - <%= link_to '(refresh)', request.fullpath, 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)

@@ -105,13 +126,13 @@ Instance Template - Age + Created at Status Progress <% @my_pipelines[0..6].each do |p| %> - + <%= link_to_if_arvados_object p.uuid, friendly_name: true %> @@ -126,7 +147,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 %> @@ -147,7 +168,7 @@
Recent collections - <%= link_to '(refresh)', request.fullpath, 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, @@ -169,9 +190,9 @@ - + - + @@ -182,7 +203,7 @@ <% @my_collections[0..6].each do |c| %> - +
@@ -201,7 +222,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 %>