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