X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a17b176ea55dc3820ef1bde4b99cf33c628ffbbe..37470b030384ebe8a73e6d1e725cbde4abb924da:/apps/workbench/app/assets/javascripts/select_modal.js diff --git a/apps/workbench/app/assets/javascripts/select_modal.js b/apps/workbench/app/assets/javascripts/select_modal.js index dda230f50b..17b334eb64 100644 --- a/apps/workbench/app/assets/javascripts/select_modal.js +++ b/apps/workbench/app/assets/javascripts/select_modal.js @@ -8,14 +8,19 @@ $(document).on('click', '.selectable', function() { removeClass('active'); } $this.toggleClass('active'); - any = ($container. + + if (!$this.hasClass('use-preview-selection')) { + any = ($container. find('.selectable.active').length > 0) - $this. + } + + if (!$container.hasClass('preview-selectable-container')) { + $this. closest('.modal'). find('[data-enable-if-selection]'). prop('disabled', !any); - if ($this.hasClass('active')) { + if ($this.hasClass('active')) { var no_preview_available = '
(No preview available)
'; if (!$this.attr('data-preview-href')) { $(".modal-dialog-preview-pane").html(no_preview_available); @@ -30,27 +35,60 @@ $(document).on('click', '.selectable', function() { fail(function(data, status, jqxhr) { $(".modal-dialog-preview-pane").html(no_preview_available); }); + } + } else { + any = ($container. + find('.preview-selectable.active').length > 0) + $(this). + closest('.modal'). + find('[data-enable-if-selection]'). + prop('disabled', !any); } }).on('click', '.modal button[data-action-href]', function() { var selection = []; var data = []; var $modal = $(this).closest('.modal'); + var http_method = $(this).attr('data-method').toUpperCase(); var action_data = $(this).data('action-data'); + var action_data_from_params = $(this).data('action-data-from-params'); var selection_param = action_data.selection_param; $modal.find('.modal-error').removeClass('hide').hide(); - $modal.find('.selectable.active[data-object-uuid]').each(function() { + + var $preview_selections = $modal.find('.preview-selectable.active'); + if ($preview_selections.length > 0) { + data.push({name: selection_param, value: $preview_selections.first().attr('href')}); + } + + if (data.length == 0) { // not using preview selection option + $modal.find('.selectable.active[data-object-uuid]').each(function() { var val = $(this).attr('data-object-uuid'); data.push({name: selection_param, value: val}); - }); - $.each(action_data, function(key, value) { - data.push({name: key, value: value}); - }); + }); + } + $.each($.extend({}, action_data, action_data_from_params), + function(key, value) { + if (value instanceof Array && key[-1] != ']') { + for (var i in value) { + data.push({name: key + '[]', value: value[i]}); + } + } else { + data.push({name: key, value: value}); + } + }); + if (http_method === 'PATCH') { + // Some user agents do not support HTTP PATCH (notably, + // phantomjs silently ignores our "data" and sends an empty + // request body) so we use POST instead, and supply a + // _method=PATCH param to tell Rails what we really want. + data.push({name: '_method', value: http_method}); + http_method = 'POST'; + } $.ajax($(this).attr('data-action-href'), {dataType: 'json', - type: $(this).attr('data-method'), + type: http_method, data: data, - traditional: true, + traditional: false, context: {modal: $modal, action_data: action_data}}). fail(function(jqxhr, status, error) { if (jqxhr.readyState == 0 || jqxhr.status == 0) { @@ -61,8 +99,9 @@ $(document).on('click', '.selectable', function() { message = "Request failed."; } this.modal.find('.modal-error'). - html('
' + message + '
'). - show(); + html('
'). + show(). + children().text(message); }). done(function(data, status, jqxhr) { var event_name = this.action_data.success; @@ -113,7 +152,7 @@ $(document).on('click', '.selectable', function() { return false; } $(''). - attr('href', $form.attr('data-search-modal')). + attr('data-remote-href', $form.attr('data-search-modal')). attr('data-remote', 'true'). attr('data-method', 'GET'). hide().