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