2884: Can now choose a specific folder to browse in the file selector modal.
[arvados.git] / apps / workbench / app / assets / javascripts / application.js
1 // This is a manifest file that'll be compiled into application.js, which will include all the files
2 // listed below.
3 //
4 // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5 // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6 //
7 // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8 // the compiled file.
9 //
10 // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11 // GO AFTER THE REQUIRES BELOW.
12 //
13 //= require jquery
14 //= require jquery_ujs
15 //= require bootstrap
16 //= require bootstrap/dropdown
17 //= require bootstrap/tab
18 //= require bootstrap/tooltip
19 //= require bootstrap/popover
20 //= require bootstrap/collapse
21 //= require bootstrap/modal
22 //= require bootstrap/button
23 //= require bootstrap3-editable/bootstrap-editable
24 //= require_tree .
25
26 jQuery(function($){
27     $.ajaxSetup({
28         headers: {
29             'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')
30         }
31     });
32     $('[data-toggle=tooltip]').tooltip();
33
34     $('.expand-collapse-row').on('click', function(event) {
35         var targets = $('#' + $(this).attr('data-id'));
36         if (targets.css('display') == 'none') {
37             $(this).addClass('icon-minus-sign');
38             $(this).removeClass('icon-plus-sign');
39         } else {
40             $(this).addClass('icon-plus-sign');
41             $(this).removeClass('icon-minus-sign');
42         }
43         targets.fadeToggle(200);
44     });
45
46     var ajaxCount = 0;
47
48     $(document).
49         on('ajax:send', function(e, xhr) {
50             ajaxCount += 1;
51             if (ajaxCount == 1) {
52                 $('.loading').fadeTo('fast', 1);
53             }
54         }).
55         on('ajax:complete', function(e, status) {
56             ajaxCount -= 1;
57             if (ajaxCount == 0) {
58                 $('.loading').fadeOut('fast', 0);
59             }
60         }).
61         on('ajaxSend', function(e, xhr) {
62             // map jquery event to rails event
63             $(document).trigger('ajax:send');
64         }).
65         on('ajaxComplete', function(e, xhr) {
66             // map jquery event to rails event
67             $(document).trigger('ajax:complete');
68         }).
69         on('click', '.removable-tag a', function(e) {
70             var tag_span = $(this).parents('[data-tag-link-uuid]').eq(0)
71             tag_span.fadeTo('fast', 0.2);
72             $.ajax('/links/' + tag_span.attr('data-tag-link-uuid'),
73                    {dataType: 'json',
74                     type: 'POST',
75                     data: { '_method': 'DELETE' },
76                     context: tag_span}).
77                 done(function(data, status, jqxhr) {
78                     this.remove();
79                 }).
80                 fail(function(jqxhr, status, error) {
81                     this.addClass('label-danger').fadeTo('fast', '1');
82                 });
83             return false;
84         }).
85         on('click', 'a.add-tag-button', function(e) {
86             var jqxhr;
87             var new_tag_uuid = 'new-tag-' + Math.random();
88             var tag_head_uuid = $(this).parents('tr').attr('data-object-uuid');
89             var new_tag = window.prompt("Add tag for collection "+
90                                     tag_head_uuid,
91                                     "");
92             if (new_tag == null)
93                 return false;
94             var new_tag_span =
95                 $('<span class="label label-info removable-tag"></span>').
96                 attr('data-tag-link-uuid', new_tag_uuid).
97                 text(new_tag).
98                 css('opacity', '0.2').
99                 append('&nbsp;<a title="Delete tag"><i class="glyphicon glyphicon-trash"></i></a>&nbsp;');
100             $(this).
101                 parent().
102                 find('>span').
103                 append(new_tag_span).
104                 append('&nbsp; ');
105             $.ajax($(this).attr('data-remote-href'),
106                            {dataType: 'json',
107                             type: $(this).attr('data-remote-method'),
108                             data: {
109                                 'link[head_uuid]': tag_head_uuid,
110                                 'link[link_class]': 'tag',
111                                 'link[name]': new_tag
112                             },
113                             context: new_tag_span}).
114                 done(function(data, status, jqxhr) {
115                     this.attr('data-tag-link-uuid', data.uuid).
116                         fadeTo('fast', '1');
117                 }).
118                 fail(function(jqxhr, status, error) {
119                     this.addClass('label-danger').fadeTo('fast', '1');
120                 });
121             return false;
122         });
123
124     $(document).
125         on('ajax:complete ready', function() {
126             // See http://getbootstrap.com/javascript/#buttons
127             $('.btn').button();
128         });
129
130     $(document).
131         on('ready ajax:complete', function() {
132             $('[data-toggle~=tooltip]').tooltip({container:'body'});
133         });
134
135     HeaderRowFixer = function(selector) {
136         this.duplicateTheadTr = function() {
137             $(selector).each(function() {
138                 var the_table = this;
139                 if ($('>tbody>tr:first>th', the_table).length > 0)
140                     return;
141                 $('>tbody', the_table).
142                     prepend($('>thead>tr', the_table).
143                             clone().
144                             css('opacity', 0));
145             });
146         }
147         this.fixThead = function() {
148             $(selector).each(function() {
149                 var widths = [];
150                 $('> tbody > tr:eq(1) > td', this).each( function(i,v){
151                     widths.push($(v).width());
152                 });
153                 for(i=0;i<widths.length;i++) {
154                     $('thead th:eq('+i+')', this).width(widths[i]);
155                 }
156             });
157         }
158     }
159
160     var fixer = new HeaderRowFixer('.table-fixed-header-row');
161     fixer.duplicateTheadTr();
162     fixer.fixThead();
163     $(window).resize(function(){
164         fixer.fixThead();
165     });
166     $(document).on('ajax:complete', function(e, status) {
167         fixer.duplicateTheadTr();
168         fixer.fixThead();
169     });
170 });