X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ac8b77cf3ed0d979e7e6b73c09ce552a51aeb3e9..faf89f7e200e69dca019cf530e121d08ac06f105:/apps/workbench/app/assets/javascripts/selection.js.erb diff --git a/apps/workbench/app/assets/javascripts/selection.js.erb b/apps/workbench/app/assets/javascripts/selection.js.erb index 0068b738ec..55df78697c 100644 --- a/apps/workbench/app/assets/javascripts/selection.js.erb +++ b/apps/workbench/app/assets/javascripts/selection.js.erb @@ -11,29 +11,43 @@ jQuery(function($){ }); function dispatch_selection_action() { - // Build a new "href" attribute for this link by starting with the - // "data-href" attribute and appending ?foo[]=bar&foo[]=baz (or - // &foo=... as appropriate) to reflect the current object - // selections. - var data = []; - var param_name = $(this).attr('data-selection-param-name'); - var href = $(this).attr('data-href'); - if ($(this).closest('.disabled').length > 0) { + /* When the user clicks a selection action link, build a form to perform + the action on the selected data, and submit it. + This is based on handleMethod from rails-ujs, extended to add the + selections to the submitted form. + Copyright (c) 2007-2010 Contributors at http://github.com/rails/jquery-ujs/contributors + */ + var $container = $(this); + if ($container.closest('.disabled').length) { return false; } - $(this). + $container.closest('.dropdown-menu').dropdown('toggle'); + + var href = $container.data('href'), + method = $container.data('method') || 'GET', + paramName = $container.data('selection-param-name'), + csrfToken = $('meta[name=csrf-token]').attr('content'), + csrfParam = $('meta[name=csrf-param]').attr('content'), + form = $('
'), + metadataInput = (''); + + if (csrfParam !== undefined && csrfToken !== undefined) { + metadataInput += (''); + } + $container. closest('.selection-action-container'). find(':checkbox:checked:visible'). - each(function() { - data.push({name: param_name, value: $(this).val()}); + each(function(index, elem) { + metadataInput += (''); }); - if (href.indexOf('?') >= 0) - href += '&'; - else - href += '?'; - href += $.param(data, true); - $(this).attr('href', href); - return true; + + form.data('remote', $container.data('remote')); + form.hide().append(metadataInput).appendTo('body'); + form.submit(); + return false; } function enable_disable_selection_actions() {