Merge branch 'master' into 3219-further-docker-improvements
[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
33     $(document).ajaxStart(function(){
34       $('.modal-with-loading-spinner .spinner').show();
35     }).ajaxStop(function(){
36       $('.modal-with-loading-spinner .spinner').hide();
37     });
38
39     $('[data-toggle=tooltip]').tooltip();
40
41     $('.expand-collapse-row').on('click', function(event) {
42         var targets = $('#' + $(this).attr('data-id'));
43         if (targets.css('display') == 'none') {
44             $(this).addClass('icon-minus-sign');
45             $(this).removeClass('icon-plus-sign');
46         } else {
47             $(this).addClass('icon-plus-sign');
48             $(this).removeClass('icon-minus-sign');
49         }
50         targets.fadeToggle(200);
51     });
52
53     var ajaxCount = 0;
54
55     $(document).
56         on('ajax:send', function(e, xhr) {
57             ajaxCount += 1;
58             if (ajaxCount == 1) {
59                 $('.loading').fadeTo('fast', 1);
60             }
61         }).
62         on('ajax:complete', function(e, status) {
63             ajaxCount -= 1;
64             if (ajaxCount == 0) {
65                 $('.loading').fadeOut('fast', 0);
66             }
67         }).
68         on('ajaxSend', function(e, xhr) {
69             // jQuery triggers 'ajaxSend' event when starting an ajax call, but
70             // rails-generated ajax triggers generate 'ajax:send'.  Workbench
71             // event listeners currently expect 'ajax:send', so trigger the
72             // rails event in response to the jQuery one.
73             $(document).trigger('ajax:send');
74         }).
75         on('ajaxComplete', function(e, xhr) {
76             // See comment above about ajaxSend/ajax:send
77             $(document).trigger('ajax:complete');
78         }).
79         on('click', '.removable-tag a', function(e) {
80             var tag_span = $(this).parents('[data-tag-link-uuid]').eq(0)
81             tag_span.fadeTo('fast', 0.2);
82             $.ajax('/links/' + tag_span.attr('data-tag-link-uuid'),
83                    {dataType: 'json',
84                     type: 'POST',
85                     data: { '_method': 'DELETE' },
86                     context: tag_span}).
87                 done(function(data, status, jqxhr) {
88                     this.remove();
89                 }).
90                 fail(function(jqxhr, status, error) {
91                     this.addClass('label-danger').fadeTo('fast', '1');
92                 });
93             return false;
94         }).
95         on('click', 'a.add-tag-button', function(e) {
96             var jqxhr;
97             var new_tag_uuid = 'new-tag-' + Math.random();
98             var tag_head_uuid = $(this).parents('tr').attr('data-object-uuid');
99             var new_tag = window.prompt("Add tag for collection "+
100                                     tag_head_uuid,
101                                     "");
102             if (new_tag == null)
103                 return false;
104             var new_tag_span =
105                 $('<span class="label label-info removable-tag"></span>').
106                 attr('data-tag-link-uuid', new_tag_uuid).
107                 text(new_tag).
108                 css('opacity', '0.2').
109                 append('&nbsp;<a title="Delete tag"><i class="glyphicon glyphicon-trash"></i></a>&nbsp;');
110             $(this).
111                 parent().
112                 find('>span').
113                 append(new_tag_span).
114                 append('&nbsp; ');
115             $.ajax($(this).attr('data-remote-href'),
116                            {dataType: 'json',
117                             type: $(this).attr('data-remote-method'),
118                             data: {
119                                 'link[head_uuid]': tag_head_uuid,
120                                 'link[link_class]': 'tag',
121                                 'link[name]': new_tag
122                             },
123                             context: new_tag_span}).
124                 done(function(data, status, jqxhr) {
125                     this.attr('data-tag-link-uuid', data.uuid).
126                         fadeTo('fast', '1');
127                 }).
128                 fail(function(jqxhr, status, error) {
129                     this.addClass('label-danger').fadeTo('fast', '1');
130                 });
131             return false;
132         });
133
134     $(document).
135         on('ajax:complete ready', function() {
136             // See http://getbootstrap.com/javascript/#buttons
137             $('.btn').button();
138         });
139
140     $(document).
141         on('ready ajax:complete', function() {
142             $('[data-toggle~=tooltip]').tooltip({container:'body'});
143         });
144
145     HeaderRowFixer = function(selector) {
146         this.duplicateTheadTr = function() {
147             $(selector).each(function() {
148                 var the_table = this;
149                 if ($('>tbody>tr:first>th', the_table).length > 0)
150                     return;
151                 $('>tbody', the_table).
152                     prepend($('>thead>tr', the_table).
153                             clone().
154                             css('opacity', 0));
155             });
156         }
157         this.fixThead = function() {
158             $(selector).each(function() {
159                 var widths = [];
160                 $('> tbody > tr:eq(1) > td', this).each( function(i,v){
161                     widths.push($(v).width());
162                 });
163                 for(i=0;i<widths.length;i++) {
164                     $('thead th:eq('+i+')', this).width(widths[i]);
165                 }
166             });
167         }
168     }
169
170     var fixer = new HeaderRowFixer('.table-fixed-header-row');
171     fixer.duplicateTheadTr();
172     fixer.fixThead();
173     $(window).resize(function(){
174         fixer.fixThead();
175     });
176     $(document).on('ajax:complete', function(e, status) {
177         fixer.duplicateTheadTr();
178         fixer.fixThead();
179     });
180 });