X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/da51b9328abab2df757ed13eadc7c3557315094b..8eaad00b025167a7505ba11ad6a05b52a43c2399:/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 ca694d2c47..4b63162be0 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,5 +1,25 @@ +<% content_for :css do %> +.file-list-inline-image { + width: 50%; + height: auto; +} +<% end %> + +<% content_for :tab_line_buttons do %> +
+
+
+
+ Collection storage status: + <%= render partial: 'toggle_persist', locals: { uuid: @object.uuid, current_state: (@is_persistent ? 'persistent' : 'cache') } %> +
+
+
+<% end %> + + @@ -7,33 +27,49 @@ + - <% if @object then @object.files.sort_by{|f|f[1]}.each do |file| %> - <% file_path = "#{file[0]}/#{file[1]}" %> - - + <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %> + <% file_path = CollectionsHelper::file_path file %> + + + - + - - + + <% end; end %>
path file size d/l
- <%= file[0] %> -
+ <%= 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}", + :title => "Click to add this item to your selection list" + } %> + + <%= file[0] %> + - <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %> + <%= link_to (if CollectionsHelper::is_image file[1] + 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])) %> - + <%= 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'} %> +
+