X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6d59f29ba37c608e4b01b27a2fa78bc065fdc2a6..7a98271d94163cdc4afa5bfcf275db353bc062d2:/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 15daaf7e2d..a56e885336 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,7 +1,7 @@ <% content_for :css do %> .file-list-inline-image { width: 50%; - height: auto; + height: auto; } <% end %> @@ -23,42 +23,44 @@ <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %> - <% file_path = "#{file[0]}/#{file[1]}" %> - - - <% fp2 = file_path[2..-1] if file_path[0..1] == './' %> - <% fp2 ||= file_path %> -<%= check_box_tag 'uuids[]', @object.uuid+file_path, false, { - :class => 'persistent-selection', - :friendly_type => "File", - :friendly_name => "#{@object.uuid}/#{fp2}", - :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}" - } %> - - - <%= file[0] %> - + <% f0 = file[0] %> + <% f0 = '' if f0 == '.' %> + <% f0 = f0[2..-1] if f0[0..1] == './' %> + <% f0 += '/' if not f0.empty? %> + <% file_path = "#{f0}#{file[1]}" %> + + + <%= 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'}, + 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])) %> - + + <%= 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'} %> -
- - + +
+ <%= 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'} %> +
+ + <% end; end %>