Frontend feature to add items to locally-stored selection list that is session-persis...
[arvados.git] / apps / workbench / app / views / collections / _show_files.html.erb
1 <table class="table table-condensed table-fixedlayout">
2   <colgroup>
3     <col width="4%" />
4     <col width="35%" />
5     <col width="40%" />
6     <col width="15%" />
7     <col width="10%" />
8   </colgroup>
9   <thead>
10     <tr>
11       <th>path</th>
12       <th>file</th>
13       <th style="text-align:right">size</th>
14       <th>d/l</th>
15     </tr>
16   </thead><tbody>
17     <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
18     <% file_path = "#{file[0]}/#{file[1]}" %>
19     <tr>
20       <td>
21         <% fp2 = file_path[2..-1] if file_path[0..1] == './' %>
22         <% fp2 ||= file_path %>
23 <%= check_box_tag 'uuids[]', @object.uuid+file_path, false, {
24   :class => 'persistent-selection', 
25   :friendly_type => "File",
26   :friendly_name => "#{@object.uuid}/#{fp2}",
27   :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}" 
28       } %>
29       </td>
30       <td>
31         <%= file[0] %>
32       </td>
33
34       <td>
35         <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
36       </td>
37
38       <td style="text-align:right">
39         <%= raw(human_readable_bytes_html(file[2])) %>
40       </td>
41
42       <td>
43         <div style="display:inline-block">
44           <%= 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'} %>
45         </div>
46       </td>
47     </tr>
48     <% end; end %>
49   </tbody>
50 </table>