6064: rollback cache update so that it can be done in a separate branch.
[arvados.git] / apps / workbench / app / views / collections / _show_files.html.erb
index 6cd99251cfd8960efbb852db759c49a84483dd36..e3c79f143b0de8fdf6d50dcc591ef05af6fef7b8 100644 (file)
@@ -1,29 +1,51 @@
-<div class="selection-action-container" style="padding-left: 1em">
-  <div class="row">
-    <div class="pull-left">
-      <div class="btn-group btn-group-sm">
-        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Selection... <span class="caret"></span></button>
-        <ul class="dropdown-menu" role="menu">
-          <li><%= link_to "Combine selections into a new collection", '/combine_selected',
-                  'data-href' => url_for('/combine_selected'),
-                  'data-selection-param-name' => 'selection[]',
-                  'data-selection-action' => 'combine',
-                  'data-remote' => true,
-                  'data-toggle' => 'dropdown'
-            %></li>
-        </ul>
+<%
+  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
+%>
+
+<div class="selection-action-container" style="padding-left: <%=padding_left%>">
+  <% if Collection.creatable? and (!defined? no_checkboxes or !no_checkboxes) %>
+    <div class="row">
+      <div class="pull-left">
+        <div class="btn-group btn-group-sm">
+          <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Selection... <span class="caret"></span></button>
+          <ul class="dropdown-menu" role="menu">
+            <li><%= link_to "Create new collection with selected files", '#',
+                    method: :post,
+                    'data-href' => combine_selected_path(
+                      action_data: {current_project_uuid: @object.owner_uuid}.to_json
+                    ),
+                    'data-selection-param-name' => 'selection[]',
+                    'data-selection-action' => 'combine-collections',
+                    'data-toggle' => 'dropdown'
+              %></li>
+          </ul>
+        </div>
+        <div class="btn-group btn-group-sm">
+          <button id="select-all" type="button" class="btn btn-default" onClick="select_all_items()">Select all</button>
+          <button id="unselect-all" type="button" class="btn btn-default" onClick="unselect_all_items()">Unselect all</button>
+        </div>
+      </div>
+      <div class="pull-right">
+        <input class="form-control filterable-control" data-filterable-target="ul#collection_files" id="file_regex" name="file_regex" placeholder="filename regex" type="text"/>
       </div>
     </div>
-  </div>
-  <p/>
+    <p/>
+  <% end %>
 
   <% file_tree = @object.andand.files_tree %>
   <% if file_tree.nil? or file_tree.empty? %>
     <p>This collection is empty.</p>
   <% else %>
-    <ul id="collection_files" class="collection_files">
+    <ul id="collection_files" class="collection_files arv-selectable-items <%=preview_selectable_container%>">
     <% dirstack = [file_tree.first.first] %>
-    <% file_tree.each_with_index do |(dirname, filename, size), index| %>
+    <% file_tree.take(10000).each_with_index do |(dirname, filename, size), index| %>
       <% file_path = CollectionsHelper::file_path([dirname, filename]) %>
       <% while dirstack.any? and (dirstack.last != dirname) %>
         <% dirstack.pop %></ul></li>
       <% else %>
         <% link_params = {controller: 'collections', action: 'show_file',
                           uuid: @object.portable_data_hash, file: file_path, size: size} %>
-         <div class="collection_files_row">
+         <div class="collection_files_row filterable <%=preview_selectable%>" href="<%=@object.uuid%>/<%=file_path%>">
           <div class="collection_files_buttons pull-right">
             <%= raw(human_readable_bytes_html(size)) %>
             <%= link_to(raw('<i class="fa fa-search"></i>'),
                         link_params.merge(disposition: 'inline'),
-                        {title: "View #{file_path}", class: "btn btn-info btn-sm"}) %>
+                        {title: "View #{file_path}", class: "btn btn-info btn-sm", disabled: !preview_allowed_for(file_path)}) %>
             <%= link_to(raw('<i class="fa fa-download"></i>'),
                         link_params.merge(disposition: 'attachment'),
                         {title: "Download #{file_path}", class: "btn btn-info btn-sm"}) %>
           </div>
 
-          <div class="row pull-left">
-            <div class="col-md-1">
-              <% if !defined? no_checkboxes or !no_checkboxes %>
-              <%= 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",
-                  } %>
-              <% end %>
-            </div>
-
-            <% if CollectionsHelper::is_image(filename) %>
-              <div class="collection_files_name col-md-9"><i class="fa fa-fw fa-bar-chart-o"></i> <%= filename %></div>
-             </div>
-                <%= link_to(image_tag("#{url_for @object}/#{file_path}"),
-                            link_params.merge(disposition: 'inline'),
-                            {title: file_path}) %>
-            <% else %>
-              <div class="collection_files_name col-md-9"><i class="fa fa-fw fa-file"></i> <%= filename %></div>
-             </div>
+          <div class="collection_files_name">
+            <% 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}",
+                } %>
+            <span>&nbsp;</span>
             <% end %>
+        <% if CollectionsHelper::is_image(filename) %>
+            <i class="fa fa-fw fa-bar-chart-o"></i> <%= filename %></div>
+          <div class="collection_files_inline">
+            <%= link_to(image_tag("#{url_for @object}/#{file_path}"),
+                        link_params.merge(disposition: 'inline'),
+                        {title: file_path}) %>
           </div>
+         </div>
+        <% else %>
+            <i class="fa fa-fw fa-file" href="<%=@object.uuid%>/<%=file_path%>" ></i> <%= filename %></div>
+         </div>
+        <% end %>
         </li>
       <% end  # if file or directory %>
     <% end  # file_tree.each %>
     <%= raw(dirstack.map { |_| "</ul>" }.join("</li>")) %>
   <% end  # if file_tree %>
-
-  <% content_for :footer_html do %>
-  <div id="collection-sharing-modal-window" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
-  <% end %>
-
 </div>
+
+<% content_for :footer_html do %>
+<div id="collection-sharing-modal-window" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
+<% end %>