Merge pull request #3730 from wellebee/CRM-12370
[civicrm-core.git] / js / Common.js
1 // https://civicrm.org/licensing
2 var CRM = CRM || {};
3 var cj = CRM.$ = jQuery;
4 CRM._ = _;
5
6 /**
7 * Short-named function for string translation, defined in global scope so it's available everywhere.
8 *
9 * @param text string for translating
10 * @param params object key:value of additional parameters
11 *
12 * @return string
13 */
14 function ts(text, params) {
15 "use strict";
16 text = CRM.strings[text] || text;
17 if (typeof(params) === 'object') {
18 for (var i in params) {
19 if (typeof(params[i]) === 'string' || typeof(params[i]) === 'number') {
20 // sprintf emulation: escape % characters in the replacements to avoid conflicts
21 text = text.replace(new RegExp('%' + i, 'g'), String(params[i]).replace(/%/g, '%-crmescaped-'));
22 }
23 }
24 return text.replace(/%-crmescaped-/g, '%');
25 }
26 return text;
27 }
28
29 /**
30 * This function is called by default at the bottom of template files which have forms that have
31 * conditionally displayed/hidden sections and elements. The PHP is responsible for generating
32 * a list of 'blocks to show' and 'blocks to hide' and the template passes these parameters to
33 * this function.
34 *
35 * @deprecated
36 * @param showBlocks Array of element Id's to be displayed
37 * @param hideBlocks Array of element Id's to be hidden
38 * @param elementType Value to set display style to for showBlocks (e.g. 'block' or 'table-row' or ...)
39 */
40 function on_load_init_blocks(showBlocks, hideBlocks, elementType) {
41 if (elementType == null) {
42 var elementType = 'block';
43 }
44
45 /* This loop is used to display the blocks whose IDs are present within the showBlocks array */
46 for (var i = 0; i < showBlocks.length; i++) {
47 var myElement = document.getElementById(showBlocks[i]);
48 /* getElementById returns null if element id doesn't exist in the document */
49 if (myElement != null) {
50 myElement.style.display = elementType;
51 }
52 else {
53 alert('showBlocks array item not in .tpl = ' + showBlocks[i]);
54 }
55 }
56
57 /* This loop is used to hide the blocks whose IDs are present within the hideBlocks array */
58 for (var i = 0; i < hideBlocks.length; i++) {
59 var myElement = document.getElementById(hideBlocks[i]);
60 /* getElementById returns null if element id doesn't exist in the document */
61 if (myElement != null) {
62 myElement.style.display = 'none';
63 }
64 else {
65 alert('showBlocks array item not in .tpl = ' + hideBlocks[i]);
66 }
67 }
68 }
69
70 /**
71 * This function is called when we need to show or hide a related form element (target_element)
72 * based on the value (trigger_value) of another form field (trigger_field).
73 *
74 * @deprecated
75 * @param trigger_field_id HTML id of field whose onchange is the trigger
76 * @param trigger_value List of integers - option value(s) which trigger show-element action for target_field
77 * @param target_element_id HTML id of element to be shown or hidden
78 * @param target_element_type Type of element to be shown or hidden ('block' or 'table-row')
79 * @param field_type Type of element radio/select
80 * @param invert Boolean - if true, we HIDE target on value match; if false, we SHOW target on value match
81 */
82 function showHideByValue(trigger_field_id, trigger_value, target_element_id, target_element_type, field_type, invert) {
83 if (target_element_type == null) {
84 var target_element_type = 'block';
85 }
86 else {
87 if (target_element_type == 'table-row') {
88 var target_element_type = '';
89 }
90 }
91
92 if (field_type == 'select') {
93 var trigger = trigger_value.split("|");
94 var selectedOptionValue = cj('#' + trigger_field_id).val();
95
96 var target = target_element_id.split("|");
97 for (var j = 0; j < target.length; j++) {
98 if (invert) {
99 cj('#' + target[j]).show();
100 }
101 else {
102 cj('#' + target[j]).hide();
103 }
104 for (var i = 0; i < trigger.length; i++) {
105 if (selectedOptionValue == trigger[i]) {
106 if (invert) {
107 cj('#' + target[j]).hide();
108 }
109 else {
110 cj('#' + target[j]).show();
111 }
112 }
113 }
114 }
115
116 }
117 else {
118 if (field_type == 'radio') {
119 var target = target_element_id.split("|");
120 for (var j = 0; j < target.length; j++) {
121 if (cj('[name="' + trigger_field_id + '"]:first').is(':checked')) {
122 if (invert) {
123 cj('#' + target[j]).hide();
124 }
125 else {
126 cj('#' + target[j]).show();
127 }
128 }
129 else {
130 if (invert) {
131 cj('#' + target[j]).show();
132 }
133 else {
134 cj('#' + target[j]).hide();
135 }
136 }
137 }
138 }
139 }
140 }
141
142 /**
143 * Function to change button text and disable one it is clicked
144 * @deprecated
145 * @param obj object - the button clicked
146 * @param formID string - the id of the form being submitted
147 * @param string procText - button text after user clicks it
148 * @return bool
149 */
150 var submitcount = 0;
151 /* Changes button label on submit, and disables button after submit for newer browsers.
152 Puts up alert for older browsers. */
153 function submitOnce(obj, formId, procText) {
154 // if named button clicked, change text
155 if (obj.value != null) {
156 obj.value = procText + " ...";
157 }
158 if (document.getElementById) { // disable submit button for newer browsers
159 obj.disabled = true;
160 document.getElementById(formId).submit();
161 return true;
162 }
163 else { // for older browsers
164 if (submitcount == 0) {
165 submitcount++;
166 return true;
167 }
168 else {
169 alert("Your request is currently being processed ... Please wait.");
170 return false;
171 }
172 }
173 }
174
175 /**
176 * Function to show / hide the row in optionFields
177 * @deprecated
178 * @param index string, element whose innerHTML is to hide else will show the hidden row.
179 */
180 function showHideRow(index) {
181 if (index) {
182 cj('tr#optionField_' + index).hide();
183 if (cj('table#optionField tr:hidden:first').length) {
184 cj('div#optionFieldLink').show();
185 }
186 }
187 else {
188 cj('table#optionField tr:hidden:first').show();
189 if (!cj('table#optionField tr:hidden:last').length) {
190 cj('div#optionFieldLink').hide();
191 }
192 }
193 return false;
194 }
195
196 CRM.utils = CRM.utils || {};
197 CRM.strings = CRM.strings || {};
198
199 (function ($, _, undefined) {
200 "use strict";
201
202 // Theme classes for unattached elements
203 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container';
204
205 // https://github.com/ivaynberg/select2/pull/2090
206 $.fn.select2.defaults.width = 'resolve';
207
208 // Workaround for https://github.com/ivaynberg/select2/issues/1246
209 $.ui.dialog.prototype._allowInteraction = function(e) {
210 return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop').length;
211 };
212
213 /**
214 * Populate a select list, overwriting the existing options except for the placeholder.
215 * @param $el jquery collection - 1 or more select elements
216 * @param options array in format returned by api.getoptions
217 * @param removePlaceholder bool
218 */
219 CRM.utils.setOptions = function($el, options, removePlaceholder) {
220 $el.each(function() {
221 var
222 $elect = $(this),
223 val = $elect.val() || [],
224 opts = removePlaceholder ? '' : '[value!=""]';
225 if (!$.isArray(val)) {
226 val = [val];
227 }
228 $elect.find('option' + opts).remove();
229 _.each(options, function(option) {
230 var selected = ($.inArray(''+option.key, val) > -1) ? 'selected="selected"' : '';
231 $elect.append('<option value="' + option.key + '"' + selected + '>' + option.value + '</option>');
232 });
233 $elect.trigger('crmOptionsUpdated', $.extend({}, options)).trigger('change');
234 });
235 };
236
237 /**
238 * Compare Form Input values against cached initial value.
239 *
240 * @return {Boolean} true if changes have been made.
241 */
242 CRM.utils.initialValueChanged = function(el) {
243 var isDirty = false;
244 $(':input:visible, .select2-container:visible+:input.select2-offscreen', el).not('[type=submit], [type=button], .crm-action-menu').each(function () {
245 var initialValue = $(this).data('crm-initial-value');
246 // skip change of value for submit buttons
247 if (initialValue !== undefined && !_.isEqual(initialValue, $(this).val())) {
248 isDirty = true;
249 }
250 });
251 return isDirty;
252 };
253
254 /**
255 * Wrapper for toggle function which is deprecated in from jQuery 1.8;
256 * @param fn1,fn2 handlers
257 */
258
259 $.fn.toggleClick = function( fn1, fn2 ) {
260 // Don't mess with animation or css toggles
261 if ( !$.isFunction( fn1 ) || !$.isFunction( fn2 ) ) {
262 return;
263 }
264 // migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
265 // Save reference to arguments for access in closure
266 var args = arguments,
267 guid = fn1.guid || $.guid++,
268 i = 0,
269 toggler = function( event ) {
270 // Figure out which function to execute
271 var lastToggle = ( $._data( this, "lastToggle" + fn1.guid ) || 0 ) % i;
272 $._data( this, "lastToggle" + fn1.guid, lastToggle + 1 );
273 // Make sure that clicks stop
274 event.preventDefault();
275 // and execute the function
276 return args[ lastToggle ].apply( this, arguments ) || false;
277 };
278 // link all the functions, so any of them can unbind this click handler
279 toggler.guid = guid;
280 while ( i < args.length ) {
281 args[ i++ ].guid = guid;
282 }
283 return this.click( toggler );
284 };
285
286 /**
287 * Wrapper for select2 initialization function; supplies defaults
288 * @param options object
289 */
290 $.fn.crmSelect2 = function(options) {
291 return $(this).each(function () {
292 var
293 $el = $(this),
294 settings = {allowClear: !$el.hasClass('required')};
295 // quickform doesn't support optgroups so here's a hack :(
296 $('option[value^=crm_optgroup]', this).each(function () {
297 $(this).nextUntil('option[value^=crm_optgroup]').wrapAll('<optgroup label="' + $(this).text() + '" />');
298 $(this).remove();
299 });
300 // Defaults for single-selects
301 if ($el.is('select:not([multiple])')) {
302 settings.minimumResultsForSearch = 10;
303 if ($('option:first', this).val() === '') {
304 settings.placeholderOption = 'first';
305 }
306 }
307 $.extend(settings, $el.data('select-params') || {}, options || {});
308 if (settings.ajax) {
309 $el.addClass('crm-ajax-select');
310 }
311 $el.select2(settings);
312 });
313 };
314
315 /**
316 * @see CRM_Core_Form::addEntityRef for docs
317 * @param options object
318 */
319 $.fn.crmEntityRef = function(options) {
320 options = options || {};
321 options.select = options.select || {};
322 return $(this).each(function() {
323 var
324 $el = $(this).off('.crmEntity'),
325 entity = options.entity || $el.data('api-entity') || 'contact',
326 selectParams = {};
327 $el.data('api-entity', entity);
328 $el.data('select-params', $.extend({}, $el.data('select-params') || {}, options.select));
329 $el.data('api-params', $.extend({}, $el.data('api-params') || {}, options.api));
330 $el.data('create-links', options.create || $el.data('create-links'));
331 $el.addClass('crm-form-entityref crm-' + entity + '-ref');
332 var settings = {
333 // Use select2 ajax helper instead of CRM.api because it provides more value
334 ajax: {
335 url: CRM.url('civicrm/ajax/rest'),
336 data: function (input, page_num) {
337 var params = $el.data('api-params') || {};
338 params.input = input;
339 params.page_num = page_num;
340 return {
341 entity: $el.data('api-entity'),
342 action: 'getlist',
343 json: JSON.stringify(params)
344 };
345 },
346 results: function(data) {
347 return {more: data.more_results, results: data.values || []};
348 }
349 },
350 minimumInputLength: 1,
351 formatResult: CRM.utils.formatSelect2Result,
352 formatSelection: function(row) {
353 return row.label;
354 },
355 escapeMarkup: function (m) {return m;},
356 initSelection: function($el, callback) {
357 var
358 multiple = !!$el.data('select-params').multiple,
359 val = $el.val(),
360 stored = $el.data('entity-value') || [];
361 if (val === '') {
362 return;
363 }
364 // If we already have this data, just return it
365 if (!_.xor(val.split(','), _.pluck(stored, 'id')).length) {
366 callback(multiple ? stored : stored[0]);
367 } else {
368 var params = $.extend({}, $el.data('api-params') || {}, {id: val});
369 CRM.api3($el.data('api-entity'), 'getlist', params).done(function(result) {
370 callback(multiple ? result.values : result.values[0]);
371 // Trigger change (store data to avoid an infinite loop of lookups)
372 $el.data('entity-value', result.values).trigger('change');
373 });
374 }
375 }
376 };
377 if ($el.data('create-links') && entity.toLowerCase() === 'contact') {
378 selectParams.formatInputTooShort = function() {
379 var txt = $el.data('select-params').formatInputTooShort || $.fn.select2.defaults.formatInputTooShort.call(this);
380 if ($el.data('create-links') && CRM.profileCreate) {
381 txt += ' ' + ts('or') + '<br />' + formatSelect2CreateLinks($el);
382 }
383 return txt;
384 };
385 selectParams.formatNoMatches = function() {
386 var txt = $el.data('select-params').formatNoMatches || $.fn.select2.defaults.formatNoMatches;
387 return txt + (CRM.profileCreate ? ('<br />' + formatSelect2CreateLinks($el)) : '');
388 };
389 $el.on('select2-open.crmEntity', function() {
390 var $el = $(this);
391 $('#select2-drop').off('.crmEntity').on('click.crmEntity', 'a.crm-add-entity', function(e) {
392 $el.select2('close');
393 CRM.loadForm($(this).attr('href'), {
394 dialog: {width: 500, height: 'auto'}
395 }).on('crmFormSuccess', function(e, data) {
396 if (data.status === 'success' && data.id) {
397 CRM.status(ts('%1 Created', {1: data.label}));
398 if ($el.select2('container').hasClass('select2-container-multi')) {
399 var selection = $el.select2('data');
400 selection.push(data);
401 $el.select2('data', selection, true);
402 } else {
403 $el.select2('data', data, true);
404 }
405 }
406 });
407 return false;
408 });
409 });
410 }
411 // Create new items inline - works for tags
412 else if ($el.data('create-links')) {
413 selectParams.createSearchChoice = function(term, data) {
414 if (!_.findKey(data, {label: term})) {
415 return {id: "0", term: term, label: term + ' (' + ts('new tag') + ')'};
416 }
417 };
418 selectParams.tokenSeparators = [','];
419 selectParams.createSearchChoicePosition = 'bottom';
420 }
421 $el.crmSelect2($.extend(settings, $el.data('select-params'), selectParams))
422 .on('select2-selecting.crmEntity', function(e) {
423 if (e.val === "0") {
424 e.object.label = e.object.term;
425 CRM.api3(entity, 'create', $.extend({name: e.object.term}, $el.data('api-params').params || {}))
426 .done(function(created) {
427 var
428 multiple = !!$el.data('select-params').multiple,
429 val = $el.select2('val'),
430 data = $el.select2('data'),
431 item = {id: created.id, label: e.object.term};
432 if (val === "0") {
433 $el.select2('data', item, true);
434 }
435 else if ($.isArray(val) && $.inArray("0", val) > -1) {
436 _.remove(data, {id: "0"});
437 data.push(item);
438 $el.select2('data', data, true);
439 }
440 });
441 }
442 });
443 });
444 };
445
446 CRM.utils.formatSelect2Result = function (row) {
447 var markup = '<div class="crm-select2-row">';
448 if (row.image !== undefined) {
449 markup += '<div class="crm-select2-image"><img src="' + row.image + '"/></div>';
450 }
451 else if (row.icon_class) {
452 markup += '<div class="crm-select2-icon"><div class="crm-icon ' + row.icon_class + '-icon"></div></div>';
453 }
454 markup += '<div><div class="crm-select2-row-label '+(row.label_class || '')+'">' + row.label + '</div>';
455 markup += '<div class="crm-select2-row-description">';
456 $.each(row.description || [], function(k, text) {
457 markup += '<p>' + text + '</p>';
458 });
459 markup += '</div></div></div>';
460 return markup;
461 };
462
463 function formatSelect2CreateLinks($el) {
464 var
465 createLinks = $el.data('create-links'),
466 api = $el.data('api-params') || {},
467 type = api.params ? api.params.contact_type : null;
468 if (createLinks === true) {
469 createLinks = type ? _.where(CRM.profileCreate, {type: type}) : CRM.profileCreate;
470 }
471 var markup = '';
472 _.each(createLinks, function(link) {
473 markup += ' <a class="crm-add-entity crm-hover-button" href="' + link.url + '">';
474 if (link.type) {
475 markup += '<span class="icon ' + link.type + '-profile-icon"></span> ';
476 }
477 markup += link.label + '</a>';
478 });
479 return markup;
480 }
481
482 /**
483 * Wrapper for jQuery validate initialization function; supplies defaults
484 * @param options object
485 */
486 $.fn.crmValidate = function(params) {
487 return $(this).each(function () {
488 var that = this,
489 settings = $.extend({}, CRM.validate._defaults, CRM.validate.params);
490 $(this).validate(settings);
491 // Call any post-initialization callbacks
492 if (CRM.validate.functions && CRM.validate.functions.length) {
493 $.each(CRM.validate.functions, function(i, func) {
494 func.call(that);
495 });
496 }
497 });
498 }
499
500 // Initialize widgets
501 $(document)
502 .on('crmLoad', function(e) {
503 $('table.row-highlight', e.target)
504 .off('.rowHighlight')
505 .on('change.rowHighlight', 'input.select-row, input.select-rows', function (e, data) {
506 var filter, $table = $(this).closest('table');
507 if ($(this).hasClass('select-rows')) {
508 filter = $(this).prop('checked') ? ':not(:checked)' : ':checked';
509 $('input.select-row' + filter, $table).prop('checked', $(this).prop('checked')).trigger('change', 'master-selected');
510 }
511 else {
512 $(this).closest('tr').toggleClass('crm-row-selected', $(this).prop('checked'));
513 if (data !== 'master-selected') {
514 $('input.select-rows', $table).prop('checked', $(".select-row:not(':checked')", $table).length < 1);
515 }
516 }
517 })
518 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
519 if ($("input:radio[name=radio_ts]").size() == 1) {
520 $("input:radio[name=radio_ts]").prop("checked", true);
521 }
522 $('.crm-select2:not(.select2-offscreen, .select2-container)', e.target).crmSelect2();
523 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e.target).crmEntityRef();
524 // Cache Form Input initial values
525 $('form[data-warn-changes] :input', e.target).each(function() {
526 $(this).data('crm-initial-value', $(this).val());
527 });
528 })
529 .on('dialogopen', function(e) {
530 var $el = $(e.target);
531 // Modal dialogs should disable scrollbars
532 if ($el.dialog('option', 'modal')) {
533 $el.addClass('modal-dialog');
534 $('body').css({overflow: 'hidden'});
535 }
536 $el.parent().find('.ui-dialog-titlebar-close').attr('title', ts('Close'));
537 // Add resize button
538 if ($el.parent().hasClass('crm-container') && $el.dialog('option', 'resizable')) {
539 $el.parent().find('.ui-dialog-titlebar').append($('<button class="crm-dialog-titlebar-resize ui-dialog-titlebar-close" title="'+ts('Toggle fullscreen')+'" style="right:2em;"/>').button({icons: {primary: 'ui-icon-newwin'}, text: false}));
540 $('.crm-dialog-titlebar-resize', $el.parent()).click(function(e) {
541 if ($el.data('origSize')) {
542 $el.dialog('option', $el.data('origSize'));
543 $el.data('origSize', null);
544 } else {
545 $el.data('origSize', {
546 position: {my: 'center', at: 'center', of: window},
547 width: $el.dialog('option', 'width'),
548 height: $el.dialog('option', 'height')
549 });
550 var menuHeight = $('#civicrm-menu').height();
551 $el.dialog('option', {width: '100%', height: ($(window).height() - menuHeight), position: {my: "top", at: "top+"+menuHeight, of: window}});
552 }
553 e.preventDefault();
554 });
555 }
556 })
557 .on('dialogclose', function(e) {
558 // Restore scrollbars when closing modal
559 if ($('.ui-dialog .modal-dialog:visible').not(e.target).length < 1) {
560 $('body').css({overflow: ''});
561 }
562 })
563 .on('submit', function(e) {
564 // CRM-14353 - disable changes warn when submitting a form
565 $('[data-warn-changes]').attr('data-warn-changes', 'false');
566 })
567 ;
568
569 // CRM-14353 - Warn of unsaved changes for forms which have opted in
570 window.onbeforeunload = function() {
571 if (CRM.utils.initialValueChanged($('form[data-warn-changes=true]:visible'))) {
572 return ts('You have unsaved changes.');
573 }
574 };
575
576 /**
577 * Function to make multiselect boxes behave as fields in small screens
578 */
579 function advmultiselectResize() {
580 var amswidth = $("#crm-container form:has(table.advmultiselect)").width();
581 if (amswidth < 700) {
582 $("form table.advmultiselect td").css('display', 'block');
583 }
584 else {
585 $("form table.advmultiselect td").css('display', 'table-cell');
586 }
587 var contactwidth = $('#crm-container #mainTabContainer').width();
588 if (contactwidth < 600) {
589 $('#crm-container #mainTabContainer').addClass('narrowpage');
590 $('#crm-container #mainTabContainer.narrowpage #contactTopBar td').each(function (index) {
591 if (index > 1) {
592 if (index % 2 == 0) {
593 $(this).parent().after('<tr class="narrowadded"></tr>');
594 }
595 var item = $(this);
596 $(this).parent().next().append(item);
597 }
598 });
599 }
600 else {
601 $('#crm-container #mainTabContainer.narrowpage').removeClass('narrowpage');
602 $('#crm-container #mainTabContainer #contactTopBar tr.narrowadded td').each(function () {
603 var nitem = $(this);
604 var parent = $(this).parent();
605 $(this).parent().prev().append(nitem);
606 if (parent.children().size() == 0) {
607 parent.remove();
608 }
609 });
610 $('#crm-container #mainTabContainer.narrowpage #contactTopBar tr.added').detach();
611 }
612 var cformwidth = $('#crm-container #Contact .contact_basic_information-section').width();
613
614 if (cformwidth < 720) {
615 $('#crm-container .contact_basic_information-section').addClass('narrowform');
616 $('#crm-container .contact_basic_information-section table.form-layout-compressed td .helpicon').parent().addClass('hashelpicon');
617 if (cformwidth < 480) {
618 $('#crm-container .contact_basic_information-section').addClass('xnarrowform');
619 }
620 else {
621 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
622 }
623 }
624 else {
625 $('#crm-container .contact_basic_information-section.narrowform').removeClass('narrowform');
626 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
627 }
628 }
629
630 advmultiselectResize();
631 $(window).resize(function () {
632 advmultiselectResize();
633 });
634
635 $.fn.crmtooltip = function () {
636 $(document)
637 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e) {
638 $(this).addClass('crm-processed');
639 $(this).addClass('crm-tooltip-active');
640 var topDistance = e.pageY - $(window).scrollTop();
641 if (topDistance < 300 | topDistance < $(this).children('.crm-tooltip-wrapper').height()) {
642 $(this).addClass('crm-tooltip-down');
643 }
644 if (!$(this).children('.crm-tooltip-wrapper').length) {
645 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
646 $(this).children().children('.crm-tooltip')
647 .html('<div class="crm-loading-element"></div>')
648 .load(this.href);
649 }
650 })
651 .on('mouseout', 'a.crm-summary-link', function () {
652 $(this).removeClass('crm-processed');
653 $(this).removeClass('crm-tooltip-active crm-tooltip-down');
654 })
655 .on('click', 'a.crm-summary-link', false);
656 };
657
658 var helpDisplay, helpPrevious;
659 CRM.help = function (title, params, url) {
660 if (helpDisplay && helpDisplay.close) {
661 // If the same link is clicked twice, just close the display - todo use underscore method for this comparison
662 if (helpDisplay.isOpen && helpPrevious === JSON.stringify(params)) {
663 helpDisplay.close();
664 return;
665 }
666 helpDisplay.close();
667 }
668 helpPrevious = JSON.stringify(params);
669 params.class_name = 'CRM_Core_Page_Inline_Help';
670 params.type = 'page';
671 helpDisplay = CRM.alert('...', title, 'crm-help crm-msg-loading', {expires: 0});
672 $.ajax(url || CRM.url('civicrm/ajax/inline'),
673 {
674 data: params,
675 dataType: 'html',
676 success: function (data) {
677 $('#crm-notification-container .crm-help .notify-content:last').html(data);
678 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
679 },
680 error: function () {
681 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
682 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
683 }
684 }
685 );
686 };
687 /**
688 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
689 */
690 CRM.status = function(options, deferred) {
691 // 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.
692 if (typeof options === 'string') {
693 return CRM.status({start: options, success: options, error: options})[deferred === 'error' ? 'reject' : 'resolve']();
694 }
695 var opts = $.extend({
696 start: ts('Saving...'),
697 success: ts('Saved'),
698 error: function() {
699 CRM.alert(ts('Sorry an error occurred and your information was not saved'), ts('Error'));
700 }
701 }, options || {});
702 var $msg = $('<div class="crm-status-box-outer status-start"><div class="crm-status-box-inner"><div class="crm-status-box-msg">' + opts.start + '</div></div></div>')
703 .appendTo('body');
704 $msg.css('min-width', $msg.width());
705 function handle(status, data) {
706 var endMsg = typeof(opts[status]) === 'function' ? opts[status](data) : opts[status];
707 if (endMsg) {
708 $msg.removeClass('status-start').addClass('status-' + status).find('.crm-status-box-msg').html(endMsg);
709 window.setTimeout(function() {
710 $msg.fadeOut('slow', function() {$msg.remove()});
711 }, 2000);
712 } else {
713 $msg.remove();
714 }
715 }
716 return (deferred || new $.Deferred())
717 .done(function(data) {
718 // If the server returns an error msg call the error handler
719 var status = $.isPlainObject(data) && (data.is_error || data.status === 'error') ? 'error' : 'success';
720 handle(status, data);
721 })
722 .fail(function(data) {
723 handle('error', data);
724 });
725 };
726
727 /**
728 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
729 */
730 CRM.alert = function (text, title, type, options) {
731 type = type || 'alert';
732 title = title || '';
733 options = options || {};
734 if ($('#crm-notification-container').length) {
735 var params = {
736 text: text,
737 title: title,
738 type: type
739 };
740 // By default, don't expire errors and messages containing links
741 var extra = {
742 expires: (type == 'error' || text.indexOf('<a ') > -1) ? 0 : (text ? 10000 : 5000),
743 unique: true
744 };
745 options = $.extend(extra, options);
746 options.expires = options.expires === false ? 0 : parseInt(options.expires, 10);
747 if (options.unique && options.unique !== '0') {
748 $('#crm-notification-container .ui-notify-message').each(function () {
749 if (title === $('h1', this).html() && text === $('.notify-content', this).html()) {
750 $('.icon.ui-notify-close', this).click();
751 }
752 });
753 }
754 return $('#crm-notification-container').notify('create', params, options);
755 }
756 else {
757 if (title.length) {
758 text = title + "\n" + text;
759 }
760 alert(text);
761 return null;
762 }
763 };
764
765 /**
766 * Close whichever alert contains the given node
767 *
768 * @param node
769 */
770 CRM.closeAlertByChild = function (node) {
771 $(node).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
772 };
773
774 /**
775 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
776 */
777 CRM.confirm = function (options) {
778 var dialog, settings = {
779 title: ts('Confirm'),
780 message: ts('Are you sure you want to continue?'),
781 width: 'auto',
782 modal: true,
783 resizable: false,
784 dialogClass: 'crm-container crm-confirm',
785 close: function () {
786 $(this).dialog('destroy').remove();
787 },
788 options: {
789 no: ts('Cancel'),
790 yes: ts('Continue')
791 }
792 };
793 $.extend(settings, ($.isFunction(options) ? arguments[1] : options) || {});
794 if (!settings.buttons && $.isPlainObject(settings.options)) {
795 settings.buttons = [];
796 $.each(settings.options, function(key, label) {
797 settings.buttons.push({
798 text: label,
799 click: function() {
800 var event = $.Event('crmConfirm:' + key);
801 $(this).trigger(event);
802 if (!event.isDefaultPrevented()) {
803 dialog.dialog('close');
804 }
805 }
806 });
807 });
808 }
809 dialog = $('<div class="crm-confirm-dialog"></div>').html(settings.message);
810 delete settings.options;
811 delete settings.message;
812 if ($.isFunction(options)) {
813 dialog.on('crmConfirm:yes', options);
814 }
815 return dialog.dialog(settings).trigger('crmLoad');
816 };
817
818 /** provides a local copy of ts for a domain */
819 CRM.ts = function(domain) {
820 return function(message, options) {
821 if (domain) {
822 options = $.extend(options || {}, {domain: domain});
823 }
824 return ts(message, options);
825 };
826 };
827
828 /**
829 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
830 */
831 $.fn.crmError = function (text, title, options) {
832 title = title || '';
833 text = text || '';
834 options = options || {};
835
836 var extra = {
837 expires: 0
838 };
839 if ($(this).length) {
840 if (title == '') {
841 var label = $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
842 if (label.length) {
843 label.addClass('crm-error');
844 var $label = label.clone();
845 if (text == '' && $('.crm-marker', $label).length > 0) {
846 text = $('.crm-marker', $label).attr('title');
847 }
848 $('.crm-marker', $label).remove();
849 title = $label.text();
850 }
851 }
852 $(this).addClass('error');
853 }
854 var msg = CRM.alert(text, title, 'error', $.extend(extra, options));
855 if ($(this).length) {
856 var ele = $(this);
857 setTimeout(function () {
858 ele.one('change', function () {
859 msg && msg.close && msg.close();
860 ele.removeClass('error');
861 label.removeClass('crm-error');
862 });
863 }, 1000);
864 }
865 return msg;
866 };
867
868 // Display system alerts through js notifications
869 function messagesFromMarkup() {
870 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
871 var text, title = '';
872 $(this).removeClass('status messages');
873 var type = $(this).attr('class').split(' ')[0] || 'alert';
874 type = type.replace('crm-', '');
875 $('.icon', this).remove();
876 if ($('.msg-text', this).length > 0) {
877 text = $('.msg-text', this).html();
878 title = $('.msg-title', this).html();
879 }
880 else {
881 text = $(this).html();
882 }
883 var options = $(this).data('options') || {};
884 $(this).remove();
885 // Duplicates were already removed server-side
886 options.unique = false;
887 CRM.alert(text, title, type, options);
888 });
889 // Handle qf form errors
890 $('form :input.error', this).one('blur', function() {
891 $('.ui-notify-message.error a.ui-notify-close').click();
892 $(this).removeClass('error');
893 $(this).next('span.crm-error').remove();
894 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
895 .removeClass('crm-error')
896 .find('.crm-error').removeClass('crm-error');
897 });
898 }
899
900 // Preprocess all cj ajax calls to display messages
901 $(document).ajaxSuccess(function(event, xhr, settings) {
902 try {
903 if ((!settings.dataType || settings.dataType == 'json') && xhr.responseText) {
904 var response = $.parseJSON(xhr.responseText);
905 if (typeof(response.crmMessages) == 'object') {
906 $.each(response.crmMessages, function(n, msg) {
907 CRM.alert(msg.text, msg.title, msg.type, msg.options);
908 })
909 }
910 }
911 }
912 // Suppress errors
913 catch (e) {}
914 });
915
916 $(function () {
917 $.blockUI.defaults.message = null;
918
919 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
920 $('.crm-container').trigger('crmLoad');
921
922 if ($('#crm-notification-container').length) {
923 // Initialize notifications
924 $('#crm-notification-container').notify();
925 messagesFromMarkup.call($('#crm-container'));
926 }
927
928 $('body')
929 // bind the event for image popup
930 .on('click', 'a.crm-image-popup', function(e) {
931 CRM.confirm({
932 title: ts('Preview'),
933 resizable: true,
934 message: '<div class="crm-custom-image-popup"><img src=' + $(this).attr('href') + '></div>',
935 options: null
936 });
937 e.preventDefault();
938 })
939
940 .on('click', function (event) {
941 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
942 if ($(event.target).is('.btn-slide')) {
943 $(event.target).addClass('btn-slide-active').find('.panel').show();
944 }
945 })
946
947 // Handle clear button for form elements
948 .on('click', 'a.crm-clear-link', function() {
949 $(this).css({visibility: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).change();
950 $(this).siblings('input:text').val('').change();
951 return false;
952 })
953 .on('change', 'input.crm-form-radio:checked', function() {
954 $(this).siblings('.crm-clear-link').css({visibility: ''});
955 })
956
957 // Allow normal clicking of links within accordions
958 .on('click.crmAccordions', 'div.crm-accordion-header a', function (e) {
959 e.stopPropagation();
960 })
961 // Handle accordions
962 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e) {
963 if ($(this).parent().hasClass('collapsed')) {
964 $(this).next().css('display', 'none').slideDown(200);
965 }
966 else {
967 $(this).next().css('display', 'block').slideUp(200);
968 }
969 $(this).parent().toggleClass('collapsed');
970 e.preventDefault();
971 });
972
973 $().crmtooltip();
974 });
975 /**
976 * @deprecated
977 */
978 $.fn.crmAccordions = function () {};
979 /**
980 * Collapse or expand an accordion
981 * @param speed
982 */
983 $.fn.crmAccordionToggle = function (speed) {
984 $(this).each(function () {
985 if ($(this).hasClass('collapsed')) {
986 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed);
987 }
988 else {
989 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed);
990 }
991 $(this).toggleClass('collapsed');
992 });
993 };
994
995 /**
996 * Clientside currency formatting
997 * @param value
998 * @param format - currency representation of the number 1234.56
999 * @return string
1000 * @see CRM_Core_Resources::addCoreResources
1001 */
1002 var currencyTemplate;
1003 CRM.formatMoney = function(value, format) {
1004 var decimal, separator, sign, i, j, result;
1005 if (value === 'init' && format) {
1006 currencyTemplate = format;
1007 return;
1008 }
1009 format = format || currencyTemplate;
1010 result = /1(.?)234(.?)56/.exec(format);
1011 if (result === null) {
1012 return 'Invalid format passed to CRM.formatMoney';
1013 }
1014 separator = result[1];
1015 decimal = result[2];
1016 sign = (value < 0) ? '-' : '';
1017 //extracting the absolute value of the integer part of the number and converting to string
1018 i = parseInt(value = Math.abs(value).toFixed(2)) + '';
1019 j = ((j = i.length) > 3) ? j % 3 : 0;
1020 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) : '');
1021 return format.replace(/1.*234.*56/, result);
1022 };
1023 })(jQuery, _);