X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7a98271d94163cdc4afa5bfcf275db353bc062d2..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 a56e885336..e3c79f143b 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,66 +1,108 @@ -<% content_for :css do %> -.file-list-inline-image { - width: 50%; - height: auto; -} -<% end %> - - - - - - - - - - - - - - - - - - - <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %> - <% f0 = file[0] %> - <% f0 = '' if f0 == '.' %> - <% f0 = f0[2..-1] if f0[0..1] == './' %> - <% f0 += '/' if not f0.empty? %> - <% file_path = "#{f0}#{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 %> -

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

This collection is empty.

+ <% else %> + + <% end %> +
  • + <% if size.nil? # This is a subdirectory. %> + <% dirstack.push(File.join(dirname, filename)) %> +
    +
    <%= filename %>
    +
    +
  • - - <% end; end %> - -
    pathfilesized/l
    - <%= 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', id: @object.uuid }/#{file_path}" - } %> - - <%= file[0] %> - - <%= link_to((if /\.(jpg|jpeg|gif|png|svg)$/i.match(file[1]) then - image_tag "#{url_for @object}/#{file_path}", class: "file-list-inline-image" - else - file[1] - end), - {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, - {title: file_path}) %> - - <%= 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'} %> +
    + <% if (!defined? no_checkboxes or !no_checkboxes) and current_user %> + <%= 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.portable_data_hash, file: file_path), + :title => "Include #{file_path} in your selections", + :id => "#{@object.uuid}_file_#{index}", + } %> +   + <% end %> + <% if CollectionsHelper::is_image(filename) %> + <%= filename %>
    +
    + <%= link_to(image_tag("#{url_for @object}/#{file_path}"), + link_params.merge(disposition: 'inline'), + {title: file_path}) %>
    -
    + + <% else %> + <%= 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 %>