X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6db406e9a2fc78ed204460deb73151f44d94b030..d3cb9460f0a30f9602508bed7507c906b8a6d91d:/apps/workbench/app/views/collections/_show_files.html.erb diff --git a/apps/workbench/app/views/collections/_show_files.html.erb b/apps/workbench/app/views/collections/_show_files.html.erb index d888b2e859..9b55f5c5e5 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,10 +1,61 @@ + + +
+ <% if !defined? no_checkboxes or !no_checkboxes %> +
+
+
+ + +
+
+ + +
+
+
+ +
+
+

+ <% end %> + <% file_tree = @object.andand.files_tree %> <% if file_tree.nil? or file_tree.empty? %>

This collection is empty.

<% else %> @@ -19,10 +70,21 @@ <% else %> <% link_params = {controller: 'collections', action: 'show_file', uuid: @object.portable_data_hash, file: file_path, size: size} %> -
+
<%= raw(human_readable_bytes_html(size)) %> - <% if !defined? no_checkboxes or !no_checkboxes %> + <% disable_search = (Rails.configuration.filename_suffixes_with_view_icon.include? file_path.split('.')[-1]) ? false : true %> + <%= link_to(raw(''), + link_params.merge(disposition: 'inline'), + {title: "View #{file_path}", class: "btn btn-info btn-sm", disabled: disable_search}) %> + <%= link_to(raw(''), + link_params.merge(disposition: 'attachment'), + {title: "Download #{file_path}", class: "btn btn-info btn-sm"}) %> +
+ +
+ <% if !defined? no_checkboxes or !no_checkboxes or + (!params['use_checkbox_selection'].nil? and params['use_checkbox_selection'] == 'true') %> <%= check_box_tag 'uuids[]', "#{@object.uuid}/#{file_path}", false, { :class => 'persistent-selection', :friendly_type => "File", @@ -31,16 +93,10 @@ uuid: @object.portable_data_hash, file: file_path), :title => "Include #{file_path} in your selections", } %> +   <% end %> - <%= link_to(raw(''), - link_params.merge(disposition: 'inline'), - {title: "View #{file_path}", class: "btn btn-info btn-sm"}) %> - <%= link_to(raw(''), - link_params.merge(disposition: 'attachment'), - {title: "Download #{file_path}", class: "btn btn-info btn-sm"}) %> -
<% if CollectionsHelper::is_image(filename) %> -
<%= filename %>
+ <%= filename %>
<%= link_to(image_tag("#{url_for @object}/#{file_path}"), @@ -48,7 +104,7 @@ {title: file_path}) %>
<% else %> -
<%= filename %>
+ <%= filename %>
<% end %> @@ -60,3 +116,5 @@ <% content_for :footer_html do %> <% end %> + +