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