1 // https://civicrm.org/licensing
3 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface
4 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Ajax+Pages+and+Forms
6 (function($, CRM
, undefined) {
9 * @param string|object query
10 * @param string mode - optionally specify "front" or "back"
13 CRM
.url = function (path
, query
, mode
) {
14 if (typeof path
=== 'object') {
19 CRM
.console('error', 'Error: CRM.url called before initialization');
22 mode
= CRM
.config
&& CRM
.config
.isFrontend
? 'front' : 'back';
25 var frag
= path
.split('?');
26 var url
= tplURL
[mode
].replace("*path*", frag
[0]);
29 url
= url
.replace(/[?&]\*query\*/, '');
32 url
= url
.replace("*query*", typeof query
=== 'string' ? query
: $.param(query
));
35 url
+= (url
.indexOf('?') < 0 ? '?' : '&') + frag
[1];
42 function (p
, params
) {
43 CRM
.console('warn', 'Calling crmURL from jQuery is deprecated. Please use CRM.url() instead.');
44 return CRM
.url(p
, params
);
48 $.fn
.crmURL = function () {
49 return this.each(function() {
51 this.href
= CRM
.url(this.href
);
59 CRM
.api3 = function(entity
, action
, params
, status
) {
60 if (typeof(entity
) === 'string') {
63 action
: action
.toLowerCase(),
64 json
: JSON
.stringify(params
|| {})
70 json
: JSON
.stringify(entity
)
75 url
: CRM
.url('civicrm/ajax/rest'),
78 type
: params
.action
.indexOf('get') < 0 ? 'POST' : 'GET'
81 // Default status messages
82 if (status
=== true) {
83 status
= {success
: params
.action
=== 'delete' ? ts('Removed') : ts('Saved')};
84 if (params
.action
.indexOf('get') === 0) {
85 status
.start
= ts('Loading...');
86 status
.success
= null;
89 var messages
= status
=== true ? {} : status
;
90 CRM
.status(status
, ajax
);
99 CRM
.api = function(entity
, action
, params
, options
) {
103 success: function(result
, settings
) {
106 error: function(result
, settings
) {
107 $().crmError(result
.error_message
, ts('Error'));
110 callBack: function(result
, settings
) {
111 if (result
.is_error
== 1) {
112 return settings
.error
.call(this, result
, settings
);
114 return settings
.success
.call(this, result
, settings
);
116 ajaxURL
: 'civicrm/ajax/rest'
118 action
= action
.toLowerCase();
119 // Default success handler
125 settings
.success = function() {
126 CRM
.status(ts('Saved'));
131 settings
.success = function() {
132 CRM
.status(ts('Removed'));
139 json
: JSON
.stringify(params
)
141 // Pass copy of settings into closure to preserve its value during multiple requests
144 url
: stg
.ajaxURL
.indexOf('http') === 0 ? stg
.ajaxURL
: CRM
.url(stg
.ajaxURL
),
147 type
: action
.indexOf('get') < 0 ? 'POST' : 'GET',
148 success: function(result
) {
149 stg
.callBack
.call(stg
.context
, result
, stg
);
152 })($.extend({}, settings
, options
));
156 * Backwards compatible with jQuery fn
159 $.fn
.crmAPI = function(entity
, action
, params
, options
) {
160 CRM
.console('warn', 'Calling crmAPI from jQuery is deprecated. Please use CRM.api3() instead.');
161 return CRM
.api
.call(this, entity
, action
, params
, options
);
164 $.widget('civi.crmSnippet', {
170 _originalContent
: null,
172 isOriginalUrl: function() {
176 newUrl
= this._formatUrl(this.options
.url
),
177 oldUrl
= this._formatUrl(this._originalUrl
);
179 if (newUrl
.split('?')[0] !== oldUrl
.split('?')[0]) {
183 $.each(newUrl
.split('?')[1].split('&'), function(k
, v
) {
184 var arg
= v
.split('=');
185 args
[arg
[0]] = arg
[1];
187 $.each(oldUrl
.split('?')[1].split('&'), function(k
, v
) {
188 var arg
= v
.split('=');
189 if (args
[arg
[0]] !== undefined && arg
[1] !== args
[arg
[0]]) {
195 resetUrl: function() {
196 this.options
.url
= this._originalUrl
;
198 _create: function() {
199 this.element
.addClass('crm-ajax-container');
200 if (!this.element
.is('.crm-container *')) {
201 this.element
.addClass('crm-container');
203 this._handleOrderLinks();
204 // Set default if not supplied
205 this.options
.url
= this.options
.url
|| document
.location
.href
;
206 this._originalUrl
= this.options
.url
;
208 _onFailure: function(data
, status
) {
209 var msg
, title
= ts('Network Error');
210 if (this.options
.block
) this.element
.unblock();
211 this.element
.trigger('crmAjaxFail', data
);
214 title
= ts('Access Denied');
215 msg
= ts('Ensure you are still logged in and have permission to access this feature.');
218 msg
= ts('Unable to reach the server. Please refresh this page in your browser and try again.');
220 CRM
.alert(msg
, title
, 'error');
222 _onError: function(data
) {
223 this.element
.attr('data-unsaved-changes', 'false').trigger('crmAjaxError', data
);
224 if (this.options
.crmForm
&& this.options
.crmForm
.autoClose
&& this.element
.data('uiDialog')) {
225 this.element
.dialog('close');
228 _formatUrl: function(url
, snippetType
) {
230 url
= url
.split('#')[0];
231 // Add snippet argument to url
233 if (url
.search(/[&?]snippet=/) < 0) {
234 url
+= (url
.indexOf('?') < 0 ? '?' : '&') + 'snippet=' + snippetType
;
236 url
= url
.replace(/snippet=[^&]*/, 'snippet=' + snippetType
);
241 // Hack to deal with civicrm legacy sort functionality
242 _handleOrderLinks: function() {
244 $('a.crm-weight-arrow', that
.element
).click(function(e
) {
245 if (that
.options
.block
) that
.element
.block();
246 $.getJSON(that
._formatUrl(this.href
, 'json')).done(function() {
249 e
.stopImmediatePropagation();
253 refresh: function() {
255 var url
= this._formatUrl(this.options
.url
, 'json');
256 if (this.options
.crmForm
) $('form', this.element
).ajaxFormUnbind();
257 if (this.options
.block
) this.element
.block();
258 $.getJSON(url
, function(data
) {
259 if (that
.options
.block
) that
.element
.unblock();
260 if (!$.isPlainObject(data
)) {
261 that
._onFailure(data
);
264 if (data
.status
=== 'error') {
269 that
.element
.trigger('crmUnload').trigger('crmBeforeLoad', data
);
270 that
._beforeRemovingContent();
271 that
.element
.html(data
.content
);
272 that
._handleOrderLinks();
273 that
.element
.trigger('crmLoad', data
);
274 if (that
.options
.crmForm
) that
.element
.trigger('crmFormLoad', data
);
275 // This is only needed by forms that load via ajax but submit without ajax, e.g. configure contribution page tabs
276 // TODO: remove this when those forms have been converted to use ajax submit
277 if (data
.status
=== 'form_error' && $.isPlainObject(data
.errors
)) {
278 that
.element
.trigger('crmFormError', data
);
279 $.each(data
.errors
, function(formElement
, msg
) {
280 $('[name="'+formElement
+'"]', that
.element
).crmError(msg
);
283 }).fail(function(data
, msg
, status
) {
284 that
._onFailure(data
, status
);
287 // Perform any cleanup needed before removing/replacing content
288 _beforeRemovingContent: function() {
290 // Save original content to be restored if widget is destroyed
291 if (this._originalContent
=== null) {
292 $('.blockUI', this.element
).remove();
293 this._originalContent
= this.element
.contents().detach();
295 if (window
.tinyMCE
&& tinyMCE
.editors
) {
296 $.each(tinyMCE
.editors
, function(k
) {
297 if ($.contains(that
.element
[0], this.getElement())) {
302 if (this.options
.crmForm
) $('form', this.element
).ajaxFormUnbind();
304 _destroy: function() {
305 this.element
.removeClass('crm-ajax-container').trigger('crmUnload');
306 this._beforeRemovingContent();
307 if (this._originalContent
!== null) {
308 this.element
.empty().append(this._originalContent
);
314 exclude
= '[href^=#], [href^=javascript], [onclick], .no-popup, .cancel';
316 CRM
.loadPage = function(url
, options
) {
318 target
: '#crm-ajax-dialog-' + (dialogCount
++),
319 dialog
: (options
&& options
.target
) ? false : {}
321 if (options
) $.extend(true, settings
, options
);
324 if (settings
.dialog
) {
325 settings
.dialog
= CRM
.utils
.adjustDialogDefaults(settings
.dialog
);
326 $('<div id="' + settings
.target
.substring(1) + '"></div>')
327 .dialog(settings
.dialog
)
328 .parent().find('.ui-dialog-titlebar')
329 .append($('<a class="crm-dialog-titlebar-print ui-dialog-titlebar-close" title="'+ts('Print window')+'" target="_blank" style="right:3.8em;"/>')
330 .button({icons
: {primary
: 'fa-print'}, text
: false}));
332 // Add handlers to new or existing dialog
333 if ($(settings
.target
).data('uiDialog')) {
335 .on('dialogclose', function() {
336 if (settings
.dialog
&& $(this).attr('data-unsaved-changes') !== 'true') {
337 $(this).crmSnippet('destroy').dialog('destroy').remove();
340 .on('crmLoad', function(e
, data
) {
342 if (e
.target
=== $(settings
.target
)[0] && data
&& !settings
.dialog
.title
&& data
.title
) {
343 $(this).dialog('option', 'title', data
.title
);
346 $(this).parent().find('a.crm-dialog-titlebar-print').attr('href', $(this).data('civiCrmSnippet')._formatUrl($(this).crmSnippet('option', 'url'), '2'));
349 $(settings
.target
).crmSnippet(settings
).crmSnippet('refresh');
350 return $(settings
.target
);
352 CRM
.loadForm = function(url
, options
) {
353 var formErrors
= [], settings
= {
358 refreshAction
: ['next_new', 'submit_savenext', 'upload_new'],
359 cancelButton
: '.cancel',
360 openInline
: 'a.open-inline, a.button, a.action-item, a.open-inline-noreturn',
361 onCancel: function(event
) {}
364 // Move options that belong to crmForm. Others will be passed through to crmSnippet
365 if (options
) $.each(options
, function(key
, value
) {
366 if (typeof(settings
.crmForm
[key
]) !== 'undefined') {
367 settings
.crmForm
[key
] = value
;
370 settings
[key
] = value
;
374 var widget
= CRM
.loadPage(url
, settings
).off('.crmForm');
376 // CRM-14353 - Warn of unsaved changes for all forms except those which have opted out
377 function cancelAction() {
378 var dirty
= CRM
.utils
.initialValueChanged($('form:not([data-warn-changes=false])', widget
));
379 widget
.attr('data-unsaved-changes', dirty
? 'true' : 'false');
381 var id
= widget
.attr('id') + '-unsaved-alert',
382 title
= widget
.dialog('option', 'title'),
383 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});
384 $('#' + id
).button({icons
: {primary
: 'fa-undo'}}).click(function(e
) {
385 widget
.attr('data-unsaved-changes', 'false').dialog('open');
391 if (widget
.data('uiDialog')) widget
.on('dialogbeforeclose', function(e
) {
392 // CRM-14353 - Warn unsaved changes if user clicks close button or presses "esc"
393 if (e
.originalEvent
) {
398 widget
.on('crmFormLoad.crmForm', function(event
, data
) {
399 var $el
= $(this).attr('data-unsaved-changes', 'false'),
400 settings
= $el
.crmSnippet('option', 'crmForm');
401 if (settings
.cancelButton
) $(settings
.cancelButton
, this).click(function(e
) {
403 var returnVal
= settings
.onCancel
.call($el
, e
);
404 if (returnVal
!== false) {
405 $el
.trigger('crmFormCancel', e
);
406 if ($el
.data('uiDialog') && settings
.autoClose
) {
410 else if (!settings
.autoClose
) {
411 $el
.crmSnippet('resetUrl').crmSnippet('refresh');
415 if (settings
.validate
) {
416 $("form", this).crmValidate();
418 $("form:not('[data-no-ajax-submit=true]')", this).ajaxForm($.extend({
419 url
: data
.url
.replace(/reset=1[&]?/, ''),
421 success: function(response
) {
422 if (response
.content
=== undefined) {
423 $el
.trigger('crmFormSuccess', response
);
424 // Reset form for e.g. "save and new"
425 if (response
.userContext
&& (response
.status
=== 'redirect' || (settings
.refreshAction
&& $.inArray(response
.buttonName
, settings
.refreshAction
) >= 0))) {
426 // Force reset of original url
427 $el
.data('civiCrmSnippet')._originalUrl
= response
.userContext
;
428 $el
.crmSnippet('resetUrl').crmSnippet('refresh');
430 // Close if we are on the original url or the action was "delete" (in which case returning to view may be inappropriate)
431 else if ($el
.data('uiDialog') && (settings
.autoClose
|| response
.action
=== 8)) {
434 else if (settings
.autoClose
=== false) {
435 $el
.crmSnippet('resetUrl').crmSnippet('refresh');
439 if ($el
.crmSnippet('option', 'block')) $el
.unblock();
440 response
.url
= data
.url
;
441 $el
.html(response
.content
).trigger('crmLoad', response
).trigger('crmFormLoad', response
);
442 if (response
.status
=== 'form_error') {
444 $el
.trigger('crmFormError', response
);
445 $.each(response
.errors
|| [], function(formElement
, msg
) {
446 formErrors
.push($('[name="'+formElement
+'"]', $el
).crmError(msg
));
451 beforeSubmit: function(submission
) {
452 $.each(formErrors
, function() {
453 if (this && this.close
) this.close();
455 if ($el
.crmSnippet('option', 'block')) $el
.block();
456 $el
.trigger('crmFormSubmit', submission
);
458 }, settings
.ajaxForm
));
459 if (settings
.openInline
) {
460 settings
.autoClose
= $el
.crmSnippet('isOriginalUrl');
461 $(this).on('click', settings
.openInline
, function(e
) {
462 if ($(this).is(exclude
+ ', .crm-popup')) {
465 if ($(this).hasClass('open-inline-noreturn')) {
466 // Force reset of original url
467 $el
.data('civiCrmSnippet')._originalUrl
= $(this).attr('href');
469 $el
.crmSnippet('option', 'url', $(this).attr('href')).crmSnippet('refresh');
473 if ($el
.data('uiDialog')) {
474 // Show form buttons as part of the dialog
475 var buttonContainers
= '.crm-submit-buttons, .action-link',
478 $(buttonContainers
, $el
).find('input.crm-form-submit, a.button').each(function() {
480 label
= $el
.is('input') ? $el
.attr('value') : $el
.text(),
481 identifier
= $el
.attr('name') || $el
.attr('href');
482 if (!identifier
|| identifier
=== '#' || $.inArray(identifier
, added
) < 0) {
483 var $icon
= $el
.find('.icon'),
484 button
= {'data-identifier': identifier
, text
: label
, click: function() {
488 button
.icons
= {primary
: $icon
.attr('class')};
490 var action
= $el
.attr('crm-icon') || ($el
.hasClass('cancel') ? 'times' : 'check');
491 button
.icons
= {primary
: 'fa-' + action
};
493 buttons
.push(button
);
494 added
.push(identifier
);
496 // display:none causes the form to not submit when pressing "enter"
497 $el
.parents(buttonContainers
).css({height
: 0, padding
: 0, margin
: 0, overflow
: 'hidden'}).find('.crm-button-icon').hide();
499 $el
.dialog('option', 'buttons', buttons
);
501 // Allow a button to prevent ajax submit
502 $('input[data-no-ajax-submit=true]').click(function() {
503 $(this).closest('form').ajaxFormUnbind();
505 // For convenience, focus the first field
506 $('input[type=text], textarea, select', this).filter(':visible').first().not('.dateplugin').focus();
511 * Handler for jQuery click event e.g. $('a').click(CRM.popup);
513 CRM
.popup = function(e
) {
514 var $el
= $(this).first(),
515 url
= $el
.attr('href'),
516 popup
= $el
.data('popup-type') === 'page' ? CRM
.loadPage
: CRM
.loadForm
,
517 settings
= $el
.data('popup-settings') || {},
519 settings
.dialog
= settings
.dialog
|| {};
520 if (e
.isDefaultPrevented() || !CRM
.config
.ajaxPopupsEnabled
|| !url
|| $el
.is(exclude
)) {
523 // Sized based on css class
524 if ($el
.hasClass('small-popup')) {
525 settings
.dialog
.width
= 400;
526 settings
.dialog
.height
= 300;
528 else if ($el
.hasClass('medium-popup')) {
529 settings
.dialog
.width
= settings
.dialog
.height
= '50%';
531 var dialog
= popup(url
, settings
);
532 // Trigger events from the dialog on the original link element
533 $el
.trigger('crmPopupOpen', [dialog
]);
534 // Listen for success events and buffer them so we only trigger once
535 dialog
.on('crmFormSuccess.crmPopup crmPopupFormSuccess.crmPopup', function() {
538 dialog
.on('dialogclose.crmPopup', function(e
, data
) {
540 $el
.trigger('crmPopupFormSuccess', [dialog
, data
]);
542 $el
.trigger('crmPopupClose', [dialog
, data
]);
547 * An event callback for CRM.popup or a standalone function to refresh the content around a given element
548 * @param e {event|selector}
550 CRM
.refreshParent = function(e
) {
551 // Use e.target if input smells like an event, otherwise assume it's a jQuery selector
552 var $el
= (e
.stopPropagation
&& e
.target
) ? $(e
.target
) : $(e
),
553 $table
= $el
.closest('.dataTable');
554 // Call native refresh method on ajax datatables
555 if ($table
.length
&& $.fn
.DataTable
.fnIsDataTable($table
[0]) && $table
.dataTable().fnSettings().sAjaxSource
) {
556 // Refresh ALL datatables - needed for contact relationship tab
557 $.each($.fn
.dataTable
.fnTables(), function() {
558 if ($(this).dataTable().fnSettings().sAjaxSource
) $(this).unblock().dataTable().fnDraw();
561 // Otherwise refresh the nearest crmSnippet
563 $el
.closest('.crm-ajax-container, #crm-main-content-wrapper').crmSnippet().crmSnippet('refresh');
569 .on('click', 'a.crm-popup', CRM
.popup
)
570 // Close unsaved dialog messages
571 .on('dialogopen', function(e
) {
572 $('.alert.unsaved-dialog .ui-notify-cross', '#crm-notification-container').click();
574 // Destroy old unsaved dialog
575 .on('dialogcreate', function(e
) {
576 $('.ui-dialog-content.crm-ajax-container:hidden[data-unsaved-changes=true]').crmSnippet('destroy').dialog('destroy').remove();
578 // Ensure wysiwyg content is updated prior to ajax submit
579 .on('form-pre-serialize', function(e
) {
580 $('.crm-wysiwyg-enabled', e
.target
).each(function() {
581 CRM
.wysiwyg
.updateElement(this);
584 // Auto-resize dialogs when loading content
585 .on('crmLoad dialogopen', 'div.ui-dialog.ui-resizable.crm-container', function(e
) {
588 $dialog
= $wrapper
.children('.ui-dialog-content');
589 // small delay to allow contents to render
590 window
.setTimeout(function() {
591 var currentHeight
= $wrapper
.outerHeight(),
592 padding
= currentHeight
- $dialog
.height(),
593 newHeight
= $dialog
.prop('scrollHeight') + padding
,
594 menuHeight
= $('#civicrm-menu').outerHeight(),
595 maxHeight
= $(window
).height() - menuHeight
;
596 newHeight
= newHeight
> maxHeight
? maxHeight
: newHeight
;
597 if (newHeight
> (currentHeight
+ 15)) {
598 $dialog
.dialog('option', {
599 position
: {my
: 'center', at
: 'center center+' + (menuHeight
/ 2), of: window
},