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 action_data_from_params = $(this).data('action-data-from-params');
41 var selection_param = action_data.selection_param;
42 $modal.find('.modal-error').removeClass('hide').hide();
43 $modal.find('.selectable.active[data-object-uuid]').each(function() {
44 var val = $(this).attr('data-object-uuid');
45 data.push({name: selection_param, value: val});
47 $.each($.extend({}, action_data, action_data_from_params),
48 function(key, value) {
49 if (value instanceof Array && key[-1] != ']') {
50 for (var i in value) {
51 data.push({name: key + '[]', value: value[i]});
54 data.push({name: key, value: value});
57 $.ajax($(this).attr('data-action-href'),
59 type: $(this).attr('data-method'),
62 context: {modal: $modal, action_data: action_data}}).
63 fail(function(jqxhr, status, error) {
64 if (jqxhr.readyState == 0 || jqxhr.status == 0) {
65 message = "Cancelled."
66 } else if (jqxhr.responseJSON && jqxhr.responseJSON.errors) {
67 message = jqxhr.responseJSON.errors.join("; ");
69 message = "Request failed.";
71 this.modal.find('.modal-error').
72 html('<div class="alert alert-danger">' + message + '</div>').
75 done(function(data, status, jqxhr) {
76 var event_name = this.action_data.success;
77 this.modal.find('.modal-error').hide();
78 $(document).trigger(event_name!=null ? event_name : 'page-refresh',
79 [data, status, jqxhr, this.action_data]);
81 }).on('click', '.chooser-show-project', function() {
83 var project_uuid = $(this).attr('data-project-uuid');
84 $(this).attr('href', '#'); // Skip normal click handler
86 params = {'filters': [['owner_uuid',
89 'project_uuid': project_uuid
92 // Use current selection as dropdown button label
94 closest('.dropdown-menu').
96 html($(this).text() + ' <span class="caret"></span>');
97 // Set (or unset) filter params and refresh filterable rows
98 $($(this).closest('[data-filterable-target]').attr('data-filterable-target')).
99 data('infinite-content-params-from-project-dropdown', params).
100 trigger('refresh-content');
101 }).on('ready', function() {
102 $('form[data-search-modal] a').on('click', function() {
103 $(this).closest('form').submit();
106 $('form[data-search-modal]').on('submit', function() {
107 // Ask the server for a Search modal. When it arrives, copy
108 // the search string from the top nav input into the modal's
109 // search query field.
111 var searchq = $form.find('input').val();
112 var is_a_uuid = /^([0-9a-f]{32}(\+\S+)?|[0-9a-z]{5}-[0-9a-z]{5}-[0-9a-z]{15})$/;
113 if (searchq.trim().match(is_a_uuid)) {
114 window.location = '/actions?uuid=' + encodeURIComponent(searchq.trim());
115 // Show the "loading" indicator. TODO: better page transition hook
116 $(document).trigger('ajax:send');
119 if ($form.find('a[data-remote]').length > 0) {
120 // A search dialog is already loading.
124 attr('href', $form.attr('data-search-modal')).
125 attr('data-remote', 'true').
126 attr('data-method', 'GET').
129 on('ajax:success', function(data, status, xhr) {
130 $('body > .modal-container input[type=text]').
131 val($form.find('input').val()).
133 $form.find('input').val('');
134 }).on('ajax:complete', function() {
140 }).on('page-refresh', function(event, data, status, jqxhr, action_data) {
141 window.location.reload();
142 }).on('tab-refresh', function(event, data, status, jqxhr, action_data) {
143 $(document).trigger('arv:pane:reload:all');
144 $('body > .modal-container .modal').modal('hide');
145 }).on('redirect-to-created-object', function(event, data, status, jqxhr, action_data) {
146 window.location.href = data.href.replace(/^[^\/]*\/\/[^\/]*/, '');
147 }).on('shown.bs.modal', 'body > .modal-container .modal', function() {
148 $('.focus-on-display', this).focus();