Merge pull request #13877 from eileenmcnaughton/import_count
[civicrm-core.git] / js / Common.js
CommitLineData
353ea873 1// https://civicrm.org/licensing
2b3ddf6e 2/* global CRM:true */
b7f93874 3var CRM = CRM || {};
4b513f23
CW
4var cj = CRM.$ = jQuery;
5CRM._ = _;
6a488035
TO
6
7/**
8 * Short-named function for string translation, defined in global scope so it's available everywhere.
9 *
353ea873
CW
10 * @param text string for translating
11 * @param params object key:value of additional parameters
6a488035 12 *
353ea873 13 * @return string
6a488035
TO
14 */
15function ts(text, params) {
7553cf23 16 "use strict";
3f3bba82
TO
17 var d = (params && params.domain) ? ('strings::' + params.domain) : null;
18 if (d && CRM[d] && CRM[d][text]) {
19 text = CRM[d][text];
20 }
0d75c29c
CW
21 else if (CRM.strings[text]) {
22 text = CRM.strings[text];
3f3bba82 23 }
2788147f 24 if (typeof(params) === 'object') {
6a488035 25 for (var i in params) {
32155ad6 26 if (typeof(params[i]) === 'string' || typeof(params[i]) === 'number') {
2788147f 27 // sprintf emulation: escape % characters in the replacements to avoid conflicts
32155ad6 28 text = text.replace(new RegExp('%' + i, 'g'), String(params[i]).replace(/%/g, '%-crmescaped-'));
2788147f 29 }
6a488035
TO
30 }
31 return text.replace(/%-crmescaped-/g, '%');
32 }
33 return text;
34}
35
2b3ddf6e
CW
36// Legacy code - ignore warnings
37/* jshint ignore:start */
38
6a488035
TO
39/**
40 * This function is called by default at the bottom of template files which have forms that have
41 * conditionally displayed/hidden sections and elements. The PHP is responsible for generating
42 * a list of 'blocks to show' and 'blocks to hide' and the template passes these parameters to
43 * this function.
44 *
353ea873 45 * @deprecated
6a488035
TO
46 * @param showBlocks Array of element Id's to be displayed
47 * @param hideBlocks Array of element Id's to be hidden
48 * @param elementType Value to set display style to for showBlocks (e.g. 'block' or 'table-row' or ...)
6a488035 49 */
0f5816a6 50function on_load_init_blocks(showBlocks, hideBlocks, elementType) {
2b3ddf6e 51 if (elementType == null) {
f54254d8 52 elementType = 'block';
0f5816a6
KJ
53 }
54
f54254d8
TO
55 var myElement, i;
56
0f5816a6 57 /* This loop is used to display the blocks whose IDs are present within the showBlocks array */
f54254d8
TO
58 for (i = 0; i < showBlocks.length; i++) {
59 myElement = document.getElementById(showBlocks[i]);
0f5816a6 60 /* getElementById returns null if element id doesn't exist in the document */
2b3ddf6e 61 if (myElement != null) {
0f5816a6 62 myElement.style.display = elementType;
6a488035 63 }
0f5816a6
KJ
64 else {
65 alert('showBlocks array item not in .tpl = ' + showBlocks[i]);
66 }
67 }
6a488035 68
0f5816a6 69 /* This loop is used to hide the blocks whose IDs are present within the hideBlocks array */
f54254d8
TO
70 for (i = 0; i < hideBlocks.length; i++) {
71 myElement = document.getElementById(hideBlocks[i]);
0f5816a6 72 /* getElementById returns null if element id doesn't exist in the document */
2b3ddf6e 73 if (myElement != null) {
0f5816a6
KJ
74 myElement.style.display = 'none';
75 }
76 else {
77 alert('showBlocks array item not in .tpl = ' + hideBlocks[i]);
6a488035 78 }
0f5816a6 79 }
6a488035
TO
80}
81
82/**
83 * This function is called when we need to show or hide a related form element (target_element)
84 * based on the value (trigger_value) of another form field (trigger_field).
85 *
353ea873 86 * @deprecated
6a488035
TO
87 * @param trigger_field_id HTML id of field whose onchange is the trigger
88 * @param trigger_value List of integers - option value(s) which trigger show-element action for target_field
89 * @param target_element_id HTML id of element to be shown or hidden
90 * @param target_element_type Type of element to be shown or hidden ('block' or 'table-row')
91 * @param field_type Type of element radio/select
92 * @param invert Boolean - if true, we HIDE target on value match; if false, we SHOW target on value match
0f5816a6
KJ
93 */
94function showHideByValue(trigger_field_id, trigger_value, target_element_id, target_element_type, field_type, invert) {
f54254d8 95 var target, j;
0f5816a6
KJ
96
97 if (field_type == 'select') {
98 var trigger = trigger_value.split("|");
24cc4545 99 var selectedOptionValue = cj('#' + trigger_field_id).val();
0f5816a6 100
f54254d8
TO
101 target = target_element_id.split("|");
102 for (j = 0; j < target.length; j++) {
0f5816a6
KJ
103 if (invert) {
104 cj('#' + target[j]).show();
105 }
106 else {
107 cj('#' + target[j]).hide();
108 }
109 for (var i = 0; i < trigger.length; i++) {
110 if (selectedOptionValue == trigger[i]) {
111 if (invert) {
112 cj('#' + target[j]).hide();
113 }
114 else {
115 cj('#' + target[j]).show();
116 }
6a488035 117 }
0f5816a6
KJ
118 }
119 }
6a488035 120
0f5816a6
KJ
121 }
122 else {
123 if (field_type == 'radio') {
f54254d8
TO
124 target = target_element_id.split("|");
125 for (j = 0; j < target.length; j++) {
5fb3af09 126 if (cj('[name="' + trigger_field_id + '"]:first').is(':checked')) {
0f5816a6
KJ
127 if (invert) {
128 cj('#' + target[j]).hide();
129 }
130 else {
131 cj('#' + target[j]).show();
132 }
6a488035 133 }
0f5816a6
KJ
134 else {
135 if (invert) {
136 cj('#' + target[j]).show();
137 }
138 else {
139 cj('#' + target[j]).hide();
140 }
141 }
142 }
6a488035 143 }
0f5816a6 144 }
6a488035
TO
145}
146
6a488035
TO
147/**
148 * Function to change button text and disable one it is clicked
353ea873 149 * @deprecated
6a488035
TO
150 * @param obj object - the button clicked
151 * @param formID string - the id of the form being submitted
152 * @param string procText - button text after user clicks it
353ea873 153 * @return bool
6a488035 154 */
0f5816a6 155var submitcount = 0;
c6edd786 156/* Changes button label on submit, and disables button after submit for newer browsers.
157 Puts up alert for older browsers. */
0f5816a6
KJ
158function submitOnce(obj, formId, procText) {
159 // if named button clicked, change text
160 if (obj.value != null) {
42579c28 161 cj('input[name=' + obj.name + ']').val(procText + " ...");
0f5816a6 162 }
47ea29e3 163 cj(obj).closest('form').attr('data-warn-changes', 'false');
0f5816a6 164 if (document.getElementById) { // disable submit button for newer browsers
42579c28 165 cj('input[name=' + obj.name + ']').attr("disabled", true);
0f5816a6
KJ
166 document.getElementById(formId).submit();
167 return true;
168 }
169 else { // for older browsers
170 if (submitcount == 0) {
171 submitcount++;
172 return true;
173 }
174 else {
175 alert("Your request is currently being processed ... Please wait.");
176 return false;
6a488035 177 }
0f5816a6 178 }
6a488035 179}
6a488035 180
6a488035
TO
181/**
182 * Function to show / hide the row in optionFields
353ea873
CW
183 * @deprecated
184 * @param index string, element whose innerHTML is to hide else will show the hidden row.
6a488035 185 */
0f5816a6
KJ
186function showHideRow(index) {
187 if (index) {
188 cj('tr#optionField_' + index).hide();
189 if (cj('table#optionField tr:hidden:first').length) {
190 cj('div#optionFieldLink').show();
6a488035 191 }
0f5816a6
KJ
192 }
193 else {
194 cj('table#optionField tr:hidden:first').show();
195 if (!cj('table#optionField tr:hidden:last').length) {
196 cj('div#optionFieldLink').hide();
197 }
198 }
199 return false;
6a488035
TO
200}
201
2b3ddf6e
CW
202/* jshint ignore:end */
203
1711f01c
CW
204if (!CRM.utils) CRM.utils = {};
205if (!CRM.strings) CRM.strings = {};
206if (!CRM.vars) CRM.vars = {};
6a488035 207
4b513f23 208(function ($, _, undefined) {
7553cf23 209 "use strict";
0d75c29c 210 /* jshint validthis: true */
d664f648 211
3f586963
CW
212 // Theme classes for unattached elements
213 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container';
214
47f21f3a
CW
215 // https://github.com/ivaynberg/select2/pull/2090
216 $.fn.select2.defaults.width = 'resolve';
217
e20523a8
CW
218 // Workaround for https://github.com/ivaynberg/select2/issues/1246
219 $.ui.dialog.prototype._allowInteraction = function(e) {
e5b38290 220 return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop, .cke_dialog, #civicrm-menu').length;
e20523a8
CW
221 };
222
9f8862e1
CW
223 // Implements jQuery hook.prop
224 $.propHooks.disabled = {
225 set: function (el, value, name) {
226 // Sync button enabled status with wrapper css
227 if ($(el).is('span.crm-button > input.crm-form-submit')) {
228 $(el).parent().toggleClass('crm-button-disabled', !!value);
229 }
230 // Sync button enabled status with dialog button
231 if ($(el).is('.ui-dialog input.crm-form-submit')) {
9bce560a
CW
232 $(el).closest('.ui-dialog').find('.ui-dialog-buttonset button[data-identifier='+ $(el).attr('name') +']').prop('disabled', value);
233 }
234 if ($(el).is('.crm-form-date-wrapper .crm-hidden-date')) {
235 $(el).siblings().prop('disabled', value);
9f8862e1
CW
236 }
237 }
238 };
239
286a7e5a 240 var scriptsLoaded = {};
2bdce12c 241 CRM.loadScript = function(url, appendCacheCode) {
286a7e5a 242 if (!scriptsLoaded[url]) {
2bdce12c
CW
243 var script = document.createElement('script'),
244 src = url;
245 if (appendCacheCode !== false) {
246 src += (_.includes(url, '?') ? '&r=' : '?r=') + CRM.config.resourceCacheCode;
247 }
286a7e5a
CW
248 scriptsLoaded[url] = $.Deferred();
249 script.onload = function () {
0d730261
CW
250 // Give the script time to execute
251 window.setTimeout(function () {
252 if (window.jQuery === CRM.$ && CRM.CMSjQuery) {
253 window.jQuery = CRM.CMSjQuery;
254 }
255 scriptsLoaded[url].resolve();
256 }, 100);
286a7e5a 257 };
30b7642c
CW
258 // Make jQuery global available while script is loading
259 if (window.jQuery !== CRM.$) {
260 CRM.CMSjQuery = window.jQuery;
261 window.jQuery = CRM.$;
262 }
2bdce12c 263 script.src = src;
286a7e5a
CW
264 document.getElementsByTagName("head")[0].appendChild(script);
265 }
266 return scriptsLoaded[url];
267 };
268
475e9f44
CW
269 /**
270 * Populate a select list, overwriting the existing options except for the placeholder.
581c7be2 271 * @param select jquery selector - 1 or more select elements
475e9f44 272 * @param options array in format returned by api.getoptions
b7ceb253
CW
273 * @param placeholder string|bool - new placeholder or false (default) to keep the old one
274 * @param value string|array - will silently update the element with new value without triggering change
475e9f44 275 */
b7ceb253 276 CRM.utils.setOptions = function(select, options, placeholder, value) {
581c7be2 277 $(select).each(function() {
475e9f44
CW
278 var
279 $elect = $(this),
b7ceb253
CW
280 val = value || $elect.val() || [],
281 opts = placeholder || placeholder === '' ? '' : '[value!=""]';
23e8a31b 282 $elect.find('option' + opts).remove();
b7ceb253 283 var newOptions = CRM.utils.renderOptions(options, val);
1d07e7ab 284 if (typeof placeholder === 'string') {
581c7be2
CW
285 if ($elect.is('[multiple]')) {
286 select.attr('placeholder', placeholder);
1d07e7ab
CW
287 } else {
288 newOptions = '<option value="">' + placeholder + '</option>' + newOptions;
289 }
290 }
291 $elect.append(newOptions);
b7ceb253
CW
292 if (!value) {
293 $elect.trigger('crmOptionsUpdated', $.extend({}, options)).trigger('change');
294 }
475e9f44
CW
295 });
296 };
297
b7ceb253
CW
298 /**
299 * Render an option list
8decea37
CW
300 * @param options {array}
301 * @param val {string} default value
302 * @param escapeHtml {bool}
b7ceb253
CW
303 * @return string
304 */
8decea37
CW
305 CRM.utils.renderOptions = function(options, val, escapeHtml) {
306 var rendered = '',
307 esc = escapeHtml === false ? _.identity : _.escape;
b7ceb253
CW
308 if (!$.isArray(val)) {
309 val = [val];
310 }
311 _.each(options, function(option) {
312 if (option.children) {
8decea37 313 rendered += '<optgroup label="' + esc(option.value) + '">' +
52e6588d
CW
314 CRM.utils.renderOptions(option.children, val) +
315 '</optgroup>';
b7ceb253
CW
316 } else {
317 var selected = ($.inArray('' + option.key, val) > -1) ? 'selected="selected"' : '';
8decea37 318 rendered += '<option value="' + esc(option.key) + '"' + selected + '>' + esc(option.value) + '</option>';
b7ceb253 319 }
475e9f44 320 });
b7ceb253 321 return rendered;
475e9f44
CW
322 };
323
1d07e7ab
CW
324 function chainSelect() {
325 var $form = $(this).closest('form'),
326 $target = $('select[data-name="' + $(this).data('target') + '"]', $form),
327 data = $target.data(),
328 val = $(this).val();
329 $target.prop('disabled', true);
330 if ($target.is('select.crm-chain-select-control')) {
331 $('select[data-name="' + $target.data('target') + '"]', $form).prop('disabled', true).blur();
332 }
333 if (!(val && val.length)) {
334 CRM.utils.setOptions($target.blur(), [], data.emptyPrompt);
335 } else {
336 $target.addClass('loading');
337 $.getJSON(CRM.url(data.callback), {_value: val}, function(vals) {
338 $target.prop('disabled', false).removeClass('loading');
339 CRM.utils.setOptions($target, vals || [], (vals && vals.length ? data.selectPrompt : data.nonePrompt));
340 });
341 }
342 }
343
52e6588d
CW
344 /**
345 * Compare Form Input values against cached initial value.
346 *
347 * @return {Boolean} true if changes have been made.
348 */
3e201321 349 CRM.utils.initialValueChanged = function(el) {
88e9380e 350 var isDirty = false;
d4fa3633 351 $(':input:visible, .select2-container:visible+:input:hidden', el).not('[type=submit], [type=button], .crm-action-menu, :disabled').each(function () {
603f899a
CW
352 var
353 initialValue = $(this).data('crm-initial-value'),
354 currentValue = $(this).is(':checkbox, :radio') ? $(this).prop('checked') : $(this).val();
3c0624e2 355 // skip change of value for submit buttons
603f899a 356 if (initialValue !== undefined && !_.isEqual(initialValue, currentValue)) {
88e9380e
CW
357 isDirty = true;
358 }
3e201321 359 });
360 return isDirty;
8d36b801 361 };
52e6588d 362
b1fc510d
CW
363 /**
364 * This provides defaults for ui.dialog which either need to be calculated or are different from global defaults
365 *
366 * @param settings
367 * @returns {*}
368 */
369 CRM.utils.adjustDialogDefaults = function(settings) {
370 settings = $.extend({width: '65%', height: '65%', modal: true}, settings || {});
371 // Support relative height
372 if (typeof settings.height === 'string' && settings.height.indexOf('%') > 0) {
373 settings.height = parseInt($(window).height() * (parseFloat(settings.height)/100), 10);
374 }
375 // Responsive adjustment - increase percent width on small screens
376 if (typeof settings.width === 'string' && settings.width.indexOf('%') > 0) {
377 var screenWidth = $(window).width(),
378 percentage = parseInt(settings.width.replace('%', ''), 10),
379 gap = 100-percentage;
380 if (screenWidth < 701) {
381 settings.width = '100%';
382 }
383 else if (screenWidth < 1400) {
384 settings.width = '' + parseInt(percentage+gap-((screenWidth - 700)/7*(gap)/100), 10) + '%';
385 }
386 }
387 return settings;
388 };
52e6588d 389
00c2ff9e 390 function formatCrmSelect2(row) {
b733747a
CW
391 var icon = row.icon || $(row.element).data('icon'),
392 color = row.color || $(row.element).data('color'),
393 description = row.description || $(row.element).data('description'),
394 ret = '';
395 if (icon) {
396 ret += '<i class="crm-i ' + icon + '"></i> ';
397 }
398 if (color) {
399 ret += '<span class="crm-select-item-color" style="background-color: ' + color + '"></span> ';
400 }
401 return ret + _.escape(row.text) + (description ? '<div class="crm-select2-row-description"><p>' + _.escape(description) + '</p></div>' : '');
00c2ff9e
CW
402 }
403
ba4fb2b2 404 /**
353ea873 405 * Wrapper for select2 initialization function; supplies defaults
a88cf11a 406 * @param options object
ba4fb2b2 407 */
a88cf11a 408 $.fn.crmSelect2 = function(options) {
4cd02904
CW
409 if (options === 'destroy') {
410 return $(this).each(function() {
411 $(this)
412 .removeClass('crm-ajax-select')
413 .select2('destroy');
414 });
415 }
a88cf11a
CW
416 return $(this).each(function () {
417 var
418 $el = $(this),
9597c394 419 iconClass,
00c2ff9e
CW
420 settings = {
421 allowClear: !$el.hasClass('required'),
422 formatResult: formatCrmSelect2,
423 formatSelection: formatCrmSelect2
424 };
a88cf11a
CW
425 // quickform doesn't support optgroups so here's a hack :(
426 $('option[value^=crm_optgroup]', this).each(function () {
427 $(this).nextUntil('option[value^=crm_optgroup]').wrapAll('<optgroup label="' + $(this).text() + '" />');
428 $(this).remove();
429 });
47358d92 430
431 // quickform does not support disabled option, so yet another hack to
432 // add disabled property for option values
711da13f 433 $('option[value^=crm_disabled_opt]', this).attr('disabled', 'disabled');
27a6b676 434
8c3a97ed 435 // Placeholder icon - total hack hikacking the escapeMarkup function but select2 3.5 dosn't have any other callbacks for this :(
9597c394 436 if ($el.is('[class*=fa-]')) {
8c3a97ed
CW
437 settings.escapeMarkup = function (m) {
438 var out = _.escape(m),
439 placeholder = settings.placeholder || $el.data('placeholder') || $el.attr('placeholder') || $('option[value=""]', $el).text();
440 if (m.length && placeholder === m) {
441 iconClass = $el.attr('class').match(/(fa-\S*)/)[1];
442 out = '<i class="crm-i ' + iconClass + '"></i> ' + out;
443 }
444 return out;
445 };
9597c394
CW
446 }
447
a88cf11a
CW
448 // Defaults for single-selects
449 if ($el.is('select:not([multiple])')) {
a243158e 450 settings.minimumResultsForSearch = 10;
a88cf11a 451 if ($('option:first', this).val() === '') {
a243158e 452 settings.placeholderOption = 'first';
a88cf11a 453 }
ba4fb2b2 454 }
a243158e
CW
455 $.extend(settings, $el.data('select-params') || {}, options || {});
456 if (settings.ajax) {
457 $el.addClass('crm-ajax-select');
458 }
459 $el.select2(settings);
a88cf11a
CW
460 });
461 };
462
463 /**
353ea873 464 * @see CRM_Core_Form::addEntityRef for docs
a88cf11a
CW
465 * @param options object
466 */
467 $.fn.crmEntityRef = function(options) {
4cd02904
CW
468 if (options === 'destroy') {
469 return $(this).each(function() {
470 var entity = $(this).data('api-entity') || '';
471 $(this)
472 .off('.crmEntity')
2229cf4f 473 .removeClass('crm-form-entityref crm-' + _.kebabCase(entity) + '-ref')
4cd02904
CW
474 .crmSelect2('destroy');
475 });
476 }
a88cf11a
CW
477 options = options || {};
478 options.select = options.select || {};
479 return $(this).each(function() {
480 var
4c993609 481 $el = $(this).off('.crmEntity'),
2229cf4f 482 entity = options.entity || $el.data('api-entity') || 'Contact',
a88cf11a 483 selectParams = {};
2229cf4f
CW
484 // Legacy: fix entity name if passed in as snake case
485 if (entity.charAt(0).toUpperCase() !== entity.charAt(0)) {
486 entity = _.capitalize(_.camelCase(entity));
487 }
a88cf11a
CW
488 $el.data('api-entity', entity);
489 $el.data('select-params', $.extend({}, $el.data('select-params') || {}, options.select));
0ed35ef8 490 $el.data('api-params', $.extend(true, {}, $el.data('api-params') || {}, options.api));
a4799f04 491 $el.data('create-links', options.create || $el.data('create-links'));
2229cf4f 492 $el.addClass('crm-form-entityref crm-' + _.kebabCase(entity) + '-ref');
ba4fb2b2 493 var settings = {
b7ceb253 494 // Use select2 ajax helper instead of CRM.api3 because it provides more value
ba4fb2b2
CW
495 ajax: {
496 url: CRM.url('civicrm/ajax/rest'),
3d06f63c 497 quietMillis: 300,
ba4fb2b2 498 data: function (input, page_num) {
b7ceb253 499 var params = getEntityRefApiParams($el);
ba4fb2b2
CW
500 params.input = input;
501 params.page_num = page_num;
502 return {
503 entity: $el.data('api-entity'),
504 action: 'getlist',
505 json: JSON.stringify(params)
506 };
507 },
508 results: function(data) {
509 return {more: data.more_results, results: data.values || []};
510 }
511 },
a88cf11a 512 minimumInputLength: 1,
3c0b6a40 513 formatResult: CRM.utils.formatSelect2Result,
4fcc9877 514 formatSelection: formatEntityRefSelection,
7a5edd0a 515 escapeMarkup: _.identity,
a88cf11a
CW
516 initSelection: function($el, callback) {
517 var
518 multiple = !!$el.data('select-params').multiple,
519 val = $el.val(),
520 stored = $el.data('entity-value') || [];
521 if (val === '') {
522 return;
523 }
524 // If we already have this data, just return it
525 if (!_.xor(val.split(','), _.pluck(stored, 'id')).length) {
526 callback(multiple ? stored : stored[0]);
527 } else {
78b203e5 528 var params = $.extend({}, $el.data('api-params') || {}, {id: val});
a88cf11a 529 CRM.api3($el.data('api-entity'), 'getlist', params).done(function(result) {
d2b4810b
CW
530 callback(multiple ? result.values : result.values[0]);
531 // Trigger change (store data to avoid an infinite loop of lookups)
532 $el.data('entity-value', result.values).trigger('change');
a88cf11a
CW
533 });
534 }
ba4fb2b2
CW
535 }
536 };
4c993609 537 // Create new items inline - works for tags
2229cf4f 538 if ($el.data('create-links') && entity === 'Tag') {
4c993609
CW
539 selectParams.createSearchChoice = function(term, data) {
540 if (!_.findKey(data, {label: term})) {
541 return {id: "0", term: term, label: term + ' (' + ts('new tag') + ')'};
542 }
543 };
e4f4dc22 544 selectParams.tokenSeparators = [','];
4c993609 545 selectParams.createSearchChoicePosition = 'bottom';
05b21c58 546 $el.on('select2-selecting.crmEntity', function(e) {
4c993609 547 if (e.val === "0") {
a2c28a94 548 // Create a new term
4c993609
CW
549 e.object.label = e.object.term;
550 CRM.api3(entity, 'create', $.extend({name: e.object.term}, $el.data('api-params').params || {}))
551 .done(function(created) {
552 var
4c993609
CW
553 val = $el.select2('val'),
554 data = $el.select2('data'),
555 item = {id: created.id, label: e.object.term};
556 if (val === "0") {
e4f4dc22 557 $el.select2('data', item, true);
4c993609
CW
558 }
559 else if ($.isArray(val) && $.inArray("0", val) > -1) {
560 _.remove(data, {id: "0"});
561 data.push(item);
e4f4dc22 562 $el.select2('data', data, true);
4c993609
CW
563 }
564 });
565 }
566 });
b7ceb253
CW
567 }
568 else {
a88cf11a
CW
569 selectParams.formatInputTooShort = function() {
570 var txt = $el.data('select-params').formatInputTooShort || $.fn.select2.defaults.formatInputTooShort.call(this);
fd7c068f 571 txt += entityRefFiltersMarkup($el) + renderEntityRefCreateLinks($el);
ba4fb2b2
CW
572 return txt;
573 };
a88cf11a 574 selectParams.formatNoMatches = function() {
ba4fb2b2 575 var txt = $el.data('select-params').formatNoMatches || $.fn.select2.defaults.formatNoMatches;
fd7c068f 576 txt += entityRefFiltersMarkup($el) + renderEntityRefCreateLinks($el);
b7ceb253 577 return txt;
ba4fb2b2 578 };
4c993609 579 $el.on('select2-open.crmEntity', function() {
ba4fb2b2 580 var $el = $(this);
fd7c068f 581 renderEntityRefFilterValue($el);
b7ceb253
CW
582 $('#select2-drop')
583 .off('.crmEntity')
584 .on('click.crmEntity', 'a.crm-add-entity', function(e) {
882a1be2 585 var extra = $el.data('api-params').extra,
2b63c577 586 formUrl = $(this).attr('href') + '&returnExtra=display_name,sort_name' + (extra ? (',' + extra) : '');
b7ceb253 587 $el.select2('close');
882a1be2 588 CRM.loadForm(formUrl, {
8dbd6052 589 dialog: {width: '50%', height: 220}
b7ceb253
CW
590 }).on('crmFormSuccess', function(e, data) {
591 if (data.status === 'success' && data.id) {
8dbd6052
CW
592 if (!data.crmMessages) {
593 CRM.status(ts('%1 Created', {1: data.label || data.extra.display_name}));
594 }
595 data.label = data.label || data.extra.sort_name;
b7ceb253
CW
596 if ($el.select2('container').hasClass('select2-container-multi')) {
597 var selection = $el.select2('data');
598 selection.push(data);
599 $el.select2('data', selection, true);
600 } else {
601 $el.select2('data', data, true);
602 }
c92f6436 603 }
b7ceb253
CW
604 });
605 return false;
606 })
fd7c068f 607 .on('change.crmEntity', '.crm-entityref-filter-value', function() {
b7ceb253
CW
608 var filter = $el.data('user-filter') || {};
609 filter.value = $(this).val();
610 $(this).toggleClass('active', !!filter.value);
611 $el.data('user-filter', filter);
612 if (filter.value) {
613 // Once a filter has been chosen, rerender create links and refocus the search box
614 $el.select2('close');
615 $el.select2('open');
38558375
CW
616 } else {
617 $('.crm-entityref-links', '#select2-drop').replaceWith(renderEntityRefCreateLinks($el));
ba4fb2b2 618 }
b7ceb253
CW
619 })
620 .on('change.crmEntity', 'select.crm-entityref-filter-key', function() {
38558375 621 var filter = {key: $(this).val()};
b7ceb253
CW
622 $(this).toggleClass('active', !!filter.key);
623 $el.data('user-filter', filter);
fd7c068f
CW
624 renderEntityRefFilterValue($el);
625 $('.crm-entityref-filter-key', '#select2-drop').focus();
ba4fb2b2 626 });
ba4fb2b2
CW
627 });
628 }
05b21c58 629 $el.crmSelect2($.extend(settings, $el.data('select-params'), selectParams));
a88cf11a 630 });
ba4fb2b2
CW
631 };
632
b7ceb253
CW
633 /**
634 * Combine api-params with user-filter
635 * @param $el
636 * @returns {*}
637 */
638 function getEntityRefApiParams($el) {
639 var
640 params = $.extend({params: {}}, $el.data('api-params') || {}),
641 // Prevent original data from being modified - $.extend and _.clone don't cut it, they pass nested objects by reference!
642 combined = _.cloneDeep(params),
643 filter = $.extend({}, $el.data('user-filter') || {});
644 if (filter.key && filter.value) {
06606cd1
CW
645 // Fieldname may be prefixed with joins
646 var fieldName = _.last(filter.key.split('.'));
b7ceb253 647 // Special case for contact type/sub-type combo
06606cd1
CW
648 if (fieldName === 'contact_type' && (filter.value.indexOf('__') > 0)) {
649 combined.params[filter.key] = filter.value.split('__')[0];
650 combined.params[filter.key.replace('contact_type', 'contact_sub_type')] = filter.value.split('__')[1];
b7ceb253 651 } else {
cdc8d05f
CW
652 // Allow json-encoded api filters e.g. {"BETWEEN":[123,456]}
653 combined.params[filter.key] = filter.value.charAt(0) === '{' ? $.parseJSON(filter.value) : filter.value;
b7ceb253
CW
654 }
655 }
656 return combined;
657 }
658
403c52ac 659 CRM.utils.copyAttributes = function ($source, $target, attributes) {
9bce560a 660 _.each(attributes, function(name) {
a2973721 661 if ($source.attr(name) !== undefined) {
9bce560a
CW
662 $target.attr(name, $source.attr(name));
663 }
664 });
9bce560a
CW
665 };
666
3c0b6a40 667 CRM.utils.formatSelect2Result = function (row) {
88881f79 668 var markup = '<div class="crm-select2-row">';
ff88d165 669 if (row.image !== undefined) {
88881f79 670 markup += '<div class="crm-select2-image"><img src="' + row.image + '"/></div>';
ff88d165 671 }
54bee7df 672 else if (row.icon_class) {
88881f79 673 markup += '<div class="crm-select2-icon"><div class="crm-icon ' + row.icon_class + '-icon"></div></div>';
54bee7df 674 }
8a938c69 675 markup += '<div><div class="crm-select2-row-label '+(row.label_class || '')+'">' +
4fcc9877 676 (row.color ? '<span class="crm-select-item-color" style="background-color: ' + row.color + '"></span> ' : '') +
7a5edd0a 677 _.escape((row.prefix !== undefined ? row.prefix + ' ' : '') + row.label + (row.suffix !== undefined ? ' ' + row.suffix : '')) +
8a938c69
CW
678 '</div>' +
679 '<div class="crm-select2-row-description">';
88881f79 680 $.each(row.description || [], function(k, text) {
7a5edd0a 681 markup += '<p>' + _.escape(text) + '</p>';
88881f79
CW
682 });
683 markup += '</div></div></div>';
ff88d165 684 return markup;
3c0b6a40 685 };
a4799f04 686
4fcc9877
CW
687 function formatEntityRefSelection(row) {
688 return (row.color ? '<span class="crm-select-item-color" style="background-color: ' + row.color + '"></span> ' : '') +
689 _.escape((row.prefix !== undefined ? row.prefix + ' ' : '') + row.label + (row.suffix !== undefined ? ' ' + row.suffix : ''));
690 }
691
b7ceb253 692 function renderEntityRefCreateLinks($el) {
a4799f04
CW
693 var
694 createLinks = $el.data('create-links'),
b7ceb253 695 params = getEntityRefApiParams($el).params,
2229cf4f 696 entity = $el.data('api-entity'),
b7ceb253 697 markup = '<div class="crm-entityref-links">';
e695ee7c 698 if (!createLinks || (createLinks === true && !CRM.config.entityRef.links[entity])) {
b7ceb253
CW
699 return '';
700 }
a4799f04 701 if (createLinks === true) {
e695ee7c 702 createLinks = params.contact_type ? _.where(CRM.config.entityRef.links[entity], {type: params.contact_type}) : CRM.config.entityRef.links[entity];
a4799f04 703 }
a4799f04 704 _.each(createLinks, function(link) {
8dbd6052
CW
705 markup += ' <a class="crm-add-entity crm-hover-button" href="' + link.url + '">' +
706 '<i class="crm-i ' + (link.icon || 'fa-plus-circle') + '"></i> ' +
707 _.escape(link.label) + '</a>';
79ae07d9 708 });
b7ceb253
CW
709 markup += '</div>';
710 return markup;
711 }
712
713 function getEntityRefFilters($el) {
714 var
2229cf4f 715 entity = $el.data('api-entity'),
11f907d4 716 filters = CRM.config.entityRef.filters[entity] || [],
b7ceb253
CW
717 params = $.extend({params: {}}, $el.data('api-params') || {}).params,
718 result = [];
74e8320f
CW
719 _.each(filters, function(filter) {
720 _.defaults(filter, {type: 'select', 'attributes': {}, entity: entity});
11f907d4 721 if (!params[filter.key]) {
7fd621e8
CW
722 // Filter out options if params don't match its condition
723 if (filter.condition && !_.isMatch(params, _.pick(filter.condition, _.keys(params)))) {
724 return;
725 }
fd7c068f 726 result.push(filter);
b7ceb253 727 }
fd7c068f 728 else if (filter.key == 'contact_type' && typeof params.contact_sub_type === 'undefined') {
fd7c068f 729 result.push(filter);
b7ceb253
CW
730 }
731 });
732 return result;
733 }
734
fd7c068f
CW
735 /**
736 * Provide markup for entity ref filters
737 */
738 function entityRefFiltersMarkup($el) {
b7ceb253
CW
739 var
740 filters = getEntityRefFilters($el),
741 filter = $el.data('user-filter') || {},
742 filterSpec = filter.key ? _.find(filters, {key: filter.key}) : null;
743 if (!filters.length) {
744 return '';
745 }
746 var markup = '<div class="crm-entityref-filters">' +
747 '<select class="crm-entityref-filter-key' + (filter.key ? ' active' : '') + '">' +
7a5edd0a 748 '<option value="">' + _.escape(ts('Refine search...')) + '</option>' +
52e6588d 749 CRM.utils.renderOptions(filters, filter.key) +
fd7c068f
CW
750 '</select>' + entityRefFilterValueMarkup(filter, filterSpec) + '</div>';
751 return markup;
752 }
753
754 /**
755 * Provide markup for entity ref filter value field
756 */
757 function entityRefFilterValueMarkup(filter, filterSpec) {
758 var markup = '';
759 if (filterSpec) {
760 var attrs = '',
761 attributes = _.cloneDeep(filterSpec.attributes);
762 if (filterSpec.type !== 'select') {
763 attributes.type = filterSpec.type;
764 attributes.value = typeof filter.value !== 'undefined' ? filter.value : '';
765 }
766 attributes.class = 'crm-entityref-filter-value' + (filter.value ? ' active' : '');
767 $.each(attributes, function (attr, val) {
768 attrs += ' ' + attr + '="' + val + '"';
769 });
770 if (filterSpec.type === 'select') {
11f907d4 771 markup = '<select' + attrs + '><option value="">' + _.escape(ts('- select -')) + '</option></select>';
fd7c068f
CW
772 } else {
773 markup = '<input' + attrs + '/>';
774 }
b7ceb253 775 }
79ae07d9 776 return markup;
a4799f04 777 }
ff88d165 778
b7ceb253 779 /**
fd7c068f 780 * Render the entity ref filter value field
b7ceb253 781 */
fd7c068f 782 function renderEntityRefFilterValue($el) {
b7ceb253 783 var
b7ceb253 784 filter = $el.data('user-filter') || {},
fd7c068f
CW
785 filterSpec = filter.key ? _.find(getEntityRefFilters($el), {key: filter.key}) : null,
786 $keyField = $('.crm-entityref-filter-key', '#select2-drop'),
787 $valField = null;
b7ceb253 788 if (filterSpec) {
fd7c068f
CW
789 $('.crm-entityref-filter-value', '#select2-drop').remove();
790 $valField = $(entityRefFilterValueMarkup(filter, filterSpec));
791 $keyField.after($valField);
11f907d4 792 if (filterSpec.type === 'select') {
fd7c068f 793 loadEntityRefFilterOptions(filter, filterSpec, $valField, $el);
b7ceb253
CW
794 }
795 } else {
fd7c068f 796 $('.crm-entityref-filter-value', '#select2-drop').hide().val('').change();
b7ceb253
CW
797 }
798 }
799
fd7c068f 800 /**
11f907d4 801 * Fetch options for a filter from cache or ajax api
fd7c068f
CW
802 */
803 function loadEntityRefFilterOptions(filter, filterSpec, $valField, $el) {
fd7c068f 804 // Fieldname may be prefixed with joins - strip those out
11f907d4
CW
805 var fieldName = _.last(filter.key.split('.')),
806 params = $.extend({params: {}}, $el.data('api-params') || {}).params;
807 if (filterSpec.options) {
808 setEntityRefFilterOptions($valField, fieldName, params, filterSpec);
809 return;
810 }
811 $('.crm-entityref-filters select', '#select2-drop').prop('disabled', true);
fd7c068f
CW
812 CRM.api3(filterSpec.entity, 'getoptions', {field: fieldName, context: 'search', sequential: 1})
813 .done(function(result) {
11f907d4 814 var entity = $el.data('api-entity').toLowerCase();
fd7c068f 815 // Store options globally so we don't have to look them up again
11f907d4
CW
816 filterSpec.options = result.values;
817 $('.crm-entityref-filters select', '#select2-drop').prop('disabled', false);
818 setEntityRefFilterOptions($valField, fieldName, params, filterSpec);
fd7c068f
CW
819 $valField.val(filter.value || '');
820 });
821 }
822
11f907d4
CW
823 function setEntityRefFilterOptions($valField, fieldName, params, filterSpec) {
824 var values = _.cloneDeep(filterSpec.options);
825 if (fieldName === 'contact_type' && params.contact_type) {
826 values = _.remove(values, function(option) {
827 return option.key.indexOf(params.contact_type + '__') === 0;
828 });
829 }
830 CRM.utils.setOptions($valField, values);
831 }
832
1136a401 833 //CRM-15598 - Override url validator method to allow relative url's (e.g. /index.htm)
834 $.validator.addMethod("url", function(value, element) {
835 if (/^\//.test(value)) {
836 // Relative url: prepend dummy path for validation.
837 value = 'http://domain.tld' + value;
838 }
839 // From jQuery Validation Plugin v1.12.0
840 return this.optional(element) || /^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);
841 });
842
3d527838
CW
843 /**
844 * Wrapper for jQuery validate initialization function; supplies defaults
3d527838
CW
845 */
846 $.fn.crmValidate = function(params) {
847 return $(this).each(function () {
848 var that = this,
849 settings = $.extend({}, CRM.validate._defaults, CRM.validate.params);
850 $(this).validate(settings);
851 // Call any post-initialization callbacks
852 if (CRM.validate.functions && CRM.validate.functions.length) {
853 $.each(CRM.validate.functions, function(i, func) {
854 func.call(that);
855 });
856 }
857 });
b7ceb253 858 };
3d527838 859
f7b92fcd 860 // Initialize widgets
eb90857a
CW
861 $(document)
862 .on('crmLoad', function(e) {
863 $('table.row-highlight', e.target)
864 .off('.rowHighlight')
7e13d44e
CW
865 .on('change.rowHighlight', 'input.select-row, input.select-rows', function (e, data) {
866 var filter, $table = $(this).closest('table');
eb90857a 867 if ($(this).hasClass('select-rows')) {
7e13d44e
CW
868 filter = $(this).prop('checked') ? ':not(:checked)' : ':checked';
869 $('input.select-row' + filter, $table).prop('checked', $(this).prop('checked')).trigger('change', 'master-selected');
eb90857a
CW
870 }
871 else {
7e13d44e
CW
872 $(this).closest('tr').toggleClass('crm-row-selected', $(this).prop('checked'));
873 if (data !== 'master-selected') {
874 $('input.select-rows', $table).prop('checked', $(".select-row:not(':checked')", $table).length < 1);
875 }
eb90857a 876 }
eb90857a
CW
877 })
878 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
7d12de7f 879 $('table.crm-sortable', e.target).DataTable();
16f4d319
CW
880 $('table.crm-ajax-table', e.target).each(function() {
881 var
882 $table = $(this),
1c952f13 883 script = CRM.config.resourceBase + 'js/jquery/jquery.crmAjaxTable.js',
16f4d319
CW
884 $accordion = $table.closest('.crm-accordion-wrapper.collapsed, .crm-collapsible.collapsed');
885 // For tables hidden by collapsed accordions, wait.
886 if ($accordion.length) {
887 $accordion.one('crmAccordion:open', function() {
1c952f13
CW
888 CRM.loadScript(script).done(function() {
889 $table.crmAjaxTable();
890 });
16f4d319
CW
891 });
892 } else {
1c952f13
CW
893 CRM.loadScript(script).done(function() {
894 $table.crmAjaxTable();
895 });
16f4d319
CW
896 }
897 });
82661158
JP
898 if ($("input:radio[name=radio_ts]").size() == 1) {
899 $("input:radio[name=radio_ts]").prop("checked", true);
900 }
5f34e50b
CW
901 $('.crm-select2:not(.select2-offscreen, .select2-container)', e.target).crmSelect2();
902 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e.target).crmEntityRef();
1d07e7ab 903 $('select.crm-chain-select-control', e.target).off('.chainSelect').on('change.chainSelect', chainSelect);
238fee7f
CW
904 $('.crm-form-text[data-crm-datepicker]', e.target).each(function() {
905 $(this).crmDatepicker($(this).data('crmDatepicker'));
906 });
30b7642c
CW
907 $('.crm-editable', e.target).not('thead *').each(function() {
908 var $el = $(this);
909 CRM.loadScript(CRM.config.resourceBase + 'js/jquery/jquery.crmEditable.js').done(function() {
910 $el.crmEditable();
911 });
912 });
3e201321 913 // Cache Form Input initial values
88e9380e 914 $('form[data-warn-changes] :input', e.target).each(function() {
603f899a 915 $(this).data('crm-initial-value', $(this).is(':checkbox, :radio') ? $(this).prop('checked') : $(this).val());
3e201321 916 });
9db15279
CW
917 $('textarea.crm-form-wysiwyg', e.target).each(function() {
918 if ($(this).hasClass("collapsed")) {
919 CRM.wysiwyg.createCollapsed(this);
920 } else {
921 CRM.wysiwyg.create(this);
922 }
923 });
eb90857a 924 })
eb90857a 925 .on('dialogopen', function(e) {
f292709b
CW
926 var $el = $(e.target);
927 // Modal dialogs should disable scrollbars
928 if ($el.dialog('option', 'modal')) {
929 $el.addClass('modal-dialog');
eb90857a
CW
930 $('body').css({overflow: 'hidden'});
931 }
3479049c 932 $el.parent().find('.ui-dialog-titlebar .ui-icon-closethick').removeClass('ui-icon-closethick').addClass('fa-times');
f292709b 933 // Add resize button
a243158e 934 if ($el.parent().hasClass('crm-container') && $el.dialog('option', 'resizable')) {
7a5edd0a 935 $el.parent().find('.ui-dialog-titlebar').append($('<button class="crm-dialog-titlebar-resize ui-dialog-titlebar-close" title="'+ _.escape(ts('Toggle fullscreen'))+'" style="right:2em;"/>').button({icons: {primary: 'fa-expand'}, text: false}));
f292709b
CW
936 $('.crm-dialog-titlebar-resize', $el.parent()).click(function(e) {
937 if ($el.data('origSize')) {
938 $el.dialog('option', $el.data('origSize'));
939 $el.data('origSize', null);
e915be1d 940 $(this).button('option', 'icons', {primary: 'fa-expand'});
f292709b 941 } else {
28d510ab 942 var menuHeight = $('#civicrm-menu').outerHeight();
f292709b 943 $el.data('origSize', {
28d510ab 944 position: {my: 'center', at: 'center center+' + (menuHeight / 2), of: window},
f292709b
CW
945 width: $el.dialog('option', 'width'),
946 height: $el.dialog('option', 'height')
947 });
f2f191fe 948 $el.dialog('option', {width: '100%', height: ($(window).height() - menuHeight), position: {my: "top", at: "top+"+menuHeight, of: window}});
e915be1d 949 $(this).button('option', 'icons', {primary: 'fa-compress'});
f292709b 950 }
02cd9764 951 $el.trigger('dialogresize');
f292709b
CW
952 e.preventDefault();
953 });
954 }
eb90857a
CW
955 })
956 .on('dialogclose', function(e) {
f292709b 957 // Restore scrollbars when closing modal
5a6148a0 958 if ($('.ui-dialog .modal-dialog:visible').not(e.target).length < 1) {
eb90857a
CW
959 $('body').css({overflow: ''});
960 }
afc021d8 961 })
962 .on('submit', function(e) {
f582fc8f 963 // CRM-14353 - disable changes warn when submitting a form
abb6e044 964 $('[data-warn-changes]').attr('data-warn-changes', 'false');
52e6588d 965 });
f582fc8f
CW
966
967 // CRM-14353 - Warn of unsaved changes for forms which have opted in
968 window.onbeforeunload = function() {
18469bf2 969 if (CRM.utils.initialValueChanged($('form[data-warn-changes=true]:visible'))) {
f582fc8f 970 return ts('You have unsaved changes.');
0f5816a6 971 }
f582fc8f 972 };
6a488035 973
0f5816a6 974 $.fn.crmtooltip = function () {
2c29c2ac
RN
975 $(document)
976 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e) {
73ed0c3f 977 $(this).addClass('crm-processed crm-tooltip-active');
e24b17b9 978 var topDistance = e.pageY - $(window).scrollTop();
2b3ddf6e 979 if (topDistance < 300 || topDistance < $(this).children('.crm-tooltip-wrapper').height()) {
e24b17b9
CW
980 $(this).addClass('crm-tooltip-down');
981 }
982 if (!$(this).children('.crm-tooltip-wrapper').length) {
6a488035
TO
983 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
984 $(this).children().children('.crm-tooltip')
985 .html('<div class="crm-loading-element"></div>')
986 .load(this.href);
987 }
988 })
2c29c2ac 989 .on('mouseout', 'a.crm-summary-link', function () {
73ed0c3f 990 $(this).removeClass('crm-processed crm-tooltip-active crm-tooltip-down');
e24b17b9 991 })
2c29c2ac 992 .on('click', 'a.crm-summary-link', false);
6a488035
TO
993 };
994
b0ca6188 995 var helpDisplay, helpPrevious;
2a243675
CW
996 // Non-ajax example:
997 // CRM.help('Example title', 'Here is some text to describe this example');
998 // Ajax example (will load help id "foo" from templates/CRM/bar.tpl):
999 // CRM.help('Example title', {id: 'foo', file: 'CRM/bar'});
8e3272a1 1000 CRM.help = function (title, params, url) {
2a243675 1001 var ajax = typeof params !== 'string';
55a93b02 1002 if (helpDisplay && helpDisplay.close) {
2a243675
CW
1003 // If the same link is clicked twice, just close the display
1004 if (helpDisplay.isOpen && _.isEqual(helpPrevious, params)) {
55a93b02 1005 helpDisplay.close();
b0ca6188
CW
1006 return;
1007 }
55a93b02 1008 helpDisplay.close();
b0ca6188 1009 }
2a243675
CW
1010 helpPrevious = _.cloneDeep(params);
1011 helpDisplay = CRM.alert(ajax ? '...' : params, title, 'crm-help ' + (ajax ? 'crm-msg-loading' : 'info'), {expires: 0});
1012 if (ajax) {
1013 if (!url) {
1014 url = CRM.url('civicrm/ajax/inline');
1015 params.class_name = 'CRM_Core_Page_Inline_Help';
1016 params.type = 'page';
1017 }
1018 $.ajax(url, {
6a488035
TO
1019 data: params,
1020 dataType: 'html',
e24b17b9 1021 success: function (data) {
6a488035
TO
1022 $('#crm-notification-container .crm-help .notify-content:last').html(data);
1023 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
1024 },
e24b17b9 1025 error: function () {
6a488035
TO
1026 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
1027 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
1028 }
2a243675
CW
1029 });
1030 }
6a488035 1031 };
8960d9b9 1032 /**
7442e8f6 1033 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
8960d9b9 1034 */
1b2475e1 1035 CRM.status = function(options, deferred) {
9a7ef94f 1036 // For simple usage without async operations you can pass in a string. 2nd param is optional string 'error' if this is not a success msg.
1b2475e1
CW
1037 if (typeof options === 'string') {
1038 return CRM.status({start: options, success: options, error: options})[deferred === 'error' ? 'reject' : 'resolve']();
8960d9b9 1039 }
1b2475e1
CW
1040 var opts = $.extend({
1041 start: ts('Saving...'),
9a7ef94f 1042 success: ts('Saved'),
47737104
CW
1043 error: function(data) {
1044 var msg = $.isPlainObject(data) && data.error_message;
1045 CRM.alert(msg || ts('Sorry an error occurred and your information was not saved'), ts('Error'), 'error');
1b2475e1
CW
1046 }
1047 }, options || {});
7a5edd0a 1048 var $msg = $('<div class="crm-status-box-outer status-start"><div class="crm-status-box-inner"><div class="crm-status-box-msg">' + _.escape(opts.start) + '</div></div></div>')
1b2475e1
CW
1049 .appendTo('body');
1050 $msg.css('min-width', $msg.width());
1051 function handle(status, data) {
1052 var endMsg = typeof(opts[status]) === 'function' ? opts[status](data) : opts[status];
1053 if (endMsg) {
7a5edd0a 1054 $msg.removeClass('status-start').addClass('status-' + status).find('.crm-status-box-msg').text(endMsg);
1b2475e1 1055 window.setTimeout(function() {
f54254d8
TO
1056 $msg.fadeOut('slow', function() {
1057 $msg.remove();
1058 });
4bad157e
CW
1059 }, 2000);
1060 } else {
1b2475e1 1061 $msg.remove();
4bad157e 1062 }
1b2475e1
CW
1063 }
1064 return (deferred || new $.Deferred())
1065 .done(function(data) {
1066 // If the server returns an error msg call the error handler
1067 var status = $.isPlainObject(data) && (data.is_error || data.status === 'error') ? 'error' : 'success';
1068 handle(status, data);
1069 })
1070 .fail(function(data) {
1071 handle('error', data);
1072 });
8960d9b9 1073 };
6a488035 1074
beab9d1b
TO
1075 // Convert an Angular promise to a jQuery promise
1076 CRM.toJqPromise = function(aPromise) {
1077 var jqDeferred = $.Deferred();
1078 aPromise.then(
1079 function(data) { jqDeferred.resolve(data); },
1080 function(data) { jqDeferred.reject(data); }
1081 // should we also handle progress events?
1082 );
1083 return jqDeferred.promise();
1084 };
1085
705c61e9
TO
1086 CRM.toAPromise = function($q, jqPromise) {
1087 var aDeferred = $q.defer();
1088 jqPromise.then(
1089 function(data) { aDeferred.resolve(data); },
1090 function(data) { aDeferred.reject(data); }
1091 // should we also handle progress events?
1092 );
1093 return aDeferred.promise;
1094 };
1095
6a488035 1096 /**
7442e8f6 1097 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
6a488035 1098 */
0f5816a6 1099 CRM.alert = function (text, title, type, options) {
6a488035
TO
1100 type = type || 'alert';
1101 title = title || '';
1102 options = options || {};
1103 if ($('#crm-notification-container').length) {
1104 var params = {
1105 text: text,
1106 title: title,
1107 type: type
1108 };
1109 // By default, don't expire errors and messages containing links
1110 var extra = {
1111 expires: (type == 'error' || text.indexOf('<a ') > -1) ? 0 : (text ? 10000 : 5000),
1112 unique: true
1113 };
1114 options = $.extend(extra, options);
d19abfd1 1115 options.expires = (options.expires === false || !CRM.config.allowAlertAutodismissal) ? 0 : parseInt(options.expires, 10);
6a488035 1116 if (options.unique && options.unique !== '0') {
0f5816a6 1117 $('#crm-notification-container .ui-notify-message').each(function () {
6a488035
TO
1118 if (title === $('h1', this).html() && text === $('.notify-content', this).html()) {
1119 $('.icon.ui-notify-close', this).click();
1120 }
1121 });
1122 }
1123 return $('#crm-notification-container').notify('create', params, options);
1124 }
1125 else {
1126 if (title.length) {
1127 text = title + "\n" + text;
1128 }
a0a0f60d
N
1129 // strip html tags as they are not parsed in standard alerts
1130 alert($("<div/>").html(text).text());
6a488035
TO
1131 return null;
1132 }
e24b17b9 1133 };
6a488035
TO
1134
1135 /**
1136 * Close whichever alert contains the given node
1137 *
1138 * @param node
1139 */
0f5816a6 1140 CRM.closeAlertByChild = function (node) {
6a488035 1141 $(node).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
e24b17b9 1142 };
6a488035
TO
1143
1144 /**
7442e8f6 1145 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
6a488035 1146 */
5fb83680 1147 CRM.confirm = function (options) {
27f190b4 1148 var dialog, url, msg, buttons = [], settings = {
a65e5f52 1149 title: ts('Confirm'),
7553cf23 1150 message: ts('Are you sure you want to continue?'),
3f4328da 1151 url: null,
0d5f99d4 1152 width: 'auto',
a8a8ddac 1153 height: 'auto',
a243158e 1154 resizable: false,
5fb83680 1155 dialogClass: 'crm-container crm-confirm',
0f5816a6 1156 close: function () {
5fb83680 1157 $(this).dialog('destroy').remove();
0f5816a6 1158 },
5fb83680
CW
1159 options: {
1160 no: ts('Cancel'),
1161 yes: ts('Continue')
1162 }
0f5816a6 1163 };
a8a8ddac
CW
1164 if (options && options.url) {
1165 settings.resizable = true;
1166 settings.height = '50%';
1167 }
5fb83680 1168 $.extend(settings, ($.isFunction(options) ? arguments[1] : options) || {});
a8a8ddac 1169 settings = CRM.utils.adjustDialogDefaults(settings);
5fb83680 1170 if (!settings.buttons && $.isPlainObject(settings.options)) {
27f190b4
CW
1171 $.each(settings.options, function(op, label) {
1172 buttons.push({
5fb83680 1173 text: label,
27f190b4 1174 'data-op': op,
972bd897 1175 icons: {primary: op === 'no' ? 'fa-times' : 'fa-check'},
5fb83680 1176 click: function() {
27f190b4 1177 var event = $.Event('crmConfirm:' + op);
5fb83680
CW
1178 $(this).trigger(event);
1179 if (!event.isDefaultPrevented()) {
1180 dialog.dialog('close');
1181 }
1182 }
1183 });
1184 });
27f190b4
CW
1185 // Order buttons so that "no" goes on the right-hand side
1186 settings.buttons = _.sortBy(buttons, 'data-op').reverse();
2a06342c 1187 }
3f4328da 1188 url = settings.url;
c0b7c815 1189 msg = url ? '' : settings.message;
5fb83680
CW
1190 delete settings.options;
1191 delete settings.message;
3f4328da 1192 delete settings.url;
c0b7c815 1193 dialog = $('<div class="crm-confirm-dialog"></div>').html(msg || '').dialog(settings);
5fb83680
CW
1194 if ($.isFunction(options)) {
1195 dialog.on('crmConfirm:yes', options);
7553cf23 1196 }
3f4328da
CW
1197 if (url) {
1198 CRM.loadPage(url, {target: dialog});
1199 }
c0b7c815
CW
1200 else {
1201 dialog.trigger('crmLoad');
3f4328da
CW
1202 }
1203 return dialog;
e24b17b9 1204 };
6a488035 1205
ed7225e6
CW
1206 /** provides a local copy of ts for a domain */
1207 CRM.ts = function(domain) {
1208 return function(message, options) {
1209 if (domain) {
1210 options = $.extend(options || {}, {domain: domain});
1211 }
f97524d9
TO
1212 return ts(message, options);
1213 };
f97524d9
TO
1214 };
1215
e3d90d6c
TO
1216 CRM.addStrings = function(domain, strings) {
1217 var bucket = (domain == 'civicrm' ? 'strings' : 'strings::' + domain);
1218 CRM[bucket] = CRM[bucket] || {};
1219 _.extend(CRM[bucket], strings);
1220 };
1221
6a488035 1222 /**
7442e8f6 1223 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
6a488035 1224 */
0f5816a6 1225 $.fn.crmError = function (text, title, options) {
6a488035
TO
1226 title = title || '';
1227 text = text || '';
1228 options = options || {};
1229
1230 var extra = {
1231 expires: 0
1232 };
1233 if ($(this).length) {
0d75c29c 1234 if (title === '') {
6a488035
TO
1235 var label = $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
1236 if (label.length) {
1237 label.addClass('crm-error');
1238 var $label = label.clone();
0d75c29c 1239 if (text === '' && $('.crm-marker', $label).length > 0) {
6a488035
TO
1240 text = $('.crm-marker', $label).attr('title');
1241 }
1242 $('.crm-marker', $label).remove();
1243 title = $label.text();
1244 }
1245 }
47737104 1246 $(this).addClass('crm-error');
6a488035
TO
1247 }
1248 var msg = CRM.alert(text, title, 'error', $.extend(extra, options));
1249 if ($(this).length) {
1250 var ele = $(this);
0f5816a6
KJ
1251 setTimeout(function () {
1252 ele.one('change', function () {
f54254d8 1253 if (msg && msg.close) msg.close();
0f5816a6
KJ
1254 ele.removeClass('error');
1255 label.removeClass('crm-error');
1256 });
1257 }, 1000);
6a488035
TO
1258 }
1259 return msg;
e24b17b9 1260 };
6a488035
TO
1261
1262 // Display system alerts through js notifications
1263 function messagesFromMarkup() {
0f5816a6 1264 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
e24b17b9 1265 var text, title = '';
6a488035
TO
1266 $(this).removeClass('status messages');
1267 var type = $(this).attr('class').split(' ')[0] || 'alert';
1268 type = type.replace('crm-', '');
1269 $('.icon', this).remove();
6a488035 1270 if ($('.msg-text', this).length > 0) {
e24b17b9 1271 text = $('.msg-text', this).html();
6a488035
TO
1272 title = $('.msg-title', this).html();
1273 }
1274 else {
e24b17b9 1275 text = $(this).html();
6a488035
TO
1276 }
1277 var options = $(this).data('options') || {};
1278 $(this).remove();
1279 // Duplicates were already removed server-side
1280 options.unique = false;
1281 CRM.alert(text, title, type, options);
1282 });
1283 // Handle qf form errors
1284 $('form :input.error', this).one('blur', function() {
1285 $('.ui-notify-message.error a.ui-notify-close').click();
1286 $(this).removeClass('error');
1287 $(this).next('span.crm-error').remove();
1288 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
1289 .removeClass('crm-error')
1290 .find('.crm-error').removeClass('crm-error');
1291 });
1292 }
1293
e4762285
CW
1294 /**
1295 * Improve blockUI when used with jQuery dialog
1296 */
1adbbe2d
CW
1297 var originalBlock = $.fn.block,
1298 originalUnblock = $.fn.unblock;
1299
1300 $.fn.block = function(opts) {
1301 if ($(this).is('.ui-dialog-content')) {
1302 originalBlock.call($(this).parents('.ui-dialog'), opts);
1303 return $(this);
1304 }
1305 return originalBlock.call(this, opts);
e4762285 1306 };
1adbbe2d
CW
1307 $.fn.unblock = function(opts) {
1308 if ($(this).is('.ui-dialog-content')) {
1309 originalUnblock.call($(this).parents('.ui-dialog'), opts);
1310 return $(this);
1311 }
1312 return originalUnblock.call(this, opts);
e4762285 1313 };
1adbbe2d 1314
e4762285 1315 // Preprocess all CRM ajax calls to display messages
03a7ec8f
CW
1316 $(document).ajaxSuccess(function(event, xhr, settings) {
1317 try {
1318 if ((!settings.dataType || settings.dataType == 'json') && xhr.responseText) {
1319 var response = $.parseJSON(xhr.responseText);
1320 if (typeof(response.crmMessages) == 'object') {
1321 $.each(response.crmMessages, function(n, msg) {
1322 CRM.alert(msg.text, msg.title, msg.type, msg.options);
f54254d8 1323 });
03a7ec8f 1324 }
bba9b4f0
CW
1325 if (response.backtrace) {
1326 CRM.console('log', response.backtrace);
1327 }
82983331
CW
1328 if (typeof response.deprecated === 'string') {
1329 CRM.console('warn', response.deprecated);
1330 }
03a7ec8f
CW
1331 }
1332 }
82983331 1333 // Ignore errors thrown by parseJSON
03a7ec8f
CW
1334 catch (e) {}
1335 });
1336
0f5816a6 1337 $(function () {
fdeb4de2 1338 $.blockUI.defaults.message = null;
1adbbe2d 1339 $.blockUI.defaults.ignoreIfBlocked = true;
fdeb4de2 1340
65b86482
CW
1341 if ($('#crm-container').hasClass('crm-public')) {
1342 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container crm-public';
1343 }
1344
205bb8ae 1345 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
8547369d 1346 $('.crm-container').trigger('crmLoad');
205bb8ae 1347
ef3309b6 1348 if ($('#crm-notification-container').length) {
6a488035
TO
1349 // Initialize notifications
1350 $('#crm-notification-container').notify();
1351 messagesFromMarkup.call($('#crm-container'));
6a488035 1352 }
ebb9197b 1353
475e9f44 1354 $('body')
5fb83680
CW
1355 // bind the event for image popup
1356 .on('click', 'a.crm-image-popup', function(e) {
1357 CRM.confirm({
1358 title: ts('Preview'),
a243158e 1359 resizable: true,
135880c6
CW
1360 // Prevent overlap with the menubar
1361 maxHeight: $(window).height() - 30,
1362 position: {my: 'center', at: 'center center+15', of: window},
e4762285 1363 message: '<div class="crm-custom-image-popup"><img style="max-width: 100%" src="' + $(this).attr('href') + '"></div>',
5fb83680
CW
1364 options: null
1365 });
1366 e.preventDefault();
475e9f44 1367 })
ebb9197b 1368
475e9f44
CW
1369 .on('click', function (event) {
1370 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
1371 if ($(event.target).is('.btn-slide')) {
1372 $(event.target).addClass('btn-slide-active').find('.panel').show();
1373 }
1374 })
d664f648 1375
4a143c04
CW
1376 // Handle clear button for form elements
1377 .on('click', 'a.crm-clear-link', function() {
9bce560a
CW
1378 $(this).css({visibility: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).trigger('change', ['crmClear']);
1379 $(this).siblings('input:text').val('').trigger('change', ['crmClear']);
4a143c04
CW
1380 return false;
1381 })
754affae 1382 .on('change keyup', 'input.crm-form-radio:checked, input[allowclear=1]', function(e, context) {
0c6fe5b5
CW
1383 if (context !== 'crmClear' && ($(this).is(':checked') || ($(this).is('[allowclear=1]') && $(this).val()))) {
1384 $(this).siblings('.crm-clear-link').css({visibility: ''});
1385 }
754affae
CW
1386 if (context !== 'crmClear' && $(this).is('[allowclear=1]') && $(this).val() === '') {
1387 $(this).siblings('.crm-clear-link').css({visibility: 'hidden'});
1388 }
843bfb07 1389 })
6a488035 1390
843bfb07 1391 // Allow normal clicking of links within accordions
25ce04ec 1392 .on('click.crmAccordions', 'div.crm-accordion-header a, .collapsible-title a', function (e) {
843bfb07 1393 e.stopPropagation();
cf021bc5 1394 })
843bfb07
CW
1395 // Handle accordions
1396 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e) {
16f4d319 1397 var action = 'open';
6a488035 1398 if ($(this).parent().hasClass('collapsed')) {
843bfb07 1399 $(this).next().css('display', 'none').slideDown(200);
6a488035
TO
1400 }
1401 else {
843bfb07 1402 $(this).next().css('display', 'block').slideUp(200);
16f4d319 1403 action = 'close';
6a488035 1404 }
16f4d319 1405 $(this).parent().toggleClass('collapsed').trigger('crmAccordion:' + action);
843bfb07 1406 e.preventDefault();
6a488035 1407 });
843bfb07
CW
1408
1409 $().crmtooltip();
1410 });
d5768733 1411
843bfb07
CW
1412 /**
1413 * Collapse or expand an accordion
1414 * @param speed
1415 */
0f5816a6
KJ
1416 $.fn.crmAccordionToggle = function (speed) {
1417 $(this).each(function () {
16f4d319 1418 var action = 'open';
6a488035
TO
1419 if ($(this).hasClass('collapsed')) {
1420 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed);
1421 }
1422 else {
1423 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed);
16f4d319 1424 action = 'close';
6a488035 1425 }
16f4d319 1426 $(this).toggleClass('collapsed').trigger('crmAccordion:' + action);
6a488035
TO
1427 });
1428 };
5ec182d9
CW
1429
1430 /**
1431 * Clientside currency formatting
e4762285 1432 * @param number value
e4f46be0 1433 * @param [optional] boolean onlyNumber - if true, we return formatted amount without currency sign
e4762285 1434 * @param [optional] string format - currency representation of the number 1234.56
5ec182d9
CW
1435 * @return string
1436 */
1437 var currencyTemplate;
7f92cfa9 1438 CRM.formatMoney = function(value, onlyNumber, format) {
5ec182d9
CW
1439 var decimal, separator, sign, i, j, result;
1440 if (value === 'init' && format) {
1441 currencyTemplate = format;
1442 return;
1443 }
1444 format = format || currencyTemplate;
1445 result = /1(.?)234(.?)56/.exec(format);
1446 if (result === null) {
1447 return 'Invalid format passed to CRM.formatMoney';
1448 }
1449 separator = result[1];
1450 decimal = result[2];
1451 sign = (value < 0) ? '-' : '';
1452 //extracting the absolute value of the integer part of the number and converting to string
1453 i = parseInt(value = Math.abs(value).toFixed(2)) + '';
5ec182d9
CW
1454 j = ((j = i.length) > 3) ? j % 3 : 0;
1455 result = sign + (j ? i.substr(0, j) + separator : '') + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + separator) + (2 ? decimal + Math.abs(value - i).toFixed(2).slice(2) : '');
567e9eea 1456 if ( onlyNumber ) {
1457 return result;
1458 }
5ec182d9
CW
1459 return format.replace(/1.*234.*56/, result);
1460 };
bba9b4f0 1461
5438399c
TO
1462 CRM.angRequires = function(name) {
1463 return CRM.angular.requires[name] || [];
1464 };
1465
bba9b4f0
CW
1466 CRM.console = function(method, title, msg) {
1467 if (window.console) {
1468 method = $.isFunction(console[method]) ? method : 'log';
1469 if (msg === undefined) {
1470 return console[method](title);
1471 } else {
1472 return console[method](title, msg);
1473 }
1474 }
e4762285 1475 };
90efc417 1476
6cfd220b
CW
1477 // Sugar methods for window.localStorage, with a fallback for older browsers
1478 var cacheItems = {};
1479 CRM.cache = {
1480 get: function (name, defaultValue) {
1481 try {
1482 if (localStorage.getItem('CRM' + name) !== null) {
1483 return JSON.parse(localStorage.getItem('CRM' + name));
1484 }
1485 } catch(e) {}
1486 return cacheItems[name] === undefined ? defaultValue : cacheItems[name];
1487 },
1488 set: function (name, value) {
1489 try {
1490 localStorage.setItem('CRM' + name, JSON.stringify(value));
1491 } catch(e) {}
1492 cacheItems[name] = value;
1493 },
1494 clear: function(name) {
1495 try {
1496 localStorage.removeItem('CRM' + name);
1497 } catch(e) {}
1498 delete cacheItems[name];
1499 }
1500 };
1501
1502
1503
90efc417
TO
1504 // Determine if a user has a given permission.
1505 // @see CRM_Core_Resources::addPermissions
1506 CRM.checkPerm = function(perm) {
3d6e14f0 1507 return CRM.permissions && CRM.permissions[perm];
90efc417 1508 };
2cfa1092
TO
1509
1510 // Round while preserving sigfigs
b24d5a1e 1511 CRM.utils.sigfig = function(n, digits) {
2cfa1092
TO
1512 var len = ("" + n).length;
1513 var scale = Math.pow(10.0, len-digits);
1514 return Math.round(n / scale) * scale;
1515 };
4cf9188e 1516
3c68de9d
CW
1517 // Create a js Date object from a unix timestamp or a yyyy-mm-dd string
1518 CRM.utils.makeDate = function(input) {
4cf9188e
CW
1519 switch (typeof input) {
1520 case 'object':
1521 // already a date object
3c68de9d 1522 return input;
4cf9188e
CW
1523
1524 case 'string':
d3cbd0a5
CW
1525 // convert iso format with or without dashes
1526 if (input.indexOf('-') > 0) {
1527 return $.datepicker.parseDate('yy-mm-dd', input.substr(0, 10));
1528 }
1529 return $.datepicker.parseDate('yymmdd', input.substr(0, 8));
4cf9188e
CW
1530
1531 case 'number':
1532 // convert unix timestamp
3c68de9d 1533 return new Date(input * 1000);
4cf9188e 1534 }
3c68de9d
CW
1535 throw 'Invalid input passed to CRM.utils.makeDate';
1536 };
1537
1538 // Format a date for output to the user
1539 // Input may be a js Date object, a unix timestamp or a yyyy-mm-dd string
1540 CRM.utils.formatDate = function(input, outputFormat) {
1541 return input ? $.datepicker.formatDate(outputFormat || CRM.config.dateInputFormat, CRM.utils.makeDate(input)) : '';
232785ea 1542 };
8cc43365
CW
1543
1544 // Used to set appropriate text color for a given background
1545 CRM.utils.colorContrast = function (hexcolor) {
1546 hexcolor = hexcolor.replace(/[ #]/g, '');
1547 var r = parseInt(hexcolor.substr(0, 2), 16),
1548 g = parseInt(hexcolor.substr(2, 2), 16),
1549 b = parseInt(hexcolor.substr(4, 2), 16),
1550 yiq = ((r * 299) + (g * 587) + (b * 114)) / 1000;
1551 return (yiq >= 128) ? 'black' : 'white';
1552 };
1553
279877e8
CW
1554 // CVE-2015-9251 - Prevent auto-execution of scripts when no explicit dataType was provided
1555 $.ajaxPrefilter(function(s) {
1556 if (s.crossDomain) {
1557 s.contents.script = false;
1558 }
1559 });
1560
4b513f23 1561})(jQuery, _);