X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/20347d900fb2d75a3f3eef91d4da17a559b0ecd6..09cbdc3074b3f1e69c9c537875146f6da0a6ed8f:/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 10592f5009..6e3d9e3437 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)', 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,11 +24,34 @@ 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| %> @@ -35,30 +62,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 +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} %> @@ -88,7 +113,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,7 +130,7 @@ Instance Template - Age + Created at Status Progress @@ -126,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 %> @@ -147,7 +172,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, @@ -201,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 %> @@ -226,15 +251,15 @@ Your account must be activated by an Arvados administrator. If this is your first time accessing Arvados and would like to request access, or you believe you are seeing the page in error, please - <%= link_to "contact us", Rails.configuration.activation_contact_link %>. + <%= link_to "contact us", Rails.configuration.Workbench.ActivationContactLink %>. You should receive an email at the address you used to log in when your account is activated. In the mean time, you can - <%= link_to "learn more about Arvados", "https://arvados.org/projects/arvados/wiki/Introduction_to_Arvados" %>, + <%= link_to "learn more about Arvados", "https://arvados.org/" %>, and <%= link_to "read the Arvados user guide", "http://doc.arvados.org/user" %>.

<%= link_to raw('Contact us ✉'), - Rails.configuration.activation_contact_link, class: "pull-right btn btn-primary" %>

+ Rails.configuration.Workbench.ActivationContactLink, class: "pull-right btn btn-primary" %>