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