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