Merge pull request #2797 from colemanw/master
[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 + '"]').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 CRM.validate = CRM.validate || {
199 params: {},
200 functions: []
201 };
202
203 (function ($, _, undefined) {
204 "use strict";
205
206 // Theme classes for unattached elements
207 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container';
208
209 // https://github.com/ivaynberg/select2/pull/2090
210 $.fn.select2.defaults.width = 'resolve';
211
212 // Workaround for https://github.com/ivaynberg/select2/issues/1246
213 $.ui.dialog.prototype._allowInteraction = function(e) {
214 return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop').length;
215 };
216
217 /**
218 * Populate a select list, overwriting the existing options except for the placeholder.
219 * @param $el jquery collection - 1 or more select elements
220 * @param options array in format returned by api.getoptions
221 * @param removePlaceholder bool
222 */
223 CRM.utils.setOptions = function($el, options, removePlaceholder) {
224 $el.each(function() {
225 var
226 $elect = $(this),
227 val = $elect.val() || [],
228 opts = removePlaceholder ? '' : '[value!=""]';
229 if (typeof(val) !== 'array') {
230 val = [val];
231 }
232 $elect.find('option' + opts).remove();
233 _.each(options, function(option) {
234 var selected = ($.inArray(''+option.key, val) > -1) ? 'selected="selected"' : '';
235 $elect.append('<option value="' + option.key + '"' + selected + '>' + option.value + '</option>');
236 });
237 $elect.trigger('crmOptionsUpdated', $.extend({}, options)).trigger('change');
238 });
239 };
240
241 /**
242 * Wrapper for select2 initialization function; supplies defaults
243 * @param options object
244 */
245 $.fn.crmSelect2 = function(options) {
246 return $(this).each(function () {
247 var
248 $el = $(this),
249 settings = {allowClear: !$el.hasClass('required')};
250 // quickform doesn't support optgroups so here's a hack :(
251 $('option[value^=crm_optgroup]', this).each(function () {
252 $(this).nextUntil('option[value^=crm_optgroup]').wrapAll('<optgroup label="' + $(this).text() + '" />');
253 $(this).remove();
254 });
255 // Defaults for single-selects
256 if ($el.is('select:not([multiple])')) {
257 settings.minimumResultsForSearch = 10;
258 if ($('option:first', this).val() === '') {
259 settings.placeholderOption = 'first';
260 }
261 }
262 $.extend(settings, $el.data('select-params') || {}, options || {});
263 if (settings.ajax) {
264 $el.addClass('crm-ajax-select');
265 }
266 $el.select2(settings);
267 });
268 };
269
270 /**
271 * @see CRM_Core_Form::addEntityRef for docs
272 * @param options object
273 */
274 $.fn.crmEntityRef = function(options) {
275 options = options || {};
276 options.select = options.select || {};
277 return $(this).each(function() {
278 var
279 $el = $(this),
280 entity = options.entity || $el.data('api-entity') || 'contact',
281 selectParams = {};
282 $el.data('api-entity', entity);
283 $el.data('select-params', $.extend({}, $el.data('select-params') || {}, options.select));
284 $el.data('api-params', $.extend({}, $el.data('api-params') || {}, options.api));
285 $el.data('create-links', options.create || $el.data('create-links'));
286 $el.addClass('crm-form-entityref crm-' + entity + '-ref');
287 var settings = {
288 // Use select2 ajax helper instead of CRM.api because it provides more value
289 ajax: {
290 url: CRM.url('civicrm/ajax/rest'),
291 data: function (input, page_num) {
292 var params = $el.data('api-params') || {};
293 params.input = input;
294 params.page_num = page_num;
295 return {
296 entity: $el.data('api-entity'),
297 action: 'getlist',
298 json: JSON.stringify(params)
299 };
300 },
301 results: function(data) {
302 return {more: data.more_results, results: data.values || []};
303 }
304 },
305 minimumInputLength: 1,
306 formatResult: formatSelect2Result,
307 formatSelection: function(row) {
308 return row.label;
309 },
310 escapeMarkup: function (m) {return m;},
311 initSelection: function($el, callback) {
312 var
313 multiple = !!$el.data('select-params').multiple,
314 val = $el.val(),
315 stored = $el.data('entity-value') || [];
316 if (val === '') {
317 return;
318 }
319 // If we already have this data, just return it
320 if (!_.xor(val.split(','), _.pluck(stored, 'id')).length) {
321 callback(multiple ? stored : stored[0]);
322 } else {
323 var params = $.extend({}, $el.data('api-params') || {}, {id: val});
324 CRM.api3($el.data('api-entity'), 'getlist', params).done(function(result) {
325 callback(multiple ? result.values : result.values[0])
326 });
327 }
328 }
329 };
330 if ($el.data('create-links')) {
331 selectParams.formatInputTooShort = function() {
332 var txt = $el.data('select-params').formatInputTooShort || $.fn.select2.defaults.formatInputTooShort.call(this);
333 if ($el.data('create-links')) {
334 txt += ' ' + ts('or') + '<br />' + formatSelect2CreateLinks($el);
335 }
336 return txt;
337 };
338 selectParams.formatNoMatches = function() {
339 var txt = $el.data('select-params').formatNoMatches || $.fn.select2.defaults.formatNoMatches;
340 return txt + '<br />' + formatSelect2CreateLinks($el);
341 };
342 $el.off('.createLinks').on('select2-open.createLinks', function() {
343 var $el = $(this);
344 $('#select2-drop').off('.crmEntity').on('click.crmEntity', 'a.crm-add-entity', function(e) {
345 $el.select2('close');
346 CRM.loadForm($(this).attr('href'), {
347 dialog: {width: 500, height: 'auto'}
348 }).on('crmFormSuccess', function(e, data) {
349 if (data.status === 'success' && data.id) {
350 CRM.status(ts('%1 Created', {1: data.label}));
351 if ($el.select2('container').hasClass('select2-container-multi')) {
352 var selection = $el.select2('data');
353 selection.push(data);
354 $el.select2('data', selection, true);
355 } else {
356 $el.select2('data', data, true);
357 }
358 }
359 });
360 return false;
361 });
362 });
363 }
364 $el.crmSelect2($.extend(settings, $el.data('select-params'), selectParams));
365 });
366 };
367
368 function formatSelect2Result(row) {
369 var markup = '<div class="crm-select2-row">';
370 if (row.image !== undefined) {
371 markup += '<div class="crm-select2-image"><img src="' + row.image + '"/></div>';
372 }
373 else if (row.icon_class) {
374 markup += '<div class="crm-select2-icon"><div class="crm-icon ' + row.icon_class + '-icon"></div></div>';
375 }
376 markup += '<div><div class="crm-select2-row-label">' + row.label + '</div>';
377 markup += '<div class="crm-select2-row-description">';
378 $.each(row.description || [], function(k, text) {
379 markup += '<p>' + text + '</p>';
380 });
381 markup += '</div></div></div>';
382 return markup;
383 }
384
385 function formatSelect2CreateLinks($el) {
386 var
387 createLinks = $el.data('create-links'),
388 api = $el.data('api-params') || {},
389 type = api.params ? api.params.contact_type : null;
390 if (createLinks === true) {
391 createLinks = type ? _.where(CRM.profile.contactCreate, {type: type}) : CRM.profile.contactCreate;
392 }
393 var markup = '';
394 _.each(createLinks, function(link) {
395 markup += ' <a class="crm-add-entity crm-hover-button" href="' + link.url + '">';
396 if (link.type) {
397 markup += '<span class="icon ' + link.type + '-profile-icon"></span> ';
398 }
399 markup += link.label + '</a>';
400 });
401 return markup;
402 }
403
404 // Initialize widgets
405 $(document)
406 .on('crmLoad', function(e) {
407 $('table.row-highlight', e.target)
408 .off('.rowHighlight')
409 .on('change.rowHighlight', 'input.select-row, input.select-rows', function () {
410 var target, table = $(this).closest('table');
411 if ($(this).hasClass('select-rows')) {
412 target = $('tbody tr', table);
413 $('input.select-row', table).prop('checked', $(this).prop('checked'));
414 }
415 else {
416 target = $(this).closest('tr');
417 $('input.select-rows', table).prop('checked', $(".select-row:not(':checked')", table).length < 1);
418 }
419 target.toggleClass('crm-row-selected', $(this).is(':checked'));
420 })
421 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
422 $('.crm-select2:not(.select2-offscreen, .select2-container)', e.target).crmSelect2();
423 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e.target).crmEntityRef();
424 })
425 .on('dialogopen', function(e) {
426 var $el = $(e.target);
427 // Modal dialogs should disable scrollbars
428 if ($el.dialog('option', 'modal')) {
429 $el.addClass('modal-dialog');
430 $('body').css({overflow: 'hidden'});
431 }
432 $el.parent().find('.ui-dialog-titlebar-close').attr('title', ts('Close'));
433 // Add resize button
434 if ($el.parent().hasClass('crm-container') && $el.dialog('option', 'resizable')) {
435 $el.parent().find('.ui-dialog-titlebar').append($('<button class="crm-dialog-titlebar-resize ui-dialog-titlebar-close" title="'+ts('Resize')+'" style="right:2em;"/>').button({icons: {primary: 'ui-icon-newwin'}, text: false}));
436 $('.crm-dialog-titlebar-resize', $el.parent()).click(function(e) {
437 if ($el.data('origSize')) {
438 $el.dialog('option', $el.data('origSize'));
439 $el.data('origSize', null);
440 } else {
441 $el.data('origSize', {
442 position: 'center',
443 width: $el.dialog('option', 'width'),
444 height: $el.dialog('option', 'height')
445 });
446 var menuHeight = $('#civicrm-menu').height();
447 $el.dialog('option', {width: '100%', height: ($(window).height() - menuHeight), position: [0, menuHeight]});
448 }
449 e.preventDefault();
450 });
451 }
452 })
453 .on('dialogclose', function(e) {
454 // Restore scrollbars when closing modal
455 if ($('.ui-dialog .modal-dialog').not(e.target).length < 1) {
456 $('body').css({overflow: ''});
457 }
458 });
459
460 /**
461 * Function to make multiselect boxes behave as fields in small screens
462 */
463 function advmultiselectResize() {
464 var amswidth = $("#crm-container form:has(table.advmultiselect)").width();
465 if (amswidth < 700) {
466 $("form table.advmultiselect td").css('display', 'block');
467 }
468 else {
469 $("form table.advmultiselect td").css('display', 'table-cell');
470 }
471 var contactwidth = $('#crm-container #mainTabContainer').width();
472 if (contactwidth < 600) {
473 $('#crm-container #mainTabContainer').addClass('narrowpage');
474 $('#crm-container #mainTabContainer.narrowpage #contactTopBar td').each(function (index) {
475 if (index > 1) {
476 if (index % 2 == 0) {
477 $(this).parent().after('<tr class="narrowadded"></tr>');
478 }
479 var item = $(this);
480 $(this).parent().next().append(item);
481 }
482 });
483 }
484 else {
485 $('#crm-container #mainTabContainer.narrowpage').removeClass('narrowpage');
486 $('#crm-container #mainTabContainer #contactTopBar tr.narrowadded td').each(function () {
487 var nitem = $(this);
488 var parent = $(this).parent();
489 $(this).parent().prev().append(nitem);
490 if (parent.children().size() == 0) {
491 parent.remove();
492 }
493 });
494 $('#crm-container #mainTabContainer.narrowpage #contactTopBar tr.added').detach();
495 }
496 var cformwidth = $('#crm-container #Contact .contact_basic_information-section').width();
497
498 if (cformwidth < 720) {
499 $('#crm-container .contact_basic_information-section').addClass('narrowform');
500 $('#crm-container .contact_basic_information-section table.form-layout-compressed td .helpicon').parent().addClass('hashelpicon');
501 if (cformwidth < 480) {
502 $('#crm-container .contact_basic_information-section').addClass('xnarrowform');
503 }
504 else {
505 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
506 }
507 }
508 else {
509 $('#crm-container .contact_basic_information-section.narrowform').removeClass('narrowform');
510 $('#crm-container .contact_basic_information-section.xnarrowform').removeClass('xnarrowform');
511 }
512 }
513
514 advmultiselectResize();
515 $(window).resize(function () {
516 advmultiselectResize();
517 });
518
519 $.fn.crmtooltip = function () {
520 $(document)
521 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e) {
522 $(this).addClass('crm-processed');
523 $(this).addClass('crm-tooltip-active');
524 var topDistance = e.pageY - $(window).scrollTop();
525 if (topDistance < 300 | topDistance < $(this).children('.crm-tooltip-wrapper').height()) {
526 $(this).addClass('crm-tooltip-down');
527 }
528 if (!$(this).children('.crm-tooltip-wrapper').length) {
529 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
530 $(this).children().children('.crm-tooltip')
531 .html('<div class="crm-loading-element"></div>')
532 .load(this.href);
533 }
534 })
535 .on('mouseout', 'a.crm-summary-link', function () {
536 $(this).removeClass('crm-processed');
537 $(this).removeClass('crm-tooltip-active crm-tooltip-down');
538 })
539 .on('click', 'a.crm-summary-link', false);
540 };
541
542 var helpDisplay, helpPrevious;
543 CRM.help = function (title, params, url) {
544 if (helpDisplay && helpDisplay.close) {
545 // If the same link is clicked twice, just close the display - todo use underscore method for this comparison
546 if (helpDisplay.isOpen && helpPrevious === JSON.stringify(params)) {
547 helpDisplay.close();
548 return;
549 }
550 helpDisplay.close();
551 }
552 helpPrevious = JSON.stringify(params);
553 params.class_name = 'CRM_Core_Page_Inline_Help';
554 params.type = 'page';
555 helpDisplay = CRM.alert('...', title, 'crm-help crm-msg-loading', {expires: 0});
556 $.ajax(url || CRM.url('civicrm/ajax/inline'),
557 {
558 data: params,
559 dataType: 'html',
560 success: function (data) {
561 $('#crm-notification-container .crm-help .notify-content:last').html(data);
562 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
563 },
564 error: function () {
565 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
566 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
567 }
568 }
569 );
570 };
571 /**
572 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
573 */
574 CRM.status = function(options, deferred) {
575 // 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.
576 if (typeof options === 'string') {
577 return CRM.status({start: options, success: options, error: options})[deferred === 'error' ? 'reject' : 'resolve']();
578 }
579 var opts = $.extend({
580 start: ts('Saving...'),
581 success: ts('Saved'),
582 error: function() {
583 CRM.alert(ts('Sorry an error occurred and your information was not saved'), ts('Error'));
584 }
585 }, options || {});
586 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>')
587 .appendTo('body');
588 $msg.css('min-width', $msg.width());
589 function handle(status, data) {
590 var endMsg = typeof(opts[status]) === 'function' ? opts[status](data) : opts[status];
591 if (endMsg) {
592 $msg.removeClass('status-start').addClass('status-' + status).find('.crm-status-box-msg').html(endMsg);
593 window.setTimeout(function() {
594 $msg.fadeOut('slow', function() {$msg.remove()});
595 }, 2000);
596 } else {
597 $msg.remove();
598 }
599 }
600 return (deferred || new $.Deferred())
601 .done(function(data) {
602 // If the server returns an error msg call the error handler
603 var status = $.isPlainObject(data) && (data.is_error || data.status === 'error') ? 'error' : 'success';
604 handle(status, data);
605 })
606 .fail(function(data) {
607 handle('error', data);
608 });
609 };
610
611 /**
612 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
613 */
614 CRM.alert = function (text, title, type, options) {
615 type = type || 'alert';
616 title = title || '';
617 options = options || {};
618 if ($('#crm-notification-container').length) {
619 var params = {
620 text: text,
621 title: title,
622 type: type
623 };
624 // By default, don't expire errors and messages containing links
625 var extra = {
626 expires: (type == 'error' || text.indexOf('<a ') > -1) ? 0 : (text ? 10000 : 5000),
627 unique: true
628 };
629 options = $.extend(extra, options);
630 options.expires = options.expires === false ? 0 : parseInt(options.expires, 10);
631 if (options.unique && options.unique !== '0') {
632 $('#crm-notification-container .ui-notify-message').each(function () {
633 if (title === $('h1', this).html() && text === $('.notify-content', this).html()) {
634 $('.icon.ui-notify-close', this).click();
635 }
636 });
637 }
638 return $('#crm-notification-container').notify('create', params, options);
639 }
640 else {
641 if (title.length) {
642 text = title + "\n" + text;
643 }
644 alert(text);
645 return null;
646 }
647 };
648
649 /**
650 * Close whichever alert contains the given node
651 *
652 * @param node
653 */
654 CRM.closeAlertByChild = function (node) {
655 $(node).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
656 };
657
658 /**
659 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
660 */
661 CRM.confirm = function (options) {
662 var dialog, settings = {
663 title: ts('Confirm Action'),
664 message: ts('Are you sure you want to continue?'),
665 width: 'auto',
666 modal: true,
667 resizable: false,
668 dialogClass: 'crm-container crm-confirm',
669 close: function () {
670 $(this).dialog('destroy').remove();
671 },
672 options: {
673 no: ts('Cancel'),
674 yes: ts('Continue')
675 }
676 };
677 $.extend(settings, ($.isFunction(options) ? arguments[1] : options) || {});
678 if (!settings.buttons && $.isPlainObject(settings.options)) {
679 settings.buttons = [];
680 $.each(settings.options, function(key, label) {
681 settings.buttons.push({
682 text: label,
683 click: function() {
684 var event = $.Event('crmConfirm:' + key);
685 $(this).trigger(event);
686 if (!event.isDefaultPrevented()) {
687 dialog.dialog('close');
688 }
689 }
690 });
691 });
692 }
693 dialog = $('<div class="crm-confirm-dialog"></div>').html(settings.message);
694 delete settings.options;
695 delete settings.message;
696 if ($.isFunction(options)) {
697 dialog.on('crmConfirm:yes', options);
698 }
699 return dialog.dialog(settings).trigger('crmLoad');
700 };
701
702 /**
703 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
704 */
705 $.fn.crmError = function (text, title, options) {
706 title = title || '';
707 text = text || '';
708 options = options || {};
709
710 var extra = {
711 expires: 0
712 };
713 if ($(this).length) {
714 if (title == '') {
715 var label = $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
716 if (label.length) {
717 label.addClass('crm-error');
718 var $label = label.clone();
719 if (text == '' && $('.crm-marker', $label).length > 0) {
720 text = $('.crm-marker', $label).attr('title');
721 }
722 $('.crm-marker', $label).remove();
723 title = $label.text();
724 }
725 }
726 $(this).addClass('error');
727 }
728 var msg = CRM.alert(text, title, 'error', $.extend(extra, options));
729 if ($(this).length) {
730 var ele = $(this);
731 setTimeout(function () {
732 ele.one('change', function () {
733 msg && msg.close && msg.close();
734 ele.removeClass('error');
735 label.removeClass('crm-error');
736 });
737 }, 1000);
738 }
739 return msg;
740 };
741
742 // Display system alerts through js notifications
743 function messagesFromMarkup() {
744 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
745 var text, title = '';
746 $(this).removeClass('status messages');
747 var type = $(this).attr('class').split(' ')[0] || 'alert';
748 type = type.replace('crm-', '');
749 $('.icon', this).remove();
750 if ($('.msg-text', this).length > 0) {
751 text = $('.msg-text', this).html();
752 title = $('.msg-title', this).html();
753 }
754 else {
755 text = $(this).html();
756 }
757 var options = $(this).data('options') || {};
758 $(this).remove();
759 // Duplicates were already removed server-side
760 options.unique = false;
761 CRM.alert(text, title, type, options);
762 });
763 // Handle qf form errors
764 $('form :input.error', this).one('blur', function() {
765 $('.ui-notify-message.error a.ui-notify-close').click();
766 $(this).removeClass('error');
767 $(this).next('span.crm-error').remove();
768 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
769 .removeClass('crm-error')
770 .find('.crm-error').removeClass('crm-error');
771 });
772 }
773
774 // Preprocess all cj ajax calls to display messages
775 $(document).ajaxSuccess(function(event, xhr, settings) {
776 try {
777 if ((!settings.dataType || settings.dataType == 'json') && xhr.responseText) {
778 var response = $.parseJSON(xhr.responseText);
779 if (typeof(response.crmMessages) == 'object') {
780 $.each(response.crmMessages, function(n, msg) {
781 CRM.alert(msg.text, msg.title, msg.type, msg.options);
782 })
783 }
784 }
785 }
786 // Suppress errors
787 catch (e) {}
788 });
789
790 /**
791 * Temporary stub to get around name conflict with legacy jQuery.autocomplete plugin
792 * FIXME: Remove this before 4.5 release
793 */
794 $.widget('civi.crmAutocomplete', $.ui.autocomplete, {});
795
796 $(function () {
797 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
798 $('.crm-container').trigger('crmLoad');
799
800 if ($('#crm-notification-container').length) {
801 // Initialize notifications
802 $('#crm-notification-container').notify();
803 messagesFromMarkup.call($('#crm-container'));
804 }
805
806 $('body')
807 // bind the event for image popup
808 .on('click', 'a.crm-image-popup', function(e) {
809 CRM.confirm({
810 title: ts('Preview'),
811 resizable: true,
812 message: '<div class="crm-custom-image-popup"><img src=' + $(this).attr('href') + '></div>',
813 options: null
814 });
815 e.preventDefault();
816 })
817
818 .on('click', function (event) {
819 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
820 if ($(event.target).is('.btn-slide')) {
821 $(event.target).addClass('btn-slide-active').find('.panel').show();
822 }
823 })
824
825 // Handle clear button for form elements
826 .on('click', 'a.crm-clear-link', function() {
827 $(this).css({visibility: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).change();
828 $(this).siblings('input:text').val('').change();
829 return false;
830 })
831 .on('change', 'input.crm-form-radio:checked', function() {
832 $(this).siblings('.crm-clear-link').css({visibility: ''});
833 })
834
835 // Allow normal clicking of links within accordions
836 .on('click.crmAccordions', 'div.crm-accordion-header a', function (e) {
837 e.stopPropagation();
838 })
839 // Handle accordions
840 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e) {
841 if ($(this).parent().hasClass('collapsed')) {
842 $(this).next().css('display', 'none').slideDown(200);
843 }
844 else {
845 $(this).next().css('display', 'block').slideUp(200);
846 }
847 $(this).parent().toggleClass('collapsed');
848 e.preventDefault();
849 });
850
851 $().crmtooltip();
852 });
853 /**
854 * @deprecated
855 */
856 $.fn.crmAccordions = function () {};
857 /**
858 * Collapse or expand an accordion
859 * @param speed
860 */
861 $.fn.crmAccordionToggle = function (speed) {
862 $(this).each(function () {
863 if ($(this).hasClass('collapsed')) {
864 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed);
865 }
866 else {
867 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed);
868 }
869 $(this).toggleClass('collapsed');
870 });
871 };
872
873 /**
874 * Clientside currency formatting
875 * @param value
876 * @param format - currency representation of the number 1234.56
877 * @return string
878 * @see CRM_Core_Resources::addCoreResources
879 */
880 var currencyTemplate;
881 CRM.formatMoney = function(value, format) {
882 var decimal, separator, sign, i, j, result;
883 if (value === 'init' && format) {
884 currencyTemplate = format;
885 return;
886 }
887 format = format || currencyTemplate;
888 result = /1(.?)234(.?)56/.exec(format);
889 if (result === null) {
890 return 'Invalid format passed to CRM.formatMoney';
891 }
892 separator = result[1];
893 decimal = result[2];
894 sign = (value < 0) ? '-' : '';
895 //extracting the absolute value of the integer part of the number and converting to string
896 i = parseInt(value = Math.abs(value).toFixed(2)) + '';
897 j = ((j = i.length) > 3) ? j % 3 : 0;
898 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) : '');
899 return format.replace(/1.*234.*56/, result);
900 };
901 })(jQuery, _);