Merge pull request #7582 from jitendrapurohit/CRM-17797
[civicrm-core.git] / js / crm.ajax.js
CommitLineData
53f2643c
CW
1// https://civicrm.org/licensing
2/**
3 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface
4 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Ajax+Pages+and+Forms
5 */
1c1c1ae2 6(function($, CRM, undefined) {
53f2643c 7 /**
f0c9c7dd
CW
8 * @param string path
9 * @param string|object query
8d83b77c 10 * @param string mode - optionally specify "front" or "back"
53f2643c 11 */
0cc040cf 12 var tplURL;
f0c9c7dd
CW
13 CRM.url = function (path, query, mode) {
14 if (typeof path === 'object') {
f54254d8
TO
15 tplURL = path;
16 return path;
53f2643c 17 }
0cc040cf 18 if (!tplURL) {
bba9b4f0 19 CRM.console('error', 'Error: CRM.url called before initialization');
53f2643c 20 }
8d83b77c 21 if (!mode) {
f0c9c7dd 22 mode = CRM.config && CRM.config.isFrontend ? 'front' : 'back';
8d83b77c 23 }
f0c9c7dd 24 query = query || '';
29bc93ee 25 var frag = path.split('?');
f0c9c7dd 26 var url = tplURL[mode].replace("*path*", frag[0]);
53f2643c 27
f0c9c7dd
CW
28 if (!query) {
29 url = url.replace(/[?&]\*query\*/, '');
53f2643c
CW
30 }
31 else {
f0c9c7dd 32 url = url.replace("*query*", typeof query === 'string' ? query : $.param(query));
53f2643c
CW
33 }
34 if (frag[1]) {
f0c9c7dd 35 url += (url.indexOf('?') < 0 ? '?' : '&') + frag[1];
53f2643c
CW
36 }
37 return url;
38 };
39
53f2643c
CW
40 $.fn.crmURL = function () {
41 return this.each(function() {
42 if (this.href) {
43 this.href = CRM.url(this.href);
44 }
45 });
46 };
47
48 /**
49 * AJAX api
d2aa76c9 50 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface#AJAXInterface-CRM.api3
53f2643c
CW
51 */
52 CRM.api3 = function(entity, action, params, status) {
53 if (typeof(entity) === 'string') {
54 params = {
55 entity: entity,
56 action: action.toLowerCase(),
57 json: JSON.stringify(params || {})
58 };
59 } else {
60 params = {
61 entity: 'api3',
62 action: 'call',
63 json: JSON.stringify(entity)
e4f4dc22
CW
64 };
65 status = action;
53f2643c
CW
66 }
67 var ajax = $.ajax({
68 url: CRM.url('civicrm/ajax/rest'),
69 dataType: 'json',
70 data: params,
71 type: params.action.indexOf('get') < 0 ? 'POST' : 'GET'
72 });
73 if (status) {
74 // Default status messages
75 if (status === true) {
76 status = {success: params.action === 'delete' ? ts('Removed') : ts('Saved')};
77 if (params.action.indexOf('get') === 0) {
78 status.start = ts('Loading...');
79 status.success = null;
80 }
81 }
82 var messages = status === true ? {} : status;
83 CRM.status(status, ajax);
84 }
85 return ajax;
86 };
87
88 /**
89 * @deprecated
90 * AJAX api
91 */
92 CRM.api = function(entity, action, params, options) {
93 // Default settings
94 var settings = {
95 context: null,
96 success: function(result, settings) {
97 return true;
98 },
99 error: function(result, settings) {
100 $().crmError(result.error_message, ts('Error'));
101 return false;
102 },
103 callBack: function(result, settings) {
104 if (result.is_error == 1) {
105 return settings.error.call(this, result, settings);
106 }
107 return settings.success.call(this, result, settings);
108 },
109 ajaxURL: 'civicrm/ajax/rest'
110 };
111 action = action.toLowerCase();
112 // Default success handler
113 switch (action) {
114 case "update":
115 case "create":
116 case "setvalue":
117 case "replace":
118 settings.success = function() {
119 CRM.status(ts('Saved'));
120 return true;
121 };
122 break;
123 case "delete":
124 settings.success = function() {
125 CRM.status(ts('Removed'));
126 return true;
127 };
128 }
129 params = {
130 entity: entity,
131 action: action,
132 json: JSON.stringify(params)
133 };
134 // Pass copy of settings into closure to preserve its value during multiple requests
135 (function(stg) {
136 $.ajax({
137 url: stg.ajaxURL.indexOf('http') === 0 ? stg.ajaxURL : CRM.url(stg.ajaxURL),
138 dataType: 'json',
139 data: params,
140 type: action.indexOf('get') < 0 ? 'POST' : 'GET',
141 success: function(result) {
142 stg.callBack.call(stg.context, result, stg);
143 }
144 });
145 })($.extend({}, settings, options));
146 };
147
53f2643c
CW
148 $.widget('civi.crmSnippet', {
149 options: {
150 url: null,
151 block: true,
152 crmForm: null
153 },
154 _originalContent: null,
155 _originalUrl: null,
156 isOriginalUrl: function() {
157 var
158 args = {},
159 same = true,
160 newUrl = this._formatUrl(this.options.url),
161 oldUrl = this._formatUrl(this._originalUrl);
162 // Compare path
163 if (newUrl.split('?')[0] !== oldUrl.split('?')[0]) {
164 return false;
165 }
166 // Compare arguments
167 $.each(newUrl.split('?')[1].split('&'), function(k, v) {
168 var arg = v.split('=');
169 args[arg[0]] = arg[1];
170 });
171 $.each(oldUrl.split('?')[1].split('&'), function(k, v) {
172 var arg = v.split('=');
173 if (args[arg[0]] !== undefined && arg[1] !== args[arg[0]]) {
174 same = false;
175 }
176 });
177 return same;
178 },
179 resetUrl: function() {
180 this.options.url = this._originalUrl;
181 },
182 _create: function() {
183 this.element.addClass('crm-ajax-container');
184 if (!this.element.is('.crm-container *')) {
185 this.element.addClass('crm-container');
186 }
187 this._handleOrderLinks();
188 // Set default if not supplied
189 this.options.url = this.options.url || document.location.href;
190 this._originalUrl = this.options.url;
191 },
3e897159
CW
192 _onFailure: function(data, status) {
193 var msg, title = ts('Network Error');
f54254d8 194 if (this.options.block) this.element.unblock();
53f2643c 195 this.element.trigger('crmAjaxFail', data);
3e897159
CW
196 switch (status) {
197 case 'Forbidden':
198 title = ts('Access Denied');
199 msg = ts('Ensure you are still logged in and have permission to access this feature.');
200 break;
201 default:
202 msg = ts('Unable to reach the server. Please refresh this page in your browser and try again.');
203 }
204 CRM.alert(msg, title, 'error');
53f2643c 205 },
61cab70a
CW
206 _onError: function(data) {
207 this.element.attr('data-unsaved-changes', 'false').trigger('crmAjaxError', data);
f7aaf23c 208 if (this.options.crmForm && this.options.crmForm.autoClose && this.element.data('uiDialog')) {
61cab70a
CW
209 this.element.dialog('close');
210 }
211 },
a7bc7b27 212 _formatUrl: function(url, snippetType) {
53f2643c
CW
213 // Strip hash
214 url = url.split('#')[0];
215 // Add snippet argument to url
a7bc7b27
CW
216 if (snippetType) {
217 if (url.search(/[&?]snippet=/) < 0) {
218 url += (url.indexOf('?') < 0 ? '?' : '&') + 'snippet=' + snippetType;
219 } else {
220 url = url.replace(/snippet=[^&]*/, 'snippet=' + snippetType);
221 }
53f2643c
CW
222 }
223 return url;
224 },
225 // Hack to deal with civicrm legacy sort functionality
226 _handleOrderLinks: function() {
227 var that = this;
228 $('a.crm-weight-arrow', that.element).click(function(e) {
f54254d8 229 if (that.options.block) that.element.block();
a7bc7b27 230 $.getJSON(that._formatUrl(this.href, 'json')).done(function() {
53f2643c
CW
231 that.refresh();
232 });
233 e.stopImmediatePropagation();
234 return false;
235 });
236 },
237 refresh: function() {
238 var that = this;
a7bc7b27 239 var url = this._formatUrl(this.options.url, 'json');
f54254d8 240 if (this.options.crmForm) $('form', this.element).ajaxFormUnbind();
f54254d8 241 if (this.options.block) this.element.block();
53f2643c 242 $.getJSON(url, function(data) {
f54254d8 243 if (that.options.block) that.element.unblock();
61cab70a 244 if (!$.isPlainObject(data)) {
53f2643c
CW
245 that._onFailure(data);
246 return;
247 }
61cab70a
CW
248 if (data.status === 'error') {
249 that._onError(data);
250 return;
251 }
53f2643c 252 data.url = url;
deb6ebbb 253 that.element.trigger('crmUnload').trigger('crmBeforeLoad', data);
66663184
CW
254 that._beforeRemovingContent();
255 that.element.html(data.content);
53f2643c
CW
256 that._handleOrderLinks();
257 that.element.trigger('crmLoad', data);
f54254d8 258 if (that.options.crmForm) that.element.trigger('crmFormLoad', data);
0f0925b0
CW
259 // This is only needed by forms that load via ajax but submit without ajax, e.g. configure contribution page tabs
260 // TODO: remove this when those forms have been converted to use ajax submit
261 if (data.status === 'form_error' && $.isPlainObject(data.errors)) {
262 that.element.trigger('crmFormError', data);
263 $.each(data.errors, function(formElement, msg) {
264 $('[name="'+formElement+'"]', that.element).crmError(msg);
265 });
266 }
3e897159
CW
267 }).fail(function(data, msg, status) {
268 that._onFailure(data, status);
53f2643c
CW
269 });
270 },
66663184
CW
271 // Perform any cleanup needed before removing/replacing content
272 _beforeRemovingContent: function() {
273 var that = this;
8d6a3830
CW
274 // Save original content to be restored if widget is destroyed
275 if (this._originalContent === null) {
276 $('.blockUI', this.element).remove();
277 this._originalContent = this.element.contents().detach();
278 }
66663184
CW
279 if (window.tinyMCE && tinyMCE.editors) {
280 $.each(tinyMCE.editors, function(k) {
281 if ($.contains(that.element[0], this.getElement())) {
282 this.remove();
283 }
284 });
285 }
f54254d8 286 if (this.options.crmForm) $('form', this.element).ajaxFormUnbind();
66663184 287 },
53f2643c 288 _destroy: function() {
af8c0ebe 289 this.element.removeClass('crm-ajax-container').trigger('crmUnload');
66663184 290 this._beforeRemovingContent();
53f2643c
CW
291 if (this._originalContent !== null) {
292 this.element.empty().append(this._originalContent);
293 }
294 }
295 });
296
98465f9e
CW
297 var dialogCount = 0,
298 exclude = '[href^=#], [href^=javascript], [onclick], .no-popup, .cancel';
299
53f2643c
CW
300 CRM.loadPage = function(url, options) {
301 var settings = {
302 target: '#crm-ajax-dialog-' + (dialogCount++),
b1fc510d 303 dialog: (options && options.target) ? false : {}
53f2643c 304 };
f54254d8 305 if (options) $.extend(true, settings, options);
53f2643c
CW
306 settings.url = url;
307 // Create new dialog
308 if (settings.dialog) {
b1fc510d 309 settings.dialog = CRM.utils.adjustDialogDefaults(settings.dialog);
a7bc7b27
CW
310 $('<div id="' + settings.target.substring(1) + '"></div>')
311 .dialog(settings.dialog)
312 .parent().find('.ui-dialog-titlebar')
313 .append($('<a class="crm-dialog-titlebar-print ui-dialog-titlebar-close" title="'+ts('Print window')+'" target="_blank" style="right:3.8em;"/>')
d2f7ffaa 314 .button({icons: {primary: 'fa-print'}, text: false}));
202559b3 315 }
a7bc7b27 316 // Add handlers to new or existing dialog
202559b3 317 if ($(settings.target).data('uiDialog')) {
73d2716e
CW
318 $(settings.target)
319 .on('dialogclose', function() {
202559b3 320 if (settings.dialog && $(this).attr('data-unsaved-changes') !== 'true') {
73d2716e
CW
321 $(this).crmSnippet('destroy').dialog('destroy').remove();
322 }
323 })
324 .on('crmLoad', function(e, data) {
325 // Set title
326 if (e.target === $(settings.target)[0] && data && !settings.dialog.title && data.title) {
327 $(this).dialog('option', 'title', data.title);
328 }
a7bc7b27
CW
329 // Update print url
330 $(this).parent().find('a.crm-dialog-titlebar-print').attr('href', $(this).data('civiCrmSnippet')._formatUrl($(this).crmSnippet('option', 'url'), '2'));
73d2716e 331 });
53f2643c
CW
332 }
333 $(settings.target).crmSnippet(settings).crmSnippet('refresh');
334 return $(settings.target);
335 };
336 CRM.loadForm = function(url, options) {
55cb6db1 337 var formErrors = [], settings = {
53f2643c
CW
338 crmForm: {
339 ajaxForm: {},
340 autoClose: true,
341 validate: true,
02c82dda 342 refreshAction: ['next_new', 'submit_savenext', 'upload_new'],
98465f9e 343 cancelButton: '.cancel',
5fffbbe4 344 openInline: 'a.open-inline, a.button, a.action-item, a.open-inline-noreturn',
1c1c1ae2 345 onCancel: function(event) {}
53f2643c
CW
346 }
347 };
348 // Move options that belong to crmForm. Others will be passed through to crmSnippet
f54254d8 349 if (options) $.each(options, function(key, value) {
53f2643c
CW
350 if (typeof(settings.crmForm[key]) !== 'undefined') {
351 settings.crmForm[key] = value;
352 }
353 else {
354 settings[key] = value;
355 }
356 });
357
358 var widget = CRM.loadPage(url, settings).off('.crmForm');
359
f582fc8f 360 // CRM-14353 - Warn of unsaved changes for all forms except those which have opted out
88e9380e 361 function cancelAction() {
e9a3e054 362 var dirty = CRM.utils.initialValueChanged($('form:not([data-warn-changes=false])', widget));
c4e00dbb 363 widget.attr('data-unsaved-changes', dirty ? 'true' : 'false');
7c2110fd
CW
364 if (dirty) {
365 var id = widget.attr('id') + '-unsaved-alert',
e9a3e054 366 title = widget.dialog('option', 'title'),
15d60951 367 alert = CRM.alert('<p>' + ts('%1 has not been saved.', {1: title}) + '</p><p><a href="#" id="' + id + '">' + ts('Restore') + '</a></p>', ts('Unsaved Changes'), 'alert unsaved-dialog', {expires: 60000});
d2f7ffaa 368 $('#' + id).button({icons: {primary: 'fa-undo'}}).click(function(e) {
15d60951 369 widget.attr('data-unsaved-changes', 'false').dialog('open');
8537b332 370 e.preventDefault();
7c2110fd 371 });
88e9380e 372 }
88e9380e 373 }
c4e00dbb 374
f54254d8 375 if (widget.data('uiDialog')) widget.on('dialogbeforeclose', function(e) {
c4e00dbb
CW
376 // CRM-14353 - Warn unsaved changes if user clicks close button or presses "esc"
377 if (e.originalEvent) {
378 cancelAction();
379 }
380 });
88e9380e 381
53f2643c 382 widget.on('crmFormLoad.crmForm', function(event, data) {
298f69da
CW
383 var $el = $(this).attr('data-unsaved-changes', 'false'),
384 settings = $el.crmSnippet('option', 'crmForm');
f54254d8 385 if (settings.cancelButton) $(settings.cancelButton, this).click(function(e) {
7c2110fd
CW
386 e.preventDefault();
387 var returnVal = settings.onCancel.call($el, e);
53f2643c 388 if (returnVal !== false) {
7c2110fd 389 $el.trigger('crmFormCancel', e);
53f2643c 390 if ($el.data('uiDialog') && settings.autoClose) {
7c2110fd 391 cancelAction();
c4e00dbb 392 $el.dialog('close');
53f2643c
CW
393 }
394 else if (!settings.autoClose) {
395 $el.crmSnippet('resetUrl').crmSnippet('refresh');
396 }
397 }
53f2643c
CW
398 });
399 if (settings.validate) {
3d527838 400 $("form", this).crmValidate();
53f2643c 401 }
cae80d9f 402 $("form:not('[data-no-ajax-submit=true]')", this).ajaxForm($.extend({
53f2643c
CW
403 url: data.url.replace(/reset=1[&]?/, ''),
404 dataType: 'json',
405 success: function(response) {
1c1c1ae2 406 if (response.content === undefined) {
53f2643c
CW
407 $el.trigger('crmFormSuccess', response);
408 // Reset form for e.g. "save and new"
0a94ab7d 409 if (response.userContext && (response.status === 'redirect' || (settings.refreshAction && $.inArray(response.buttonName, settings.refreshAction) >= 0))) {
b305fb88
CW
410 // Force reset of original url
411 $el.data('civiCrmSnippet')._originalUrl = response.userContext;
412 $el.crmSnippet('resetUrl').crmSnippet('refresh');
53f2643c 413 }
9317128c
CW
414 // Close if we are on the original url or the action was "delete" (in which case returning to view may be inappropriate)
415 else if ($el.data('uiDialog') && (settings.autoClose || response.action === 8)) {
53f2643c
CW
416 $el.dialog('close');
417 }
418 else if (settings.autoClose === false) {
419 $el.crmSnippet('resetUrl').crmSnippet('refresh');
420 }
421 }
422 else {
f54254d8 423 if ($el.crmSnippet('option', 'block')) $el.unblock();
53f2643c 424 response.url = data.url;
1c1c1ae2
CW
425 $el.html(response.content).trigger('crmLoad', response).trigger('crmFormLoad', response);
426 if (response.status === 'form_error') {
55cb6db1 427 formErrors = [];
1c1c1ae2
CW
428 $el.trigger('crmFormError', response);
429 $.each(response.errors || [], function(formElement, msg) {
55cb6db1 430 formErrors.push($('[name="'+formElement+'"]', $el).crmError(msg));
1c1c1ae2
CW
431 });
432 }
53f2643c
CW
433 }
434 },
53f2643c 435 beforeSubmit: function(submission) {
55cb6db1 436 $.each(formErrors, function() {
f54254d8 437 if (this && this.close) this.close();
55cb6db1 438 });
f54254d8 439 if ($el.crmSnippet('option', 'block')) $el.block();
53f2643c
CW
440 $el.trigger('crmFormSubmit', submission);
441 }
442 }, settings.ajaxForm));
443 if (settings.openInline) {
444 settings.autoClose = $el.crmSnippet('isOriginalUrl');
cf48cb00
CW
445 $(this).on('click', settings.openInline, function(e) {
446 if ($(this).is(exclude + ', .crm-popup')) {
447 return;
448 }
5fffbbe4
CW
449 if ($(this).hasClass('open-inline-noreturn')) {
450 // Force reset of original url
451 $el.data('civiCrmSnippet')._originalUrl = $(this).attr('href');
452 }
53f2643c 453 $el.crmSnippet('option', 'url', $(this).attr('href')).crmSnippet('refresh');
cf48cb00 454 e.preventDefault();
53f2643c
CW
455 });
456 }
298f69da 457 if ($el.data('uiDialog')) {
ba05d50e 458 // Show form buttons as part of the dialog
d34e9db0
CW
459 var buttonContainers = '.crm-submit-buttons, .action-link',
460 buttons = [],
461 added = [];
462 $(buttonContainers, $el).find('input.crm-form-submit, a.button').each(function() {
298f69da
CW
463 var $el = $(this),
464 label = $el.is('input') ? $el.attr('value') : $el.text(),
465 identifier = $el.attr('name') || $el.attr('href');
466 if (!identifier || identifier === '#' || $.inArray(identifier, added) < 0) {
6431a032 467 var $icon = $el.find('.icon, .crm-i'),
abbecaf2 468 button = {'data-identifier': identifier, text: label, click: function() {
19ec1d6e 469 $el[0].click();
d34e9db0
CW
470 }};
471 if ($icon.length) {
472 button.icons = {primary: $icon.attr('class')};
298f69da 473 } else {
06d5018a
CW
474 var action = $el.attr('crm-icon') || ($el.hasClass('cancel') ? 'fa-times' : 'fa-check');
475 button.icons = {primary: action};
298f69da
CW
476 }
477 buttons.push(button);
478 added.push(identifier);
479 }
d34e9db0 480 // display:none causes the form to not submit when pressing "enter"
e22a8e7a 481 $el.parents(buttonContainers).css({height: 0, padding: 0, margin: 0, overflow: 'hidden'}).find('.crm-button-icon').hide();
298f69da
CW
482 });
483 $el.dialog('option', 'buttons', buttons);
484 }
022d2163 485 // Allow a button to prevent ajax submit
1e29624c
CW
486 $('input[data-no-ajax-submit=true]').click(function() {
487 $(this).closest('form').ajaxFormUnbind();
488 });
53f2643c 489 // For convenience, focus the first field
b18392cc 490 $('input[type=text], textarea, select', this).filter(':visible').first().not('.dateplugin').focus();
53f2643c
CW
491 });
492 return widget;
493 };
494 /**
022d2163 495 * Handler for jQuery click event e.g. $('a').click(CRM.popup);
53f2643c 496 */
35df910c 497 CRM.popup = function(e) {
53f2643c
CW
498 var $el = $(this).first(),
499 url = $el.attr('href'),
500 popup = $el.data('popup-type') === 'page' ? CRM.loadPage : CRM.loadForm,
501 settings = $el.data('popup-settings') || {},
7fe745d1 502 formSuccess = false;
53f2643c 503 settings.dialog = settings.dialog || {};
35df910c 504 if (e.isDefaultPrevented() || !CRM.config.ajaxPopupsEnabled || !url || $el.is(exclude)) {
53f2643c
CW
505 return;
506 }
a1c7d42f
CW
507 // Sized based on css class
508 if ($el.hasClass('small-popup')) {
53f2643c
CW
509 settings.dialog.width = 400;
510 settings.dialog.height = 300;
511 }
512 else if ($el.hasClass('medium-popup')) {
513 settings.dialog.width = settings.dialog.height = '50%';
514 }
53f2643c
CW
515 var dialog = popup(url, settings);
516 // Trigger events from the dialog on the original link element
517 $el.trigger('crmPopupOpen', [dialog]);
4b472ff2
CW
518 // Listen for success events and buffer them so we only trigger once
519 dialog.on('crmFormSuccess.crmPopup crmPopupFormSuccess.crmPopup', function() {
7fe745d1
CW
520 formSuccess = true;
521 });
522 dialog.on('dialogclose.crmPopup', function(e, data) {
523 if (formSuccess) {
524 $el.trigger('crmPopupFormSuccess', [dialog, data]);
525 }
526 $el.trigger('crmPopupClose', [dialog, data]);
53f2643c 527 });
35df910c 528 e.preventDefault();
53f2643c 529 };
554b1768 530 /**
7e9fdecf 531 * An event callback for CRM.popup or a standalone function to refresh the content around a given element
022d2163 532 * @param e {event|selector}
554b1768
CW
533 */
534 CRM.refreshParent = function(e) {
535 // Use e.target if input smells like an event, otherwise assume it's a jQuery selector
536 var $el = (e.stopPropagation && e.target) ? $(e.target) : $(e),
537 $table = $el.closest('.dataTable');
538 // Call native refresh method on ajax datatables
022d2163 539 if ($table.length && $.fn.DataTable.fnIsDataTable($table[0]) && $table.dataTable().fnSettings().sAjaxSource) {
554b1768
CW
540 // Refresh ALL datatables - needed for contact relationship tab
541 $.each($.fn.dataTable.fnTables(), function() {
f54254d8 542 if ($(this).dataTable().fnSettings().sAjaxSource) $(this).unblock().dataTable().fnDraw();
554b1768
CW
543 });
544 }
545 // Otherwise refresh the nearest crmSnippet
546 else {
547 $el.closest('.crm-ajax-container, #crm-main-content-wrapper').crmSnippet().crmSnippet('refresh');
548 }
549 };
a1c7d42f
CW
550
551 $(function($) {
15d60951
CW
552 $('body')
553 .on('click', 'a.crm-popup', CRM.popup)
554 // Close unsaved dialog messages
555 .on('dialogopen', function(e) {
556 $('.alert.unsaved-dialog .ui-notify-cross', '#crm-notification-container').click();
557 })
558 // Destroy old unsaved dialog
559 .on('dialogcreate', function(e) {
560 $('.ui-dialog-content.crm-ajax-container:hidden[data-unsaved-changes=true]').crmSnippet('destroy').dialog('destroy').remove();
e5e90ec9 561 })
f91b1c0c
CW
562 // Ensure wysiwyg content is updated prior to ajax submit
563 .on('form-pre-serialize', function(e) {
564 $('.crm-wysiwyg-enabled', e.target).each(function() {
565 CRM.wysiwyg.updateElement(this);
566 });
567 })
e5e90ec9 568 // Auto-resize dialogs when loading content
b1fc510d 569 .on('crmLoad dialogopen', 'div.ui-dialog.ui-resizable.crm-container', function(e) {
e5e90ec9
CW
570 var
571 $wrapper = $(this),
572 $dialog = $wrapper.children('.ui-dialog-content');
573 // small delay to allow contents to render
574 window.setTimeout(function() {
575 var currentHeight = $wrapper.outerHeight(),
576 padding = currentHeight - $dialog.height(),
577 newHeight = $dialog.prop('scrollHeight') + padding,
578 menuHeight = $('#civicrm-menu').outerHeight(),
579 maxHeight = $(window).height() - menuHeight;
580 newHeight = newHeight > maxHeight ? maxHeight : newHeight;
581 if (newHeight > (currentHeight + 15)) {
582 $dialog.dialog('option', {
583 position: {my: 'center', at: 'center center+' + (menuHeight / 2), of: window},
584 height: newHeight
585 });
586 }
587 }, 500);
15d60951 588 });
a1c7d42f
CW
589 });
590
53f2643c 591}(jQuery, CRM));