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