X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8c4542afc387211a36cc90f8085f229ff314854e..c240206e4fc7dd12bf716b7d8de865c785c1bb60:/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 a21a514c47..96ddf95b3c 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,3 +1,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% preview_selectable_container = '' preview_selectable = '' @@ -27,6 +31,16 @@ 'data-selection-action' => 'combine-collections', 'data-toggle' => 'dropdown' %> + <% if object.editable? %> +
  • <%= link_to "Remove selected files", '#', + method: :post, + 'data-href' => url_for(controller: 'collections', action: :remove_selected_files), + 'data-selection-param-name' => 'selection[]', + 'data-selection-action' => 'remove-selected-files', + 'data-toggle' => 'dropdown', + 'class' => 'btn-remove-selected-files' + %>
  • + <% end %>
    @@ -86,8 +100,24 @@ } %>   <% end %> + + <% if object.editable? %> + + <%= link_to({controller: 'collections', action: 'remove_selected_files', id: object.uuid, selection: [object.portable_data_hash+'/'+file_path]}, method: :post, remote: true, data: {confirm: "Remove #{file_path}?", toggle: 'tooltip', placement: 'top'}, class: 'btn btn-sm btn-default btn-nodecorate btn-collection-file-control', title: 'Remove this file') do %> + + <% end %> + + <% end %> <% if CollectionsHelper::is_image(filename) %> - <%= filename %>
    + + <% if object.editable? %> + + <%= render_editable_attribute object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_name' => 'rename-file-path:'+file_path}, {tiptitle: 'Edit name or directory or both for this file', btnclass: 'collection-file-control'} %> + + <% else %> + <%= filename %> + <% end %> +
    <%= link_to(image_tag("#{url_for object}/#{file_path}"), link_params.merge(disposition: 'inline'), @@ -95,7 +125,13 @@
    <% else %> - <%= filename %> + <% if object.editable? %> + <%= render_editable_attribute object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_name' => 'rename-file-path:'+file_path}, {tiptitle: 'Edit name or directory or both for this file', btnclass: 'collection-file-control'} %> + + <% else %> + <%= filename %> + <% end %> + <% end %>