Merge branch 'master' 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               } %>
39         </td>
40         <td>
41           <%= file[0] %>
42         </td>
43
44       <td>
45         <%= link_to((if /\.(jpg|jpeg|gif|png|svg)$/i.match(file[1]) then
46                        image_tag "#{url_for @object}/#{file_path}", class: "file-list-inline-image"
47                      else
48                        file[1]
49                      end),
50                     {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'},
51                     {title: file_path}) %>
52       </td>
53
54         <td style="text-align:right">
55           <%= raw(human_readable_bytes_html(file[2])) %>
56         </td>
57
58         <td>
59           <div style="display:inline-block">
60             <%= 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'} %>
61           </div>
62         </td>
63       </tr>
64     <% end; end %>
65   </tbody>
66 </table>