Merge pull request #7289 from eileenmcnaughton/CRM-16929-partial
[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 } else {
562 $('.crm-entityref-links', '#select2-drop').replaceWith(renderEntityRefCreateLinks($el));
563 }
564 })
565 .on('change.crmEntity', 'select.crm-entityref-filter-key', function() {
566 var filter = {key: $(this).val()};
567 $(this).toggleClass('active', !!filter.key);
568 $el.data('user-filter', filter);
569 loadEntityRefFilterOptions($el);
570 });
571 });
572 }
573 $el.crmSelect2($.extend(settings, $el.data('select-params'), selectParams));
574 });
575 };
576
577 /**
578 * Combine api-params with user-filter
579 * @param $el
580 * @returns {*}
581 */
582 function getEntityRefApiParams($el) {
583 var
584 params = $.extend({params: {}}, $el.data('api-params') || {}),
585 // Prevent original data from being modified - $.extend and _.clone don't cut it, they pass nested objects by reference!
586 combined = _.cloneDeep(params),
587 filter = $.extend({}, $el.data('user-filter') || {});
588 if (filter.key && filter.value) {
589 // Special case for contact type/sub-type combo
590 if (filter.key === 'contact_type' && (filter.value.indexOf('__') > 0)) {
591 combined.params.contact_type = filter.value.split('__')[0];
592 combined.params.contact_sub_type = filter.value.split('__')[1];
593 } else {
594 // Allow json-encoded api filters e.g. {"BETWEEN":[123,456]}
595 combined.params[filter.key] = filter.value.charAt(0) === '{' ? $.parseJSON(filter.value) : filter.value;
596 }
597 }
598 return combined;
599 }
600
601 function copyAttributes($source, $target, attributes) {
602 _.each(attributes, function(name) {
603 if ($source.attr(name)) {
604 $target.attr(name, $source.attr(name));
605 }
606 });
607 }
608
609 /**
610 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/crmDatepicker
611 */
612 $.fn.crmDatepicker = function(options) {
613 return $(this).each(function() {
614 if ($(this).is('.crm-form-date-wrapper .crm-hidden-date')) {
615 // Already initialized
616 return;
617 }
618 var
619 $dataField = $(this).wrap('<span class="crm-form-date-wrapper" />'),
620 settings = $.extend({}, $dataField.data('datepicker') || {}, options || {}),
621 $dateField = $(),
622 $timeField = $(),
623 $clearLink = $();
624
625 if (settings.allowClear !== undefined ? settings.allowClear : !$dataField.is('.required, [required]')) {
626 $clearLink = $('<a class="crm-hover-button crm-clear-link" title="'+ ts('Clear') +'"><i class="crm-i fa-times"></i></a>')
627 .insertAfter($dataField);
628 }
629 if (settings.time !== false) {
630 $timeField = $('<input>').insertAfter($dataField);
631 copyAttributes($dataField, $timeField, ['class', 'disabled']);
632 $timeField
633 .addClass('crm-form-text crm-form-time')
634 .attr('placeholder', $dataField.attr('time-placeholder') === undefined ? ts('Time') : $dataField.attr('time-placeholder'))
635 .change(updateDataField)
636 .timeEntry({
637 spinnerImage: '',
638 show24Hours: settings.time === true || settings.time === undefined ? CRM.config.timeIs24Hr : settings.time == '24'
639 });
640 }
641 if (settings.date !== false) {
642 $dateField = $('<input>').insertAfter($dataField);
643 copyAttributes($dataField, $dateField, ['placeholder', 'style', 'class', 'disabled']);
644 $dateField.addClass('crm-form-text crm-form-date');
645 settings.date = typeof settings.date === 'string' ? settings.date : CRM.config.dateInputFormat;
646 settings.changeMonth = _.includes('m', settings.date);
647 settings.changeYear = _.includes('y', settings.date);
648 $dateField.datepicker(settings).change(updateDataField);
649 }
650 // Rudimentary validation. TODO: Roll into use of jQUery validate and ui.datepicker.validation
651 function isValidDate() {
652 try {
653 $.datepicker.parseDate(settings.date, $dateField.val());
654 return true;
655 } catch (e) {
656 return false;
657 }
658 }
659 function updateInputFields(e, context) {
660 var val = $dataField.val(),
661 time = null;
662 if (context !== 'userInput' && context !== 'crmClear') {
663 if ($dateField.length) {
664 $dateField.datepicker('setDate', _.includes(val, '-') ? $.datepicker.parseDate('yy-mm-dd', val) : null);
665 }
666 if ($timeField.length) {
667 if (val.length === 8) {
668 time = val;
669 } else if (val.length === 19) {
670 time = val.split(' ')[1];
671 }
672 $timeField.timeEntry('setTime', time);
673 }
674 }
675 $clearLink.css('visibility', val ? 'visible' : 'hidden');
676 }
677 function updateDataField(e, context) {
678 // The crmClear event wipes all the field values anyway, so no need to respond
679 if (context !== 'crmClear') {
680 var val = '';
681 if ($dateField.val()) {
682 if (isValidDate()) {
683 val = $.datepicker.formatDate('yy-mm-dd', $dateField.datepicker('getDate'));
684 $dateField.removeClass('crm-error');
685 } else {
686 $dateField.addClass('crm-error');
687 }
688 }
689 if ($timeField.val()) {
690 val += (val ? ' ' : '') + $timeField.timeEntry('getTime').toTimeString().substr(0, 8);
691 }
692 $dataField.val(val).trigger('change', ['userInput']);
693 }
694 }
695 $dataField.hide().addClass('crm-hidden-date').on('change', updateInputFields);
696 updateInputFields();
697 });
698 };
699
700 $.fn.crmAjaxTable = function() {
701 return $(this).each(function() {
702 //Declare the defaults for DataTables
703 var defaults = {
704 "processing": true,
705 "serverSide": true,
706 "dom": '<"crm-datatable-pager-top"lfp>rt<"crm-datatable-pager-bottom"ip>',
707 "pageLength": 25,
708 "drawCallback": function(settings) {
709 //Add data attributes to cells
710 $('thead th', settings.nTable).each( function( index ) {
711 $.each(this.attributes, function() {
712 if(this.name.match("^cell-")) {
713 var cellAttr = this.name.substring(5);
714 var cellValue = this.value;
715 $('tbody tr', settings.nTable).each( function() {
716 $('td:eq('+ index +')', this).attr( cellAttr, cellValue );
717 });
718 }
719 });
720 });
721 //Reload table after draw
722 $(settings.nTable).trigger('crmLoad');
723 }
724 };
725 //Include any table specific data
726 var settings = $.extend(true, defaults, $(this).data('table'));
727 //Make the DataTables call
728 $(this).DataTable(settings);
729 });
730 };
731
732 CRM.utils.formatSelect2Result = function (row) {
733 var markup = '<div class="crm-select2-row">';
734 if (row.image !== undefined) {
735 markup += '<div class="crm-select2-image"><img src="' + row.image + '"/></div>';
736 }
737 else if (row.icon_class) {
738 markup += '<div class="crm-select2-icon"><div class="crm-icon ' + row.icon_class + '-icon"></div></div>';
739 }
740 markup += '<div><div class="crm-select2-row-label '+(row.label_class || '')+'">' +
741 (row.prefix !== undefined ? row.prefix + ' ' : '') + row.label + (row.suffix !== undefined ? ' ' + row.suffix : '') +
742 '</div>' +
743 '<div class="crm-select2-row-description">';
744 $.each(row.description || [], function(k, text) {
745 markup += '<p>' + text + '</p>';
746 });
747 markup += '</div></div></div>';
748 return markup;
749 };
750
751 function renderEntityRefCreateLinks($el) {
752 var
753 createLinks = $el.data('create-links'),
754 params = getEntityRefApiParams($el).params,
755 markup = '<div class="crm-entityref-links">';
756 if (!createLinks || $el.data('api-entity').toLowerCase() !== 'contact') {
757 return '';
758 }
759 if (createLinks === true) {
760 createLinks = params.contact_type ? _.where(CRM.config.entityRef.contactCreate, {type: params.contact_type}) : CRM.config.entityRef.contactCreate;
761 }
762 _.each(createLinks, function(link) {
763 var icon;
764 switch (link.type) {
765 case 'Individual':
766 icon = 'fa-user';
767 break;
768
769 case 'Organization':
770 icon = 'fa-building';
771 break;
772
773 case 'Household':
774 icon = 'fa-home';
775 break;
776 }
777 markup += ' <a class="crm-add-entity crm-hover-button" href="' + link.url + '">';
778 if (icon) {
779 markup += '<i class="crm-i ' + icon + '"></i> ';
780 }
781 markup += link.label + '</a>';
782 });
783 markup += '</div>';
784 return markup;
785 }
786
787 function getEntityRefFilters($el) {
788 var
789 entity = $el.data('api-entity').toLowerCase(),
790 filters = $.extend([], CRM.config.entityRef.filters[entity] || []),
791 filter = $el.data('user-filter') || {},
792 params = $.extend({params: {}}, $el.data('api-params') || {}).params,
793 result = [];
794 $.each(filters, function() {
795 if (typeof params[this.key] === 'undefined') {
796 result.push(this);
797 }
798 else if (this.key == 'contact_type' && typeof params.contact_sub_type === 'undefined') {
799 this.options = _.remove(this.options, function(option) {
800 return option.key.indexOf(params.contact_type + '__') === 0;
801 });
802 result.push(this);
803 }
804 });
805 return result;
806 }
807
808 function renderEntityRefFilters($el) {
809 var
810 filters = getEntityRefFilters($el),
811 filter = $el.data('user-filter') || {},
812 filterSpec = filter.key ? _.find(filters, {key: filter.key}) : null;
813 if (!filters.length) {
814 return '';
815 }
816 var markup = '<div class="crm-entityref-filters">' +
817 '<select class="crm-entityref-filter-key' + (filter.key ? ' active' : '') + '">' +
818 '<option value="">' + ts('Refine search...') + '</option>' +
819 CRM.utils.renderOptions(filters, filter.key) +
820 '</select> &nbsp; ' +
821 '<select class="crm-entityref-filter-value' + (filter.key ? ' active"' : '"') + (filter.key ? '' : ' style="display:none;"') + '>' +
822 '<option value="">' + ts('- select -') + '</option>';
823 if (filterSpec && filterSpec.options) {
824 markup += CRM.utils.renderOptions(filterSpec.options, filter.value);
825 }
826 markup += '</select></div>';
827 return markup;
828 }
829
830 /**
831 * Fetch options for a filter (via ajax if necessary) and populate the appropriate select list
832 * @param $el
833 */
834 function loadEntityRefFilterOptions($el) {
835 var
836 filters = getEntityRefFilters($el),
837 filter = $el.data('user-filter') || {},
838 filterSpec = filter.key ? _.find(filters, {key: filter.key}) : null,
839 $valField = $('.crm-entityref-filter-value', '#select2-drop');
840 if (filterSpec) {
841 $valField.show().val('');
842 if (filterSpec.options) {
843 CRM.utils.setOptions($valField, filterSpec.options, false, filter.value);
844 } else {
845 $valField.prop('disabled', true);
846 CRM.api3(filterSpec.entity || $el.data('api-entity'), 'getoptions', {field: filter.key, context: 'search', sequential: 1})
847 .done(function(result) {
848 var entity = $el.data('api-entity').toLowerCase(),
849 globalFilterSpec = _.find(CRM.config.entityRef.filters[entity], {key: filter.key}) || {};
850 // Store options globally so we don't have to look them up again
851 globalFilterSpec.options = result.values;
852 $valField.prop('disabled', false);
853 CRM.utils.setOptions($valField, result.values);
854 $valField.val(filter.value || '');
855 });
856 }
857 } else {
858 $valField.hide().val('').change();
859 }
860 }
861
862 //CRM-15598 - Override url validator method to allow relative url's (e.g. /index.htm)
863 $.validator.addMethod("url", function(value, element) {
864 if (/^\//.test(value)) {
865 // Relative url: prepend dummy path for validation.
866 value = 'http://domain.tld' + value;
867 }
868 // From jQuery Validation Plugin v1.12.0
869 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);
870 });
871
872 /**
873 * Wrapper for jQuery validate initialization function; supplies defaults
874 */
875 $.fn.crmValidate = function(params) {
876 return $(this).each(function () {
877 var that = this,
878 settings = $.extend({}, CRM.validate._defaults, CRM.validate.params);
879 $(this).validate(settings);
880 // Call any post-initialization callbacks
881 if (CRM.validate.functions && CRM.validate.functions.length) {
882 $.each(CRM.validate.functions, function(i, func) {
883 func.call(that);
884 });
885 }
886 });
887 };
888
889 // Initialize widgets
890 $(document)
891 .on('crmLoad', function(e) {
892 $('table.row-highlight', e.target)
893 .off('.rowHighlight')
894 .on('change.rowHighlight', 'input.select-row, input.select-rows', function (e, data) {
895 var filter, $table = $(this).closest('table');
896 if ($(this).hasClass('select-rows')) {
897 filter = $(this).prop('checked') ? ':not(:checked)' : ':checked';
898 $('input.select-row' + filter, $table).prop('checked', $(this).prop('checked')).trigger('change', 'master-selected');
899 }
900 else {
901 $(this).closest('tr').toggleClass('crm-row-selected', $(this).prop('checked'));
902 if (data !== 'master-selected') {
903 $('input.select-rows', $table).prop('checked', $(".select-row:not(':checked')", $table).length < 1);
904 }
905 }
906 })
907 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
908 $('table.crm-sortable', e.target).DataTable();
909 $('table.crm-ajax-table', e.target).each(function() {
910 var
911 $table = $(this),
912 $accordion = $table.closest('.crm-accordion-wrapper.collapsed, .crm-collapsible.collapsed');
913 // For tables hidden by collapsed accordions, wait.
914 if ($accordion.length) {
915 $accordion.one('crmAccordion:open', function() {
916 $table.crmAjaxTable();
917 });
918 } else {
919 $table.crmAjaxTable();
920 }
921 });
922 if ($("input:radio[name=radio_ts]").size() == 1) {
923 $("input:radio[name=radio_ts]").prop("checked", true);
924 }
925 $('.crm-select2:not(.select2-offscreen, .select2-container)', e.target).crmSelect2();
926 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e.target).crmEntityRef();
927 $('select.crm-chain-select-control', e.target).off('.chainSelect').on('change.chainSelect', chainSelect);
928 // Cache Form Input initial values
929 $('form[data-warn-changes] :input', e.target).each(function() {
930 $(this).data('crm-initial-value', $(this).is(':checkbox, :radio') ? $(this).prop('checked') : $(this).val());
931 });
932 $('textarea.crm-form-wysiwyg', e.target).each(function() {
933 if ($(this).hasClass("collapsed")) {
934 CRM.wysiwyg.createCollapsed(this);
935 } else {
936 CRM.wysiwyg.create(this);
937 }
938 });
939 })
940 .on('dialogopen', function(e) {
941 var $el = $(e.target);
942 // Modal dialogs should disable scrollbars
943 if ($el.dialog('option', 'modal')) {
944 $el.addClass('modal-dialog');
945 $('body').css({overflow: 'hidden'});
946 }
947 $el.parent().find('.ui-dialog-titlebar .ui-icon-closethick').removeClass('ui-icon-closethick').addClass('fa-times');
948 // Add resize button
949 if ($el.parent().hasClass('crm-container') && $el.dialog('option', 'resizable')) {
950 $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}));
951 $('.crm-dialog-titlebar-resize', $el.parent()).click(function(e) {
952 if ($el.data('origSize')) {
953 $el.dialog('option', $el.data('origSize'));
954 $el.data('origSize', null);
955 } else {
956 var menuHeight = $('#civicrm-menu').outerHeight();
957 $el.data('origSize', {
958 position: {my: 'center', at: 'center center+' + (menuHeight / 2), of: window},
959 width: $el.dialog('option', 'width'),
960 height: $el.dialog('option', 'height')
961 });
962 $el.dialog('option', {width: '100%', height: ($(window).height() - menuHeight), position: {my: "top", at: "top+"+menuHeight, of: window}});
963 }
964 $el.trigger('dialogresize');
965 e.preventDefault();
966 });
967 }
968 })
969 .on('dialogclose', function(e) {
970 // Restore scrollbars when closing modal
971 if ($('.ui-dialog .modal-dialog:visible').not(e.target).length < 1) {
972 $('body').css({overflow: ''});
973 }
974 })
975 .on('submit', function(e) {
976 // CRM-14353 - disable changes warn when submitting a form
977 $('[data-warn-changes]').attr('data-warn-changes', 'false');
978 });
979
980 // CRM-14353 - Warn of unsaved changes for forms which have opted in
981 window.onbeforeunload = function() {
982 if (CRM.utils.initialValueChanged($('form[data-warn-changes=true]:visible'))) {
983 return ts('You have unsaved changes.');
984 }
985 };
986
987 $.fn.crmtooltip = function () {
988 $(document)
989 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e) {
990 $(this).addClass('crm-processed crm-tooltip-active');
991 var topDistance = e.pageY - $(window).scrollTop();
992 if (topDistance < 300 || topDistance < $(this).children('.crm-tooltip-wrapper').height()) {
993 $(this).addClass('crm-tooltip-down');
994 }
995 if (!$(this).children('.crm-tooltip-wrapper').length) {
996 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
997 $(this).children().children('.crm-tooltip')
998 .html('<div class="crm-loading-element"></div>')
999 .load(this.href);
1000 }
1001 })
1002 .on('mouseout', 'a.crm-summary-link', function () {
1003 $(this).removeClass('crm-processed crm-tooltip-active crm-tooltip-down');
1004 })
1005 .on('click', 'a.crm-summary-link', false);
1006 };
1007
1008 var helpDisplay, helpPrevious;
1009 CRM.help = function (title, params, url) {
1010 if (helpDisplay && helpDisplay.close) {
1011 // If the same link is clicked twice, just close the display - todo use underscore method for this comparison
1012 if (helpDisplay.isOpen && helpPrevious === JSON.stringify(params)) {
1013 helpDisplay.close();
1014 return;
1015 }
1016 helpDisplay.close();
1017 }
1018 helpPrevious = JSON.stringify(params);
1019 params.class_name = 'CRM_Core_Page_Inline_Help';
1020 params.type = 'page';
1021 helpDisplay = CRM.alert('...', title, 'crm-help crm-msg-loading', {expires: 0});
1022 $.ajax(url || CRM.url('civicrm/ajax/inline'),
1023 {
1024 data: params,
1025 dataType: 'html',
1026 success: function (data) {
1027 $('#crm-notification-container .crm-help .notify-content:last').html(data);
1028 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
1029 },
1030 error: function () {
1031 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
1032 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
1033 }
1034 }
1035 );
1036 };
1037 /**
1038 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1039 */
1040 CRM.status = function(options, deferred) {
1041 // 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.
1042 if (typeof options === 'string') {
1043 return CRM.status({start: options, success: options, error: options})[deferred === 'error' ? 'reject' : 'resolve']();
1044 }
1045 var opts = $.extend({
1046 start: ts('Saving...'),
1047 success: ts('Saved'),
1048 error: function(data) {
1049 var msg = $.isPlainObject(data) && data.error_message;
1050 CRM.alert(msg || ts('Sorry an error occurred and your information was not saved'), ts('Error'), 'error');
1051 }
1052 }, options || {});
1053 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>')
1054 .appendTo('body');
1055 $msg.css('min-width', $msg.width());
1056 function handle(status, data) {
1057 var endMsg = typeof(opts[status]) === 'function' ? opts[status](data) : opts[status];
1058 if (endMsg) {
1059 $msg.removeClass('status-start').addClass('status-' + status).find('.crm-status-box-msg').html(endMsg);
1060 window.setTimeout(function() {
1061 $msg.fadeOut('slow', function() {
1062 $msg.remove();
1063 });
1064 }, 2000);
1065 } else {
1066 $msg.remove();
1067 }
1068 }
1069 return (deferred || new $.Deferred())
1070 .done(function(data) {
1071 // If the server returns an error msg call the error handler
1072 var status = $.isPlainObject(data) && (data.is_error || data.status === 'error') ? 'error' : 'success';
1073 handle(status, data);
1074 })
1075 .fail(function(data) {
1076 handle('error', data);
1077 });
1078 };
1079
1080 // Convert an Angular promise to a jQuery promise
1081 CRM.toJqPromise = function(aPromise) {
1082 var jqDeferred = $.Deferred();
1083 aPromise.then(
1084 function(data) { jqDeferred.resolve(data); },
1085 function(data) { jqDeferred.reject(data); }
1086 // should we also handle progress events?
1087 );
1088 return jqDeferred.promise();
1089 };
1090
1091 CRM.toAPromise = function($q, jqPromise) {
1092 var aDeferred = $q.defer();
1093 jqPromise.then(
1094 function(data) { aDeferred.resolve(data); },
1095 function(data) { aDeferred.reject(data); }
1096 // should we also handle progress events?
1097 );
1098 return aDeferred.promise;
1099 };
1100
1101 /**
1102 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1103 */
1104 CRM.alert = function (text, title, type, options) {
1105 type = type || 'alert';
1106 title = title || '';
1107 options = options || {};
1108 if ($('#crm-notification-container').length) {
1109 var params = {
1110 text: text,
1111 title: title,
1112 type: type
1113 };
1114 // By default, don't expire errors and messages containing links
1115 var extra = {
1116 expires: (type == 'error' || text.indexOf('<a ') > -1) ? 0 : (text ? 10000 : 5000),
1117 unique: true
1118 };
1119 options = $.extend(extra, options);
1120 options.expires = options.expires === false ? 0 : parseInt(options.expires, 10);
1121 if (options.unique && options.unique !== '0') {
1122 $('#crm-notification-container .ui-notify-message').each(function () {
1123 if (title === $('h1', this).html() && text === $('.notify-content', this).html()) {
1124 $('.icon.ui-notify-close', this).click();
1125 }
1126 });
1127 }
1128 return $('#crm-notification-container').notify('create', params, options);
1129 }
1130 else {
1131 if (title.length) {
1132 text = title + "\n" + text;
1133 }
1134 alert(text);
1135 return null;
1136 }
1137 };
1138
1139 /**
1140 * Close whichever alert contains the given node
1141 *
1142 * @param node
1143 */
1144 CRM.closeAlertByChild = function (node) {
1145 $(node).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
1146 };
1147
1148 /**
1149 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1150 */
1151 CRM.confirm = function (options) {
1152 var dialog, url, msg, buttons = [], settings = {
1153 title: ts('Confirm'),
1154 message: ts('Are you sure you want to continue?'),
1155 url: null,
1156 width: 'auto',
1157 height: 'auto',
1158 resizable: false,
1159 dialogClass: 'crm-container crm-confirm',
1160 close: function () {
1161 $(this).dialog('destroy').remove();
1162 },
1163 options: {
1164 no: ts('Cancel'),
1165 yes: ts('Continue')
1166 }
1167 };
1168 if (options && options.url) {
1169 settings.resizable = true;
1170 settings.height = '50%';
1171 }
1172 $.extend(settings, ($.isFunction(options) ? arguments[1] : options) || {});
1173 settings = CRM.utils.adjustDialogDefaults(settings);
1174 if (!settings.buttons && $.isPlainObject(settings.options)) {
1175 $.each(settings.options, function(op, label) {
1176 buttons.push({
1177 text: label,
1178 'data-op': op,
1179 icons: {primary: op === 'no' ? 'fa-times' : 'fa-check'},
1180 click: function() {
1181 var event = $.Event('crmConfirm:' + op);
1182 $(this).trigger(event);
1183 if (!event.isDefaultPrevented()) {
1184 dialog.dialog('close');
1185 }
1186 }
1187 });
1188 });
1189 // Order buttons so that "no" goes on the right-hand side
1190 settings.buttons = _.sortBy(buttons, 'data-op').reverse();
1191 }
1192 url = settings.url;
1193 msg = url ? '' : settings.message;
1194 delete settings.options;
1195 delete settings.message;
1196 delete settings.url;
1197 dialog = $('<div class="crm-confirm-dialog"></div>').html(msg || '').dialog(settings);
1198 if ($.isFunction(options)) {
1199 dialog.on('crmConfirm:yes', options);
1200 }
1201 if (url) {
1202 CRM.loadPage(url, {target: dialog});
1203 }
1204 else {
1205 dialog.trigger('crmLoad');
1206 }
1207 return dialog;
1208 };
1209
1210 /** provides a local copy of ts for a domain */
1211 CRM.ts = function(domain) {
1212 return function(message, options) {
1213 if (domain) {
1214 options = $.extend(options || {}, {domain: domain});
1215 }
1216 return ts(message, options);
1217 };
1218 };
1219
1220 CRM.addStrings = function(domain, strings) {
1221 var bucket = (domain == 'civicrm' ? 'strings' : 'strings::' + domain);
1222 CRM[bucket] = CRM[bucket] || {};
1223 _.extend(CRM[bucket], strings);
1224 };
1225
1226 /**
1227 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1228 */
1229 $.fn.crmError = function (text, title, options) {
1230 title = title || '';
1231 text = text || '';
1232 options = options || {};
1233
1234 var extra = {
1235 expires: 0
1236 };
1237 if ($(this).length) {
1238 if (title === '') {
1239 var label = $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
1240 if (label.length) {
1241 label.addClass('crm-error');
1242 var $label = label.clone();
1243 if (text === '' && $('.crm-marker', $label).length > 0) {
1244 text = $('.crm-marker', $label).attr('title');
1245 }
1246 $('.crm-marker', $label).remove();
1247 title = $label.text();
1248 }
1249 }
1250 $(this).addClass('crm-error');
1251 }
1252 var msg = CRM.alert(text, title, 'error', $.extend(extra, options));
1253 if ($(this).length) {
1254 var ele = $(this);
1255 setTimeout(function () {
1256 ele.one('change', function () {
1257 if (msg && msg.close) msg.close();
1258 ele.removeClass('error');
1259 label.removeClass('crm-error');
1260 });
1261 }, 1000);
1262 }
1263 return msg;
1264 };
1265
1266 // Display system alerts through js notifications
1267 function messagesFromMarkup() {
1268 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
1269 var text, title = '';
1270 $(this).removeClass('status messages');
1271 var type = $(this).attr('class').split(' ')[0] || 'alert';
1272 type = type.replace('crm-', '');
1273 $('.icon', this).remove();
1274 if ($('.msg-text', this).length > 0) {
1275 text = $('.msg-text', this).html();
1276 title = $('.msg-title', this).html();
1277 }
1278 else {
1279 text = $(this).html();
1280 }
1281 var options = $(this).data('options') || {};
1282 $(this).remove();
1283 // Duplicates were already removed server-side
1284 options.unique = false;
1285 CRM.alert(text, title, type, options);
1286 });
1287 // Handle qf form errors
1288 $('form :input.error', this).one('blur', function() {
1289 $('.ui-notify-message.error a.ui-notify-close').click();
1290 $(this).removeClass('error');
1291 $(this).next('span.crm-error').remove();
1292 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
1293 .removeClass('crm-error')
1294 .find('.crm-error').removeClass('crm-error');
1295 });
1296 }
1297
1298 /**
1299 * Improve blockUI when used with jQuery dialog
1300 */
1301 var originalBlock = $.fn.block,
1302 originalUnblock = $.fn.unblock;
1303
1304 $.fn.block = function(opts) {
1305 if ($(this).is('.ui-dialog-content')) {
1306 originalBlock.call($(this).parents('.ui-dialog'), opts);
1307 return $(this);
1308 }
1309 return originalBlock.call(this, opts);
1310 };
1311 $.fn.unblock = function(opts) {
1312 if ($(this).is('.ui-dialog-content')) {
1313 originalUnblock.call($(this).parents('.ui-dialog'), opts);
1314 return $(this);
1315 }
1316 return originalUnblock.call(this, opts);
1317 };
1318
1319 // Preprocess all CRM ajax calls to display messages
1320 $(document).ajaxSuccess(function(event, xhr, settings) {
1321 try {
1322 if ((!settings.dataType || settings.dataType == 'json') && xhr.responseText) {
1323 var response = $.parseJSON(xhr.responseText);
1324 if (typeof(response.crmMessages) == 'object') {
1325 $.each(response.crmMessages, function(n, msg) {
1326 CRM.alert(msg.text, msg.title, msg.type, msg.options);
1327 });
1328 }
1329 if (response.backtrace) {
1330 CRM.console('log', response.backtrace);
1331 }
1332 if (typeof response.deprecated === 'string') {
1333 CRM.console('warn', response.deprecated);
1334 }
1335 }
1336 }
1337 // Ignore errors thrown by parseJSON
1338 catch (e) {}
1339 });
1340
1341 $(function () {
1342 $.blockUI.defaults.message = null;
1343 $.blockUI.defaults.ignoreIfBlocked = true;
1344
1345 if ($('#crm-container').hasClass('crm-public')) {
1346 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container crm-public';
1347 }
1348
1349 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
1350 $('.crm-container').trigger('crmLoad');
1351
1352 if ($('#crm-notification-container').length) {
1353 // Initialize notifications
1354 $('#crm-notification-container').notify();
1355 messagesFromMarkup.call($('#crm-container'));
1356 }
1357
1358 $('body')
1359 // bind the event for image popup
1360 .on('click', 'a.crm-image-popup', function(e) {
1361 CRM.confirm({
1362 title: ts('Preview'),
1363 resizable: true,
1364 // Prevent overlap with the menubar
1365 maxHeight: $(window).height() - 30,
1366 position: {my: 'center', at: 'center center+15', of: window},
1367 message: '<div class="crm-custom-image-popup"><img style="max-width: 100%" src="' + $(this).attr('href') + '"></div>',
1368 options: null
1369 });
1370 e.preventDefault();
1371 })
1372
1373 .on('click', function (event) {
1374 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
1375 if ($(event.target).is('.btn-slide')) {
1376 $(event.target).addClass('btn-slide-active').find('.panel').show();
1377 }
1378 })
1379
1380 // Handle clear button for form elements
1381 .on('click', 'a.crm-clear-link', function() {
1382 $(this).css({visibility: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).trigger('change', ['crmClear']);
1383 $(this).siblings('input:text').val('').trigger('change', ['crmClear']);
1384 return false;
1385 })
1386 .on('change', 'input.crm-form-radio:checked', function() {
1387 $(this).siblings('.crm-clear-link').css({visibility: ''});
1388 })
1389
1390 // Allow normal clicking of links within accordions
1391 .on('click.crmAccordions', 'div.crm-accordion-header a', function (e) {
1392 e.stopPropagation();
1393 })
1394 // Handle accordions
1395 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e) {
1396 var action = 'open';
1397 if ($(this).parent().hasClass('collapsed')) {
1398 $(this).next().css('display', 'none').slideDown(200);
1399 }
1400 else {
1401 $(this).next().css('display', 'block').slideUp(200);
1402 action = 'close';
1403 }
1404 $(this).parent().toggleClass('collapsed').trigger('crmAccordion:' + action);
1405 e.preventDefault();
1406 });
1407
1408 $().crmtooltip();
1409 });
1410
1411 /**
1412 * Collapse or expand an accordion
1413 * @param speed
1414 */
1415 $.fn.crmAccordionToggle = function (speed) {
1416 $(this).each(function () {
1417 var action = 'open';
1418 if ($(this).hasClass('collapsed')) {
1419 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed);
1420 }
1421 else {
1422 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed);
1423 action = 'close';
1424 }
1425 $(this).toggleClass('collapsed').trigger('crmAccordion:' + action);
1426 });
1427 };
1428
1429 /**
1430 * Clientside currency formatting
1431 * @param number value
1432 * @param [optional] boolean onlyNumber - if true, we return formatted amount without currency sign
1433 * @param [optional] string format - currency representation of the number 1234.56
1434 * @return string
1435 */
1436 var currencyTemplate;
1437 CRM.formatMoney = function(value, onlyNumber, format) {
1438 var decimal, separator, sign, i, j, result;
1439 if (value === 'init' && format) {
1440 currencyTemplate = format;
1441 return;
1442 }
1443 format = format || currencyTemplate;
1444 result = /1(.?)234(.?)56/.exec(format);
1445 if (result === null) {
1446 return 'Invalid format passed to CRM.formatMoney';
1447 }
1448 separator = result[1];
1449 decimal = result[2];
1450 sign = (value < 0) ? '-' : '';
1451 //extracting the absolute value of the integer part of the number and converting to string
1452 i = parseInt(value = Math.abs(value).toFixed(2)) + '';
1453 j = ((j = i.length) > 3) ? j % 3 : 0;
1454 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) : '');
1455 if ( onlyNumber ) {
1456 return result;
1457 }
1458 return format.replace(/1.*234.*56/, result);
1459 };
1460
1461 CRM.console = function(method, title, msg) {
1462 if (window.console) {
1463 method = $.isFunction(console[method]) ? method : 'log';
1464 if (msg === undefined) {
1465 return console[method](title);
1466 } else {
1467 return console[method](title, msg);
1468 }
1469 }
1470 };
1471
1472 // Determine if a user has a given permission.
1473 // @see CRM_Core_Resources::addPermissions
1474 CRM.checkPerm = function(perm) {
1475 return CRM.permissions[perm];
1476 };
1477
1478 // Round while preserving sigfigs
1479 CRM.utils.sigfig = function(n, digits) {
1480 var len = ("" + n).length;
1481 var scale = Math.pow(10.0, len-digits);
1482 return Math.round(n / scale) * scale;
1483 };
1484
1485 // Create a js Date object from a unix timestamp or a yyyy-mm-dd string
1486 CRM.utils.makeDate = function(input) {
1487 switch (typeof input) {
1488 case 'object':
1489 // already a date object
1490 return input;
1491
1492 case 'string':
1493 // convert iso format
1494 return $.datepicker.parseDate('yy-mm-dd', input.substr(0, 10));
1495
1496 case 'number':
1497 // convert unix timestamp
1498 return new Date(input * 1000);
1499 }
1500 throw 'Invalid input passed to CRM.utils.makeDate';
1501 };
1502
1503 // Format a date for output to the user
1504 // Input may be a js Date object, a unix timestamp or a yyyy-mm-dd string
1505 CRM.utils.formatDate = function(input, outputFormat) {
1506 return input ? $.datepicker.formatDate(outputFormat || CRM.config.dateInputFormat, CRM.utils.makeDate(input)) : '';
1507 };
1508 })(jQuery, _);