X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0dea965e36e7ac52a789e31b45fc70f1925c4190..37860134053cda88c7ee3a3f4300e949cad016f5:/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 f7a94fc5ec..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,13 +31,16 @@ 'data-selection-action' => 'combine-collections', 'data-toggle' => 'dropdown' %> + <% if object.editable? %>
  • <%= link_to "Remove selected files", '#', method: :post, - 'data-href' => url_for(action: :remove_selected_files), + 'data-href' => url_for(controller: 'collections', action: :remove_selected_files), 'data-selection-param-name' => 'selection[]', 'data-selection-action' => 'remove-selected-files', - 'data-toggle' => 'dropdown' + 'data-toggle' => 'dropdown', + 'class' => 'btn-remove-selected-files' %>
  • + <% end %>
    @@ -94,14 +101,23 @@   <% end %> - <% if @object.editable? %> - <%= link_to({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', title: "Remove #{file_path}") do %> + <% 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'), @@ -109,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 %>