Merge branch '2376-show-collection-tags-everywhere' into 1971-show-image-thumbnails
[arvados.git] / apps / workbench / app / views / collections / _show_files.html.erb
1 <% content_for :css do %>
2 .file-list-inline-image {
3   width: 50%;
4   height: auto;
5 }
6 <% end %>
7
8 <table class="table table-condensed table-fixedlayout">
9   <colgroup>
10     <col width="4%" />
11     <col width="35%" />
12     <col width="40%" />
13     <col width="15%" />
14     <col width="10%" />
15   </colgroup>
16   <thead>
17     <tr>
18       <th></th>
19       <th>path</th>
20       <th>file</th>
21       <th style="text-align:right">size</th>
22       <th>d/l</th>
23     </tr>
24   </thead><tbody>
25     <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
26       <% f0 = file[0] %>
27       <% f0 = '' if f0 == '.' %>
28       <% f0 = f0[2..-1] if f0[0..1] == './' %>
29       <% f0 += '/' if not f0.empty? %>
30       <% file_path = "#{f0}#{file[1]}" %>
31       <tr>
32         <td>
33           <%= check_box_tag 'uuids[]', @object.uuid+'/'+file_path, false, {
34                 :class => 'persistent-selection',
35                 :friendly_type => "File",
36                 :friendly_name => "#{@object.uuid}/#{file_path}",
37                 :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}",
38                 :title => "Click to add this item to your selection list"
39               } %>
40         </td>
41         <td>
42           <%= file[0] %>
43         </td>
44
45       <td>
46         <%= link_to((if /\.(jpg|jpeg|gif|png|svg)$/i.match(file[1]) then
47                        image_tag "#{url_for @object}/#{file_path}", class: "file-list-inline-image"
48                      else
49                        file[1]
50                      end),
51                     {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'},
52                     {title: file_path}) %>
53       </td>
54
55         <td style="text-align:right">
56           <%= raw(human_readable_bytes_html(file[2])) %>
57         </td>
58
59         <td>
60           <div style="display:inline-block">
61             <%= link_to raw('<i class="glyphicon glyphicon-download-alt"></i>'), {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'attachment'}, {class: 'btn btn-info btn-sm', title: 'Download'} %>
62           </div>
63         </td>
64       </tr>
65     <% end; end %>
66   </tbody>
67 </table>