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