refs #2871
[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('click', '.removable-tag a', function(e) {
62             var tag_span = $(this).parents('[data-tag-link-uuid]').eq(0)
63             tag_span.fadeTo('fast', 0.2);
64             $.ajax('/links/' + tag_span.attr('data-tag-link-uuid'),
65                    {dataType: 'json',
66                     type: 'POST',
67                     data: { '_method': 'DELETE' },
68                     context: tag_span}).
69                 done(function(data, status, jqxhr) {
70                     this.remove();
71                 }).
72                 fail(function(jqxhr, status, error) {
73                     this.addClass('label-danger').fadeTo('fast', '1');
74                 });
75             return false;
76         }).
77         on('click', 'a.add-tag-button', function(e) {
78             var jqxhr;
79             var new_tag_uuid = 'new-tag-' + Math.random();
80             var tag_head_uuid = $(this).parents('tr').attr('data-object-uuid');
81             var new_tag = window.prompt("Add tag for collection "+
82                                     tag_head_uuid,
83                                     "");
84             if (new_tag == null)
85                 return false;
86             var new_tag_span =
87                 $('<span class="label label-info removable-tag"></span>').
88                 attr('data-tag-link-uuid', new_tag_uuid).
89                 text(new_tag).
90                 css('opacity', '0.2').
91                 append('&nbsp;<a title="Delete tag"><i class="glyphicon glyphicon-trash"></i></a>&nbsp;');
92             $(this).
93                 parent().
94                 find('>span').
95                 append(new_tag_span).
96                 append('&nbsp; ');
97             $.ajax($(this).attr('data-remote-href'),
98                            {dataType: 'json',
99                             type: $(this).attr('data-remote-method'),
100                             data: {
101                                 'link[head_uuid]': tag_head_uuid,
102                                 'link[link_class]': 'tag',
103                                 'link[name]': new_tag
104                             },
105                             context: new_tag_span}).
106                 done(function(data, status, jqxhr) {
107                     this.attr('data-tag-link-uuid', data.uuid).
108                         fadeTo('fast', '1');
109                 }).
110                 fail(function(jqxhr, status, error) {
111                     this.addClass('label-danger').fadeTo('fast', '1');
112                 });
113             return false;
114         });
115
116     $(document).
117         on('ajax:complete ready', function() {
118             // See http://getbootstrap.com/javascript/#buttons
119             $('.btn').button();
120         });
121
122     HeaderRowFixer = function(selector) {
123         this.duplicateTheadTr = function() {
124             $(selector).each(function() {
125                 var the_table = this;
126                 if ($('>tbody>tr:first>th', the_table).length > 0)
127                     return;
128                 $('>tbody', the_table).
129                     prepend($('>thead>tr', the_table).
130                             clone().
131                             css('opacity', 0));
132             });
133         }
134         this.fixThead = function() {
135             $(selector).each(function() {
136                 var widths = [];
137                 $('> tbody > tr:eq(1) > td', this).each( function(i,v){
138                     widths.push($(v).width());
139                 });
140                 for(i=0;i<widths.length;i++) {
141                     $('thead th:eq('+i+')', this).width(widths[i]);
142                 }
143             });
144         }
145     }
146
147     var fixer = new HeaderRowFixer('.table-fixed-header-row');
148     fixer.duplicateTheadTr();
149     fixer.fixThead();
150     $(window).resize(function(){
151         fixer.fixThead();
152     });
153     $(document).on('ajax:complete', function(e, status) {
154         fixer.duplicateTheadTr();
155         fixer.fixThead();
156     });
157 });