1 $(document).on('click', '.selectable', function() {
4 var $container = $(this).closest('.selectable-container');
5 if (!$container.hasClass('multiple')) {
10 $this.toggleClass('active');
12 find('.selectable.active').length > 0)
15 find('[data-enable-if-selection]').
16 prop('disabled', !any);
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);
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'),
27 done(function(data, status, jqxhr) {
28 $(".modal-dialog-preview-pane").html(data);
30 fail(function(data, status, jqxhr) {
31 $(".modal-dialog-preview-pane").html(no_preview_available);
35 }).on('click', '.modal button[data-action-href]', function() {
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});
46 $.each(action_data, function(key, value) {
47 data.push({name: key, value: value});
49 $.ajax($(this).attr('data-action-href'),
51 type: $(this).attr('data-method'),
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("; ");
61 message = "Request failed.";
63 this.modal.find('.modal-error').
64 html('<div class="alert alert-danger">' + message + '</div>').
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]);
73 }).on('click', '.chooser-show-project', function() {
75 var project_uuid = $(this).attr('data-project-uuid');
76 $(this).attr('href', '#'); // Skip normal click handler
78 params = {'filters': [['owner_uuid',
81 'project_uuid': project_uuid
84 // Use current selection as dropdown button label
86 closest('.dropdown-menu').
88 html($(this).text() + ' <span class="caret"></span>');
89 // Set (or unset) filter params and refresh filterable rows
90 $($(this).closest('[data-filterable-target]').attr('data-filterable-target')).
91 data('infinite-content-params-from-project-dropdown', params).
92 trigger('refresh-content');
93 }).on('ready', function() {
94 $('form[data-search-modal] a').on('click', function() {
95 $(this).closest('form').submit();
98 $('form[data-search-modal]').on('submit', function() {
99 // Ask the server for a Search modal. When it arrives, copy
100 // the search string from the top nav input into the modal's
101 // search query field.
103 var searchq = $form.find('input').val();
104 var is_a_uuid = /^([0-9a-f]{32}(\+\S+)?|[0-9a-z]{5}-[0-9a-z]{5}-[0-9a-z]{15})$/;
105 if (searchq.trim().match(is_a_uuid)) {
106 window.location = '/actions?uuid=' + encodeURIComponent(searchq.trim());
107 // Show the "loading" indicator. TODO: better page transition hook
108 $(document).trigger('ajax:send');
111 if ($form.find('a[data-remote]').length > 0) {
112 // A search dialog is already loading.
116 attr('href', $form.attr('data-search-modal')).
117 attr('data-remote', 'true').
118 attr('data-method', 'GET').
121 on('ajax:success', function(data, status, xhr) {
122 $('body > .modal-container input[type=text]').
123 val($form.find('input').val()).
125 $form.find('input').val('');
126 }).on('ajax:complete', function() {
132 }).on('page-refresh', function(event, data, status, jqxhr, action_data) {
133 window.location.reload();
134 }).on('tab-refresh', function(event, data, status, jqxhr, action_data) {
135 $(document).trigger('arv:pane:reload:all');
136 $('body > .modal-container .modal').modal('hide');
137 }).on('redirect-to-created-object', function(event, data, status, jqxhr, action_data) {
138 window.location.href = data.href.replace(/^[^\/]*\/\/[^\/]*/, '');
139 }).on('shown.bs.modal', 'body > .modal-container .modal', function() {
140 $('.focus-on-display', this).focus();