X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a59152e34814f453a7380e68a55534e2f8922d57..4f552c0187f8c31d94ff74485c57ef7f9888597e:/apps/workbench/app/assets/javascripts/application.js diff --git a/apps/workbench/app/assets/javascripts/application.js b/apps/workbench/app/assets/javascripts/application.js index 5733810651..6afc8c3b04 100644 --- a/apps/workbench/app/assets/javascripts/application.js +++ b/apps/workbench/app/assets/javascripts/application.js @@ -12,5 +12,132 @@ // //= require jquery //= require jquery_ujs -//= require twitter/bootstrap +//= require bootstrap +//= require bootstrap/dropdown +//= require bootstrap/tab +//= require bootstrap/tooltip +//= require bootstrap/popover +//= require bootstrap/collapse +//= require bootstrap/modal +//= require bootstrap3-editable/bootstrap-editable //= require_tree . + +jQuery(function($){ + $.ajaxSetup({ + headers: { + 'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content') + } + }); + $('.editable').editable(); + $('[data-toggle=tooltip]').tooltip(); + + $('.expand-collapse-row').on('click', function(event) { + var targets = $('#' + $(this).attr('data-id')); + if (targets.css('display') == 'none') { + $(this).addClass('icon-minus-sign'); + $(this).removeClass('icon-plus-sign'); + } else { + $(this).addClass('icon-plus-sign'); + $(this).removeClass('icon-minus-sign'); + } + targets.fadeToggle(200); + }); + + $(document). + on('ajax:send', function(e, xhr) { + $('.loading').fadeTo('fast', 1); + }). + on('ajax:complete', function(e, status) { + $('.loading').fadeOut('fast', 0); + }). + on('click', '.removable-tag a', function(e) { + var tag_span = $(this).parents('[data-tag-link-uuid]').eq(0) + tag_span.fadeTo('fast', 0.2); + $.ajax('/links/' + tag_span.attr('data-tag-link-uuid'), + {dataType: 'json', + type: 'POST', + data: { '_method': 'DELETE' }, + context: tag_span}). + done(function(data, status, jqxhr) { + this.remove(); + }). + fail(function(jqxhr, status, error) { + this.addClass('label-danger').fadeTo('fast', '1'); + }); + return false; + }). + on('click', 'a.add-tag-button', function(e) { + var jqxhr; + var new_tag_uuid = 'new-tag-' + Math.random(); + var tag_head_uuid = $(this).parents('tr').attr('data-object-uuid'); + var new_tag = window.prompt("Add tag for collection "+ + tag_head_uuid, + ""); + if (new_tag == null) + return false; + var new_tag_span = + $(''). + attr('data-tag-link-uuid', new_tag_uuid). + text(new_tag). + css('opacity', '0.2'). + append('  '); + $(this). + parent(). + find('>span'). + append(new_tag_span). + append('  '); + $.ajax($(this).attr('data-remote-href'), + {dataType: 'json', + type: $(this).attr('data-remote-method'), + data: { + 'link[head_uuid]': tag_head_uuid, + 'link[link_class]': 'tag', + 'link[name]': new_tag + }, + context: new_tag_span}). + done(function(data, status, jqxhr) { + this.attr('data-tag-link-uuid', data.uuid). + fadeTo('fast', '1'); + }). + fail(function(jqxhr, status, error) { + this.addClass('label-danger').fadeTo('fast', '1'); + }); + return false; + }); + + HeaderRowFixer = function(selector) { + this.duplicateTheadTr = function() { + $(selector).each(function() { + var the_table = this; + if ($('>tbody>tr:first>th', the_table).length > 0) + return; + $('>tbody', the_table). + prepend($('>thead>tr', the_table). + clone(). + css('opacity', 0)); + }); + } + this.fixThead = function() { + $(selector).each(function() { + var widths = []; + $('> tbody > tr:eq(1) > td', this).each( function(i,v){ + widths.push($(v).width()); + }); + for(i=0;i