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