X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ea4b289bea3baebde1d23bbf38ded4e8da7ff298..6d5e04a731edc9ce8944ecea637070afbdadeb05:/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 fbd8c4b266..9fdd32b733 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,60 +1,23 @@ -<% content_for :css do %> -ul#collection_files { - padding-left: 0; -} - -ul.collection_files { - line-height: 2.5em; - list-style-type: none; - padding-left: 2.3em; -} - -ul.collection_files li { - clear: both; -} - -.collection_files_row { - padding: 1px; /* Replaced by border for :hover */ -} - -.collection_files_row:hover { - background-color: #D9EDF7; - padding: 0px; - border: 1px solid #BCE8F1; - border-radius: 3px; -} - -.collection_files_inline { - clear: both; - width: 80%; - height: auto; - max-height: 6em; - margin: 0 1em; -} - -.collection_files_name { - padding-left: .5em; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.collection_files_name i.fa-fw:first-child { - width: 1.6em; -} -<% end %> - -<% content_for :tab_line_buttons do %> -
-
-
-
- Collection storage status: - <%= render partial: 'toggle_persist', locals: { uuid: @object.uuid, current_state: (@is_persistent ? 'persistent' : 'cache') } %> +
+ <% if !defined? no_checkboxes or !no_checkboxes %> +
+
+
+ + +
-
-<% end %> +

+ <% end %> <% file_tree = @object.andand.files_tree %> <% if file_tree.nil? or file_tree.empty? %> @@ -62,7 +25,7 @@ ul.collection_files li { <% else %>

    <% dirstack = [file_tree.first.first] %> - <% file_tree.each_with_index do |(dirname, filename, size), index| %> + <% file_tree.take(10000).each_with_index do |(dirname, filename, size), index| %> <% file_path = CollectionsHelper::file_path([dirname, filename]) %> <% while dirstack.any? and (dirstack.last != dirname) %> <% dirstack.pop %>
@@ -76,27 +39,33 @@ ul.collection_files li {
    <% else %> <% link_params = {controller: 'collections', action: 'show_file', - uuid: @object.uuid, file: file_path, size: size} %> + uuid: @object.portable_data_hash, file: file_path, size: size} %>
    <%= raw(human_readable_bytes_html(size)) %> + <% 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 %> <%= check_box_tag 'uuids[]', "#{@object.uuid}/#{file_path}", false, { :class => 'persistent-selection', :friendly_type => "File", :friendly_name => "#{@object.uuid}/#{file_path}", :href => url_for(controller: 'collections', action: 'show_file', - uuid: @object.uuid, file: file_path), + uuid: @object.portable_data_hash, file: file_path), :title => "Include #{file_path} in your selections", } %> - <%= 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"}) %> -
    +   + <% end %> <% if CollectionsHelper::is_image(filename) %> -
    <%= filename %>
    + <%= filename %>
<%= link_to(image_tag("#{url_for @object}/#{file_path}"), @@ -104,11 +73,17 @@ ul.collection_files li { {title: file_path}) %>
<% else %> -
<%= filename %>
+ <%= filename %>
<% end %> <% end # if file or directory %> <% end # file_tree.each %> - + <%= raw(dirstack.map { |_| "" }.join("")) %> <% end # if file_tree %> + +<% content_for :footer_html do %> + +<% end %> + +