3235: Show multiple object types in top-nav Search modal.
[arvados.git] / apps / workbench / app / assets / javascripts / select_modal.js
1 $(document).on('click', '.selectable', function() {
2     var any;
3     var $this = $(this);
4     if (!$this.hasClass('multiple')) {
5         $this.closest('.selectable-container').
6             find('.selectable').
7             removeClass('active');
8     }
9     $this.toggleClass('active');
10     any = ($this.
11            closest('.selectable-container').
12            find('.selectable.active').length > 0)
13     $this.
14         closest('.modal').
15         find('[data-enable-if-selection]').
16         prop('disabled', !any);
17
18     if ($this.hasClass('active')) {
19         var no_preview_available = '<div class="spinner-h-center spinner-v-center"><center>(No preview available)</center></div>';
20         if (!$this.attr('data-preview-href')) {
21             $(".modal-dialog-preview-pane").html(no_preview_available);
22             return;
23         }
24         $(".modal-dialog-preview-pane").html('<div class="spinner spinner-32px spinner-h-center spinner-v-center"></div>');
25         $.ajax($this.attr('data-preview-href'),
26                {dataType: "html"}).
27             done(function(data, status, jqxhr) {
28                 $(".modal-dialog-preview-pane").html(data);
29             }).
30             fail(function(data, status, jqxhr) {
31                 $(".modal-dialog-preview-pane").html(no_preview_available);
32             });
33     }
34
35 }).on('click', '.modal button[data-action-href]', function() {
36     var selection = [];
37     var data = [];
38     var $modal = $(this).closest('.modal');
39     var action_data = $(this).data('action-data');
40     var selection_param = action_data.selection_param;
41     $modal.find('.modal-error').removeClass('hide').hide();
42     $modal.find('.selectable.active[data-object-uuid]').each(function() {
43         var val = $(this).attr('data-object-uuid');
44         data.push({name: selection_param, value: val});
45     });
46     $.each(action_data, function(key, value) {
47         data.push({name: key, value: value});
48     });
49     $.ajax($(this).attr('data-action-href'),
50            {dataType: 'json',
51             type: $(this).attr('data-method'),
52             data: data,
53             traditional: true,
54             context: {modal: $modal, action_data: action_data}}).
55         fail(function(jqxhr, status, error) {
56             if (jqxhr.readyState == 0 || jqxhr.status == 0) {
57                 message = "Cancelled."
58             } else if (jqxhr.responseJSON && jqxhr.responseJSON.errors) {
59                 message = jqxhr.responseJSON.errors.join("; ");
60             } else {
61                 message = "Request failed.";
62             }
63             this.modal.find('.modal-error').
64                 html('<div class="alert alert-danger">' + message + '</div>').
65                 show();
66         }).
67         done(function(data, status, jqxhr) {
68             var event_name = this.action_data.success;
69             this.modal.find('.modal-error').hide();
70             $(document).trigger(event_name!=null ? event_name : 'page-refresh',
71                                 [data, status, jqxhr, this.action_data]);
72         });
73 });
74 $(document).on('page-refresh', function(event, data, status, jqxhr, action_data) {
75     window.location.reload();
76 }).on('tab-refresh', function(event, data, status, jqxhr, action_data) {
77     $(document).trigger('arv:pane:reload:all');
78     $('body > .modal-container .modal').modal('hide');
79 }).on('redirect-to-created-object', function(event, data, status, jqxhr, action_data) {
80     window.location.href = data.href.replace(/^[^\/]*\/\/[^\/]*/, '');
81 });