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