X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7a98271d94163cdc4afa5bfcf275db353bc062d2..87dc5129e903cb7452e06c936d8e5e581c4d2481:/apps/workbench/app/views/users/_tables.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/users/_tables.html.erb b/apps/workbench/app/views/users/_tables.html.erb index 9e1c220fd6..09a83f2121 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, method: 'get'} %> <%= link_to raw("Show all jobs →"), jobs_path, class: 'pull-right' %> <% if not current_user.andand.is_active or @my_jobs.empty? %>

(None)

@@ -17,48 +17,60 @@ - Script - Output - Log - Age - Status - Progress - + Script + Output + Log + Age + Status + Progress + + + <% + job_outputs = [] + job_logs = [] + @my_jobs[0..6].each do |j| + job_outputs << j.output + job_logs << j.log + end + preload_collections_for_objects job_outputs + preload_log_collections_for_objects job_logs + %> <% @my_jobs[0..6].each do |j| %> - + - <%= link_to((j.script.andand[0..31] || j.uuid), job_path(j.uuid)) %> + <%= link_to((j.script.andand[0..31] || j.uuid), job_path(j.uuid)) %> - - - <% if j.success 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 %> - - + + + <% if j.success and j.output %> + + <% 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,8 +79,7 @@ - <%= raw(distance_of_time_in_words(j.created_at, Time.now).sub('about -','~').sub(' ',' ')) if j.created_at %> + <%= raw(distance_of_time_in_words(j.created_at, Time.now).sub('about ','~').sub(' ',' ')) if j.created_at %> @@ -89,7 +100,7 @@
Recent pipeline instances - <%= link_to '(refresh)', request.fullpath, class: 'refresh', remote: true, method: 'get' %> + <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true, method: 'get'} %> <%= 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)

@@ -104,31 +115,40 @@ - Instance - Template - Age - Status - Progress + Instance + Template + Age + Status + Progress + <% + 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_pipelines[0..6].each do |p| %> - + - <%= link_to_if_arvados_object p.uuid, friendly_name: true %> + <%= link_to_if_arvados_object p.uuid, friendly_name: true %> - <%= link_to_if_arvados_object p.pipeline_template_uuid, friendly_name: true %> + <%= link_to_if_arvados_object p.pipeline_template_uuid, friendly_name: true %> - <%= raw(distance_of_time_in_words(p.created_at, Time.now).sub('about -','~').sub(' ',' ')) if p.created_at %> + <%= raw(distance_of_time_in_words(p.created_at, Time.now).sub('about ','~').sub(' ',' ')) if p.created_at %> @@ -149,7 +169,7 @@
Recent collections - <%= link_to '(refresh)', request.fullpath, class: 'refresh', remote: true, method: 'get' %> + <%= link_to '(refresh)', {format: :js}, {class: 'refresh', remote: true, method: 'get'} %> <%= link_to raw("Show all collections →"), collections_path, class: 'pull-right' %>
<%= form_tag collections_path, @@ -171,25 +191,27 @@ - - + + + - - - + + + + <% @my_collections[0..6].each do |c| %> - + + <% end %>
ContentsTagsAgeContentsTagsAgeStorage
- - <% c.files.each do |file| %> - <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> - <% end %> - + + <% c.files.each do |file| %> + <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> + <% end %> + @@ -201,10 +223,12 @@ - <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about -','~').sub(' ',' ')) if c.created_at %> + <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %> + <%= render partial: 'collections/toggle_persist', locals: { uuid: c.uuid, current_state: @persist_state[c.uuid] } %> +
@@ -220,19 +244,19 @@

Welcome to Arvados, <%= current_user.first_name %>!

-

- 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 %>. - 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" %>, - 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" %>

+

+ 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 %>. + 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" %>, + 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" %>