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