X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5f3de04d46dd4aeec45731b4e5c479c689eee7b6..d144724e1b48fa10e28f1e0ddddf440c6ac90ee2:/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 9a503291c3..e3c79f143b 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,45 +1,108 @@ - - - - - - - - - - - - - - - - <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %> - <% file_path = "#{file[0]}/#{file[1]}" %> - - +<% + preview_selectable_container = '' + preview_selectable = '' + padding_left = '1em' + if !params['use_preview_selection'].nil? and params['use_preview_selection'] == 'true' + preview_selectable_container = 'preview-selectable-container selectable-container' + preview_selectable = 'preview-selectable selectable' + padding_left = '0em' + end +%> - - - +
+ <% if Collection.creatable? and (!defined? no_checkboxes or !no_checkboxes) %> +
+
+
+ + +
+
+ + +
+
+
+ +
+
+

+ <% end %> -

- - <% end; end %> - -
pathfilesized/l
- <%= file[0] %> - - <%= link_to((if /\.(jpg|jpeg|gif|png)$/.match(file[1]) then - image_tag "#{url_for @object}/#{file_path}" - else - file[1] - end), - {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, - {title: 'View in browser'}) %> - - <%= raw(human_readable_bytes_html(file[2])) %> - -
- <%= link_to raw(''), {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'attachment'}, {class: 'btn btn-info btn-sm', title: 'Download'} %> + <% file_tree = @object.andand.files_tree %> + <% if file_tree.nil? or file_tree.empty? %> +

This collection is empty.

+ <% else %> +
    + <% dirstack = [file_tree.first.first] %> + <% 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 %>
+ <% end %> +
  • + <% if size.nil? # This is a subdirectory. %> + <% dirstack.push(File.join(dirname, filename)) %> +
    +
    <%= filename %>
    -
  • + " }.join("")) %> + <% end # if file_tree %> + + +<% content_for :footer_html do %> + +<% end %>