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