commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / 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 CRM.utils = CRM.utils || {};
205 CRM.strings = CRM.strings || {};
206
207 (function ($, _, undefined) {
208 "use strict";
209 /* jshint validthis: true */
210
211 // Theme classes for unattached elements
212 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container';
213
214 // https://github.com/ivaynberg/select2/pull/2090
215 $.fn.select2.defaults.width = 'resolve';
216
217 // Workaround for https://github.com/ivaynberg/select2/issues/1246
218 $.ui.dialog.prototype._allowInteraction = function(e) {
219 return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop, .cke_dialog, #civicrm-menu').length;
220 };
221
222 // Implements jQuery hook.prop
223 $.propHooks.disabled = {
224 set: function (el, value, name) {
225 // Sync button enabled status with wrapper css
226 if ($(el).is('span.crm-button > input.crm-form-submit')) {
227 $(el).parent().toggleClass('crm-button-disabled', !!value);
228 }
229 // Sync button enabled status with dialog button
230 if ($(el).is('.ui-dialog input.crm-form-submit')) {
231 $(el).closest('.ui-dialog').find('.ui-dialog-buttonset button[data-identifier='+ $(el).attr('name') +']').prop('disabled', value);
232 }
233 if ($(el).is('.crm-form-date-wrapper .crm-hidden-date')) {
234 $(el).siblings().prop('disabled', value);
235 }
236 }
237 };
238
239 /**
240 * Populate a select list, overwriting the existing options except for the placeholder.
241 * @param select jquery selector - 1 or more select elements
242 * @param options array in format returned by api.getoptions
243 * @param placeholder string|bool - new placeholder or false (default) to keep the old one
244 * @param value string|array - will silently update the element with new value without triggering change
245 */
246 CRM.utils.setOptions = function(select, options, placeholder, value) {
247 $(select).each(function() {
248 var
249 $elect = $(this),
250 val = value || $elect.val() || [],
251 opts = placeholder || placeholder === '' ? '' : '[value!=""]';
252 $elect.find('option' + opts).remove();
253 var newOptions = CRM.utils.renderOptions(options, val);
254 if (typeof placeholder === 'string') {
255 if ($elect.is('[multiple]')) {
256 select.attr('placeholder', placeholder);
257 } else {
258 newOptions = '<option value="">' + placeholder + '</option>' + newOptions;
259 }
260 }
261 $elect.append(newOptions);
262 if (!value) {
263 $elect.trigger('crmOptionsUpdated', $.extend({}, options)).trigger('change');
264 }
265 });
266 };
267
268 /**
269 * Render an option list
270 * @param options {array}
271 * @param val {string} default value
272 * @param escapeHtml {bool}
273 * @return string
274 */
275 CRM.utils.renderOptions = function(options, val, escapeHtml) {
276 var rendered = '',
277 esc = escapeHtml === false ? _.identity : _.escape;
278 if (!$.isArray(val)) {
279 val = [val];
280 }
281 _.each(options, function(option) {
282 if (option.children) {
283 rendered += '<optgroup label="' + esc(option.value) + '">' +
284 CRM.utils.renderOptions(option.children, val) +
285 '</optgroup>';
286 } else {
287 var selected = ($.inArray('' + option.key, val) > -1) ? 'selected="selected"' : '';
288 rendered += '<option value="' + esc(option.key) + '"' + selected + '>' + esc(option.value) + '</option>';
289 }
290 });
291 return rendered;
292 };
293
294 function chainSelect() {
295 var $form = $(this).closest('form'),
296 $target = $('select[data-name="' + $(this).data('target') + '"]', $form),
297 data = $target.data(),
298 val = $(this).val();
299 $target.prop('disabled', true);
300 if ($target.is('select.crm-chain-select-control')) {
301 $('select[data-name="' + $target.data('target') + '"]', $form).prop('disabled', true).blur();
302 }
303 if (!(val && val.length)) {
304 CRM.utils.setOptions($target.blur(), [], data.emptyPrompt);
305 } else {
306 $target.addClass('loading');
307 $.getJSON(CRM.url(data.callback), {_value: val}, function(vals) {
308 $target.prop('disabled', false).removeClass('loading');
309 CRM.utils.setOptions($target, vals || [], (vals && vals.length ? data.selectPrompt : data.nonePrompt));
310 });
311 }
312 }
313
314 /**
315 * Compare Form Input values against cached initial value.
316 *
317 * @return {Boolean} true if changes have been made.
318 */
319 CRM.utils.initialValueChanged = function(el) {
320 var isDirty = false;
321 $(':input:visible, .select2-container:visible+:input:hidden', el).not('[type=submit], [type=button], .crm-action-menu, :disabled').each(function () {
322 var
323 initialValue = $(this).data('crm-initial-value'),
324 currentValue = $(this).is(':checkbox, :radio') ? $(this).prop('checked') : $(this).val();
325 // skip change of value for submit buttons
326 if (initialValue !== undefined && !_.isEqual(initialValue, currentValue)) {
327 isDirty = true;
328 }
329 });
330 return isDirty;
331 };
332
333 /**
334 * This provides defaults for ui.dialog which either need to be calculated or are different from global defaults
335 *
336 * @param settings
337 * @returns {*}
338 */
339 CRM.utils.adjustDialogDefaults = function(settings) {
340 settings = $.extend({width: '65%', height: '65%', modal: true}, settings || {});
341 // Support relative height
342 if (typeof settings.height === 'string' && settings.height.indexOf('%') > 0) {
343 settings.height = parseInt($(window).height() * (parseFloat(settings.height)/100), 10);
344 }
345 // Responsive adjustment - increase percent width on small screens
346 if (typeof settings.width === 'string' && settings.width.indexOf('%') > 0) {
347 var screenWidth = $(window).width(),
348 percentage = parseInt(settings.width.replace('%', ''), 10),
349 gap = 100-percentage;
350 if (screenWidth < 701) {
351 settings.width = '100%';
352 }
353 else if (screenWidth < 1400) {
354 settings.width = '' + parseInt(percentage+gap-((screenWidth - 700)/7*(gap)/100), 10) + '%';
355 }
356 }
357 return settings;
358 };
359
360 /**
361 * Wrapper for select2 initialization function; supplies defaults
362 * @param options object
363 */
364 $.fn.crmSelect2 = function(options) {
365 if (options === 'destroy') {
366 return $(this).each(function() {
367 $(this)
368 .removeClass('crm-ajax-select')
369 .select2('destroy');
370 });
371 }
372 return $(this).each(function () {
373 var
374 $el = $(this),
375 settings = {allowClear: !$el.hasClass('required')};
376 // quickform doesn't support optgroups so here's a hack :(
377 $('option[value^=crm_optgroup]', this).each(function () {
378 $(this).nextUntil('option[value^=crm_optgroup]').wrapAll('<optgroup label="' + $(this).text() + '" />');
379 $(this).remove();
380 });
381
382 // quickform does not support disabled option, so yet another hack to
383 // add disabled property for option values
384 $('option[value^=crm_disabled_opt]', this).attr('disabled', 'disabled');
385
386 // Defaults for single-selects
387 if ($el.is('select:not([multiple])')) {
388 settings.minimumResultsForSearch = 10;
389 if ($('option:first', this).val() === '') {
390 settings.placeholderOption = 'first';
391 }
392 }
393 $.extend(settings, $el.data('select-params') || {}, options || {});
394 if (settings.ajax) {
395 $el.addClass('crm-ajax-select');
396 }
397 $el.select2(settings);
398 });
399 };
400
401 /**
402 * @see CRM_Core_Form::addEntityRef for docs
403 * @param options object
404 */
405 $.fn.crmEntityRef = function(options) {
406 if (options === 'destroy') {
407 return $(this).each(function() {
408 var entity = $(this).data('api-entity') || '';
409 $(this)
410 .off('.crmEntity')
411 .removeClass('crm-form-entityref crm-' + entity.toLowerCase() + '-ref')
412 .crmSelect2('destroy');
413 });
414 }
415 options = options || {};
416 options.select = options.select || {};
417 return $(this).each(function() {
418 var
419 $el = $(this).off('.crmEntity'),
420 entity = options.entity || $el.data('api-entity') || 'contact',
421 selectParams = {};
422 $el.data('api-entity', entity);
423 $el.data('select-params', $.extend({}, $el.data('select-params') || {}, options.select));
424 $el.data('api-params', $.extend(true, {}, $el.data('api-params') || {}, options.api));
425 $el.data('create-links', options.create || $el.data('create-links'));
426 $el.addClass('crm-form-entityref crm-' + entity.toLowerCase() + '-ref');
427 var settings = {
428 // Use select2 ajax helper instead of CRM.api3 because it provides more value
429 ajax: {
430 url: CRM.url('civicrm/ajax/rest'),
431 data: function (input, page_num) {
432 var params = getEntityRefApiParams($el);
433 params.input = input;
434 params.page_num = page_num;
435 return {
436 entity: $el.data('api-entity'),
437 action: 'getlist',
438 json: JSON.stringify(params)
439 };
440 },
441 results: function(data) {
442 return {more: data.more_results, results: data.values || []};
443 }
444 },
445 minimumInputLength: 1,
446 formatResult: CRM.utils.formatSelect2Result,
447 formatSelection: function(row) {
448 return _.escape((row.prefix !== undefined ? row.prefix + ' ' : '') + row.label + (row.suffix !== undefined ? ' ' + row.suffix : ''));
449 },
450 escapeMarkup: _.identity,
451 initSelection: function($el, callback) {
452 var
453 multiple = !!$el.data('select-params').multiple,
454 val = $el.val(),
455 stored = $el.data('entity-value') || [];
456 if (val === '') {
457 return;
458 }
459 // If we already have this data, just return it
460 if (!_.xor(val.split(','), _.pluck(stored, 'id')).length) {
461 callback(multiple ? stored : stored[0]);
462 } else {
463 var params = $.extend({}, $el.data('api-params') || {}, {id: val});
464 CRM.api3($el.data('api-entity'), 'getlist', params).done(function(result) {
465 callback(multiple ? result.values : result.values[0]);
466 // Trigger change (store data to avoid an infinite loop of lookups)
467 $el.data('entity-value', result.values).trigger('change');
468 });
469 }
470 }
471 };
472 // Create new items inline - works for tags
473 if ($el.data('create-links') && entity.toLowerCase() === 'tag') {
474 selectParams.createSearchChoice = function(term, data) {
475 if (!_.findKey(data, {label: term})) {
476 return {id: "0", term: term, label: term + ' (' + ts('new tag') + ')'};
477 }
478 };
479 selectParams.tokenSeparators = [','];
480 selectParams.createSearchChoicePosition = 'bottom';
481 $el.on('select2-selecting.crmEntity', function(e) {
482 if (e.val === "0") {
483 // Create a new term
484 e.object.label = e.object.term;
485 CRM.api3(entity, 'create', $.extend({name: e.object.term}, $el.data('api-params').params || {}))
486 .done(function(created) {
487 var
488 val = $el.select2('val'),
489 data = $el.select2('data'),
490 item = {id: created.id, label: e.object.term};
491 if (val === "0") {
492 $el.select2('data', item, true);
493 }
494 else if ($.isArray(val) && $.inArray("0", val) > -1) {
495 _.remove(data, {id: "0"});
496 data.push(item);
497 $el.select2('data', data, true);
498 }
499 });
500 }
501 });
502 }
503 else {
504 selectParams.formatInputTooShort = function() {
505 var txt = $el.data('select-params').formatInputTooShort || $.fn.select2.defaults.formatInputTooShort.call(this);
506 txt += renderEntityRefFilters($el) + renderEntityRefCreateLinks($el);
507 return txt;
508 };
509 selectParams.formatNoMatches = function() {
510 var txt = $el.data('select-params').formatNoMatches || $.fn.select2.defaults.formatNoMatches;
511 txt += renderEntityRefFilters($el) + renderEntityRefCreateLinks($el);
512 return txt;
513 };
514 $el.on('select2-open.crmEntity', function() {
515 var $el = $(this);
516 loadEntityRefFilterOptions($el);
517 $('#select2-drop')
518 .off('.crmEntity')
519 .on('click.crmEntity', 'a.crm-add-entity', function(e) {
520 $el.select2('close');
521 CRM.loadForm($(this).attr('href'), {
522 dialog: {width: 500, height: 220}
523 }).on('crmFormSuccess', function(e, data) {
524 if (data.status === 'success' && data.id) {
525 CRM.status(ts('%1 Created', {1: data.label}));
526 if ($el.select2('container').hasClass('select2-container-multi')) {
527 var selection = $el.select2('data');
528 selection.push(data);
529 $el.select2('data', selection, true);
530 } else {
531 $el.select2('data', data, true);
532 }
533 }
534 });
535 return false;
536 })
537 .on('change.crmEntity', 'select.crm-entityref-filter-value', function() {
538 var filter = $el.data('user-filter') || {};
539 filter.value = $(this).val();
540 $(this).toggleClass('active', !!filter.value);
541 $el.data('user-filter', filter);
542 if (filter.value) {
543 // Once a filter has been chosen, rerender create links and refocus the search box
544 $el.select2('close');
545 $el.select2('open');
546 }
547 })
548 .on('change.crmEntity', 'select.crm-entityref-filter-key', function() {
549 var filter = $el.data('user-filter') || {};
550 filter.key = $(this).val();
551 $(this).toggleClass('active', !!filter.key);
552 $el.data('user-filter', filter);
553 loadEntityRefFilterOptions($el);
554 });
555 });
556 }
557 $el.crmSelect2($.extend(settings, $el.data('select-params'), selectParams));
558 });
559 };
560
561 /**
562 * Combine api-params with user-filter
563 * @param $el
564 * @returns {*}
565 */
566 function getEntityRefApiParams($el) {
567 var
568 params = $.extend({params: {}}, $el.data('api-params') || {}),
569 // Prevent original data from being modified - $.extend and _.clone don't cut it, they pass nested objects by reference!
570 combined = _.cloneDeep(params),
571 filter = $.extend({}, $el.data('user-filter') || {});
572 if (filter.key && filter.value) {
573 // Special case for contact type/sub-type combo
574 if (filter.key === 'contact_type' && (filter.value.indexOf('__') > 0)) {
575 combined.params.contact_type = filter.value.split('__')[0];
576 combined.params.contact_sub_type = filter.value.split('__')[1];
577 } else {
578 // Allow json-encoded api filters e.g. {"BETWEEN":[123,456]}
579 combined.params[filter.key] = filter.value.charAt(0) === '{' ? $.parseJSON(filter.value) : filter.value;
580 }
581 }
582 return combined;
583 }
584
585 function copyAttributes($source, $target, attributes) {
586 _.each(attributes, function(name) {
587 if ($source.attr(name)) {
588 $target.attr(name, $source.attr(name));
589 }
590 });
591 }
592
593 /**
594 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/crmDatepicker
595 */
596 $.fn.crmDatepicker = function(options) {
597 return $(this).each(function() {
598 if ($(this).is('.crm-form-date-wrapper .crm-hidden-date')) {
599 // Already initialized
600 return;
601 }
602 var
603 $dataField = $(this).wrap('<span class="crm-form-date-wrapper" />'),
604 settings = $.extend({}, $dataField.data('datepicker') || {}, options || {}),
605 $dateField = $(),
606 $timeField = $(),
607 $clearLink = $();
608
609 if (settings.allowClear !== undefined ? settings.allowClear : !$dataField.is('.required, [required]')) {
610 $clearLink = $('<a class="crm-hover-button crm-clear-link" title="'+ _.escape(ts('Clear')) +'"><span class="icon ui-icon-close"></span></a>')
611 .insertAfter($dataField);
612 }
613 if (settings.time !== false) {
614 $timeField = $('<input>').insertAfter($dataField);
615 copyAttributes($dataField, $timeField, ['class', 'disabled']);
616 $timeField
617 .addClass('crm-form-text crm-form-time')
618 .attr('placeholder', $dataField.attr('time-placeholder') === undefined ? ts('Time') : $dataField.attr('time-placeholder'))
619 .change(updateDataField)
620 .timeEntry({
621 spinnerImage: '',
622 show24Hours: settings.time === true || settings.time === undefined ? CRM.config.timeIs24Hr : settings.time == '24'
623 });
624 }
625 if (settings.date !== false) {
626 $dateField = $('<input>').insertAfter($dataField);
627 copyAttributes($dataField, $dateField, ['placeholder', 'style', 'class', 'disabled']);
628 $dateField.addClass('crm-form-text crm-form-date');
629 settings.date = typeof settings.date === 'string' ? settings.date : CRM.config.dateInputFormat;
630 settings.changeMonth = _.includes('m', settings.date);
631 settings.changeYear = _.includes('y', settings.date);
632 $dateField.datepicker(settings).change(updateDataField);
633 }
634 // Rudimentary validation. TODO: Roll into use of jQUery validate and ui.datepicker.validation
635 function isValidDate() {
636 try {
637 $.datepicker.parseDate(settings.date, $dateField.val());
638 return true;
639 } catch (e) {
640 return false;
641 }
642 }
643 function updateInputFields(e, context) {
644 var val = $dataField.val(),
645 time = null;
646 if (context !== 'userInput' && context !== 'crmClear') {
647 if ($dateField.length) {
648 $dateField.datepicker('setDate', _.includes(val, '-') ? $.datepicker.parseDate('yy-mm-dd', val) : null);
649 }
650 if ($timeField.length) {
651 if (val.length === 8) {
652 time = val;
653 } else if (val.length === 19) {
654 time = val.split(' ')[1];
655 }
656 $timeField.timeEntry('setTime', time);
657 }
658 }
659 $clearLink.css('visibility', val ? 'visible' : 'hidden');
660 }
661 function updateDataField(e, context) {
662 // The crmClear event wipes all the field values anyway, so no need to respond
663 if (context !== 'crmClear') {
664 var val = '';
665 if ($dateField.val()) {
666 if (isValidDate()) {
667 val = $.datepicker.formatDate('yy-mm-dd', $dateField.datepicker('getDate'));
668 $dateField.removeClass('crm-error');
669 } else {
670 $dateField.addClass('crm-error');
671 }
672 }
673 if ($timeField.val()) {
674 val += (val ? ' ' : '') + $timeField.timeEntry('getTime').toTimeString().substr(0, 8);
675 }
676 $dataField.val(val).trigger('change', ['userInput']);
677 }
678 }
679 $dataField.hide().addClass('crm-hidden-date').on('change', updateInputFields);
680 updateInputFields();
681 });
682 };
683
684 CRM.utils.formatSelect2Result = function (row) {
685 var markup = '<div class="crm-select2-row">';
686 if (row.image !== undefined) {
687 markup += '<div class="crm-select2-image"><img src="' + row.image + '"/></div>';
688 }
689 else if (row.icon_class) {
690 markup += '<div class="crm-select2-icon"><div class="crm-icon ' + row.icon_class + '-icon"></div></div>';
691 }
692 markup += '<div><div class="crm-select2-row-label '+(row.label_class || '')+'">' +
693 _.escape((row.prefix !== undefined ? row.prefix + ' ' : '') + row.label + (row.suffix !== undefined ? ' ' + row.suffix : '')) +
694 '</div>' +
695 '<div class="crm-select2-row-description">';
696 $.each(row.description || [], function(k, text) {
697 markup += '<p>' + _.escape(text) + '</p>';
698 });
699 markup += '</div></div></div>';
700 return markup;
701 };
702
703 function renderEntityRefCreateLinks($el) {
704 var
705 createLinks = $el.data('create-links'),
706 params = getEntityRefApiParams($el).params,
707 markup = '<div class="crm-entityref-links">';
708 if (!createLinks || $el.data('api-entity').toLowerCase() !== 'contact') {
709 return '';
710 }
711 if (createLinks === true) {
712 createLinks = params.contact_type ? _.where(CRM.config.entityRef.contactCreate, {type: params.contact_type}) : CRM.config.entityRef.contactCreate;
713 }
714 _.each(createLinks, function(link) {
715 markup += ' <a class="crm-add-entity crm-hover-button" href="' + link.url + '">';
716 if (link.type) {
717 markup += '<span class="icon ' + link.type + '-profile-icon"></span> ';
718 }
719 markup += _.escape(link.label) + '</a>';
720 });
721 markup += '</div>';
722 return markup;
723 }
724
725 function getEntityRefFilters($el) {
726 var
727 entity = $el.data('api-entity').toLowerCase(),
728 filters = $.extend([], CRM.config.entityRef.filters[entity] || []),
729 filter = $el.data('user-filter') || {},
730 params = $.extend({params: {}}, $el.data('api-params') || {}).params,
731 result = [];
732 $.each(filters, function() {
733 if (typeof params[this.key] === 'undefined') {
734 result.push(this);
735 }
736 else if (this.key == 'contact_type' && typeof params.contact_sub_type === 'undefined') {
737 this.options = _.remove(this.options, function(option) {
738 return option.key.indexOf(params.contact_type + '__') === 0;
739 });
740 result.push(this);
741 }
742 });
743 return result;
744 }
745
746 function renderEntityRefFilters($el) {
747 var
748 filters = getEntityRefFilters($el),
749 filter = $el.data('user-filter') || {},
750 filterSpec = filter.key ? _.find(filters, {key: filter.key}) : null;
751 if (!filters.length) {
752 return '';
753 }
754 var markup = '<div class="crm-entityref-filters">' +
755 '<select class="crm-entityref-filter-key' + (filter.key ? ' active' : '') + '">' +
756 '<option value="">' + _.escape(ts('Refine search...')) + '</option>' +
757 CRM.utils.renderOptions(filters, filter.key) +
758 '</select> &nbsp; ' +
759 '<select class="crm-entityref-filter-value' + (filter.key ? ' active"' : '"') + (filter.key ? '' : ' style="display:none;"') + '>' +
760 '<option value="">' + _.escape(ts('- select -')) + '</option>';
761 if (filterSpec && filterSpec.options) {
762 markup += CRM.utils.renderOptions(filterSpec.options, filter.value);
763 }
764 markup += '</select></div>';
765 return markup;
766 }
767
768 /**
769 * Fetch options for a filter (via ajax if necessary) and populate the appropriate select list
770 * @param $el
771 */
772 function loadEntityRefFilterOptions($el) {
773 var
774 filters = getEntityRefFilters($el),
775 filter = $el.data('user-filter') || {},
776 filterSpec = filter.key ? _.find(filters, {key: filter.key}) : null,
777 $valField = $('.crm-entityref-filter-value', '#select2-drop');
778 if (filterSpec) {
779 $valField.show().val('');
780 if (filterSpec.options) {
781 CRM.utils.setOptions($valField, filterSpec.options, false, filter.value);
782 } else {
783 $valField.prop('disabled', true);
784 CRM.api3(filterSpec.entity || $el.data('api-entity'), 'getoptions', {field: filter.key, context: 'search', sequential: 1})
785 .done(function(result) {
786 var entity = $el.data('api-entity').toLowerCase(),
787 globalFilterSpec = _.find(CRM.config.entityRef.filters[entity], {key: filter.key}) || {};
788 // Store options globally so we don't have to look them up again
789 globalFilterSpec.options = result.values;
790 $valField.prop('disabled', false);
791 CRM.utils.setOptions($valField, result.values);
792 $valField.val(filter.value || '');
793 });
794 }
795 } else {
796 $valField.hide();
797 }
798 }
799
800 //CRM-15598 - Override url validator method to allow relative url's (e.g. /index.htm)
801 $.validator.addMethod("url", function(value, element) {
802 if (/^\//.test(value)) {
803 // Relative url: prepend dummy path for validation.
804 value = 'http://domain.tld' + value;
805 }
806 // From jQuery Validation Plugin v1.12.0
807 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);
808 });
809
810 /**
811 * Wrapper for jQuery validate initialization function; supplies defaults
812 */
813 $.fn.crmValidate = function(params) {
814 return $(this).each(function () {
815 var that = this,
816 settings = $.extend({}, CRM.validate._defaults, CRM.validate.params);
817 $(this).validate(settings);
818 // Call any post-initialization callbacks
819 if (CRM.validate.functions && CRM.validate.functions.length) {
820 $.each(CRM.validate.functions, function(i, func) {
821 func.call(that);
822 });
823 }
824 });
825 };
826
827 // Initialize widgets
828 $(document)
829 .on('crmLoad', function(e) {
830 $('table.row-highlight', e.target)
831 .off('.rowHighlight')
832 .on('change.rowHighlight', 'input.select-row, input.select-rows', function (e, data) {
833 var filter, $table = $(this).closest('table');
834 if ($(this).hasClass('select-rows')) {
835 filter = $(this).prop('checked') ? ':not(:checked)' : ':checked';
836 $('input.select-row' + filter, $table).prop('checked', $(this).prop('checked')).trigger('change', 'master-selected');
837 }
838 else {
839 $(this).closest('tr').toggleClass('crm-row-selected', $(this).prop('checked'));
840 if (data !== 'master-selected') {
841 $('input.select-rows', $table).prop('checked', $(".select-row:not(':checked')", $table).length < 1);
842 }
843 }
844 })
845 .find('input.select-row:checked').parents('tr').addClass('crm-row-selected');
846 if ($("input:radio[name=radio_ts]").size() == 1) {
847 $("input:radio[name=radio_ts]").prop("checked", true);
848 }
849 $('.crm-select2:not(.select2-offscreen, .select2-container)', e.target).crmSelect2();
850 $('.crm-form-entityref:not(.select2-offscreen, .select2-container)', e.target).crmEntityRef();
851 $('select.crm-chain-select-control', e.target).off('.chainSelect').on('change.chainSelect', chainSelect);
852 // Cache Form Input initial values
853 $('form[data-warn-changes] :input', e.target).each(function() {
854 $(this).data('crm-initial-value', $(this).is(':checkbox, :radio') ? $(this).prop('checked') : $(this).val());
855 });
856 })
857 .on('dialogopen', function(e) {
858 var $el = $(e.target);
859 // Modal dialogs should disable scrollbars
860 if ($el.dialog('option', 'modal')) {
861 $el.addClass('modal-dialog');
862 $('body').css({overflow: 'hidden'});
863 }
864 // Add resize button
865 if ($el.parent().hasClass('crm-container') && $el.dialog('option', 'resizable')) {
866 $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: 'ui-icon-newwin'}, text: false}));
867 $('.crm-dialog-titlebar-resize', $el.parent()).click(function(e) {
868 if ($el.data('origSize')) {
869 $el.dialog('option', $el.data('origSize'));
870 $el.data('origSize', null);
871 } else {
872 var menuHeight = $('#civicrm-menu').outerHeight();
873 $el.data('origSize', {
874 position: {my: 'center', at: 'center center+' + (menuHeight / 2), of: window},
875 width: $el.dialog('option', 'width'),
876 height: $el.dialog('option', 'height')
877 });
878 $el.dialog('option', {width: '100%', height: ($(window).height() - menuHeight), position: {my: "top", at: "top+"+menuHeight, of: window}});
879 }
880 $el.trigger('dialogresize');
881 e.preventDefault();
882 });
883 }
884 })
885 .on('dialogclose', function(e) {
886 // Restore scrollbars when closing modal
887 if ($('.ui-dialog .modal-dialog:visible').not(e.target).length < 1) {
888 $('body').css({overflow: ''});
889 }
890 })
891 .on('submit', function(e) {
892 // CRM-14353 - disable changes warn when submitting a form
893 $('[data-warn-changes]').attr('data-warn-changes', 'false');
894 });
895
896 // CRM-14353 - Warn of unsaved changes for forms which have opted in
897 window.onbeforeunload = function() {
898 if (CRM.utils.initialValueChanged($('form[data-warn-changes=true]:visible'))) {
899 return ts('You have unsaved changes.');
900 }
901 };
902
903 $.fn.crmtooltip = function () {
904 $(document)
905 .on('mouseover', 'a.crm-summary-link:not(.crm-processed)', function (e) {
906 $(this).addClass('crm-processed');
907 $(this).addClass('crm-tooltip-active');
908 var topDistance = e.pageY - $(window).scrollTop();
909 if (topDistance < 300 || topDistance < $(this).children('.crm-tooltip-wrapper').height()) {
910 $(this).addClass('crm-tooltip-down');
911 }
912 if (!$(this).children('.crm-tooltip-wrapper').length) {
913 $(this).append('<div class="crm-tooltip-wrapper"><div class="crm-tooltip"></div></div>');
914 $(this).children().children('.crm-tooltip')
915 .html('<div class="crm-loading-element"></div>')
916 .load(this.href);
917 }
918 })
919 .on('mouseout', 'a.crm-summary-link', function () {
920 $(this).removeClass('crm-processed');
921 $(this).removeClass('crm-tooltip-active crm-tooltip-down');
922 })
923 .on('click', 'a.crm-summary-link', false);
924 };
925
926 var helpDisplay, helpPrevious;
927 CRM.help = function (title, params, url) {
928 if (helpDisplay && helpDisplay.close) {
929 // If the same link is clicked twice, just close the display - todo use underscore method for this comparison
930 if (helpDisplay.isOpen && helpPrevious === JSON.stringify(params)) {
931 helpDisplay.close();
932 return;
933 }
934 helpDisplay.close();
935 }
936 helpPrevious = JSON.stringify(params);
937 params.class_name = 'CRM_Core_Page_Inline_Help';
938 params.type = 'page';
939 helpDisplay = CRM.alert('...', title, 'crm-help crm-msg-loading', {expires: 0});
940 $.ajax(url || CRM.url('civicrm/ajax/inline'),
941 {
942 data: params,
943 dataType: 'html',
944 success: function (data) {
945 $('#crm-notification-container .crm-help .notify-content:last').html(data);
946 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('info');
947 },
948 error: function () {
949 $('#crm-notification-container .crm-help .notify-content:last').html('Unable to load help file.');
950 $('#crm-notification-container .crm-help').removeClass('crm-msg-loading').addClass('error');
951 }
952 }
953 );
954 };
955 /**
956 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
957 */
958 CRM.status = function(options, deferred) {
959 // 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.
960 if (typeof options === 'string') {
961 return CRM.status({start: options, success: options, error: options})[deferred === 'error' ? 'reject' : 'resolve']();
962 }
963 var opts = $.extend({
964 start: ts('Saving...'),
965 success: ts('Saved'),
966 error: function(data) {
967 var msg = $.isPlainObject(data) && data.error_message;
968 CRM.alert(msg || ts('Sorry an error occurred and your information was not saved'), ts('Error'), 'error');
969 }
970 }, options || {});
971 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>')
972 .appendTo('body');
973 $msg.css('min-width', $msg.width());
974 function handle(status, data) {
975 var endMsg = typeof(opts[status]) === 'function' ? opts[status](data) : opts[status];
976 if (endMsg) {
977 $msg.removeClass('status-start').addClass('status-' + status).find('.crm-status-box-msg').text(endMsg);
978 window.setTimeout(function() {
979 $msg.fadeOut('slow', function() {
980 $msg.remove();
981 });
982 }, 2000);
983 } else {
984 $msg.remove();
985 }
986 }
987 return (deferred || new $.Deferred())
988 .done(function(data) {
989 // If the server returns an error msg call the error handler
990 var status = $.isPlainObject(data) && (data.is_error || data.status === 'error') ? 'error' : 'success';
991 handle(status, data);
992 })
993 .fail(function(data) {
994 handle('error', data);
995 });
996 };
997
998 // Convert an Angular promise to a jQuery promise
999 CRM.toJqPromise = function(aPromise) {
1000 var jqDeferred = $.Deferred();
1001 aPromise.then(
1002 function(data) { jqDeferred.resolve(data); },
1003 function(data) { jqDeferred.reject(data); }
1004 // should we also handle progress events?
1005 );
1006 return jqDeferred.promise();
1007 };
1008
1009 CRM.toAPromise = function($q, jqPromise) {
1010 var aDeferred = $q.defer();
1011 jqPromise.then(
1012 function(data) { aDeferred.resolve(data); },
1013 function(data) { aDeferred.reject(data); }
1014 // should we also handle progress events?
1015 );
1016 return aDeferred.promise;
1017 };
1018
1019 /**
1020 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1021 */
1022 CRM.alert = function (text, title, type, options) {
1023 type = type || 'alert';
1024 title = title || '';
1025 options = options || {};
1026 if ($('#crm-notification-container').length) {
1027 var params = {
1028 text: text,
1029 title: title,
1030 type: type
1031 };
1032 // By default, don't expire errors and messages containing links
1033 var extra = {
1034 expires: (type == 'error' || text.indexOf('<a ') > -1) ? 0 : (text ? 10000 : 5000),
1035 unique: true
1036 };
1037 options = $.extend(extra, options);
1038 options.expires = options.expires === false ? 0 : parseInt(options.expires, 10);
1039 if (options.unique && options.unique !== '0') {
1040 $('#crm-notification-container .ui-notify-message').each(function () {
1041 if (title === $('h1', this).html() && text === $('.notify-content', this).html()) {
1042 $('.icon.ui-notify-close', this).click();
1043 }
1044 });
1045 }
1046 return $('#crm-notification-container').notify('create', params, options);
1047 }
1048 else {
1049 if (title.length) {
1050 text = title + "\n" + text;
1051 }
1052 alert(text);
1053 return null;
1054 }
1055 };
1056
1057 /**
1058 * Close whichever alert contains the given node
1059 *
1060 * @param node
1061 */
1062 CRM.closeAlertByChild = function (node) {
1063 $(node).closest('.ui-notify-message').find('.icon.ui-notify-close').click();
1064 };
1065
1066 /**
1067 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1068 */
1069 CRM.confirm = function (options) {
1070 var dialog, url, msg, buttons = [], settings = {
1071 title: ts('Confirm'),
1072 message: ts('Are you sure you want to continue?'),
1073 url: null,
1074 width: 'auto',
1075 height: 'auto',
1076 resizable: false,
1077 dialogClass: 'crm-container crm-confirm',
1078 close: function () {
1079 $(this).dialog('destroy').remove();
1080 },
1081 options: {
1082 no: ts('Cancel'),
1083 yes: ts('Continue')
1084 }
1085 };
1086 if (options && options.url) {
1087 settings.resizable = true;
1088 settings.height = '50%';
1089 }
1090 $.extend(settings, ($.isFunction(options) ? arguments[1] : options) || {});
1091 settings = CRM.utils.adjustDialogDefaults(settings);
1092 if (!settings.buttons && $.isPlainObject(settings.options)) {
1093 $.each(settings.options, function(op, label) {
1094 buttons.push({
1095 text: label,
1096 'data-op': op,
1097 icons: {primary: op === 'no' ? 'ui-icon-close' : 'ui-icon-check'},
1098 click: function() {
1099 var event = $.Event('crmConfirm:' + op);
1100 $(this).trigger(event);
1101 if (!event.isDefaultPrevented()) {
1102 dialog.dialog('close');
1103 }
1104 }
1105 });
1106 });
1107 // Order buttons so that "no" goes on the right-hand side
1108 settings.buttons = _.sortBy(buttons, 'data-op').reverse();
1109 }
1110 url = settings.url;
1111 msg = url ? '' : settings.message;
1112 delete settings.options;
1113 delete settings.message;
1114 delete settings.url;
1115 dialog = $('<div class="crm-confirm-dialog"></div>').html(msg || '').dialog(settings);
1116 if ($.isFunction(options)) {
1117 dialog.on('crmConfirm:yes', options);
1118 }
1119 if (url) {
1120 CRM.loadPage(url, {target: dialog});
1121 }
1122 else {
1123 dialog.trigger('crmLoad');
1124 }
1125 return dialog;
1126 };
1127
1128 /** provides a local copy of ts for a domain */
1129 CRM.ts = function(domain) {
1130 return function(message, options) {
1131 if (domain) {
1132 options = $.extend(options || {}, {domain: domain});
1133 }
1134 return ts(message, options);
1135 };
1136 };
1137
1138 CRM.addStrings = function(domain, strings) {
1139 var bucket = (domain == 'civicrm' ? 'strings' : 'strings::' + domain);
1140 CRM[bucket] = CRM[bucket] || {};
1141 _.extend(CRM[bucket], strings);
1142 };
1143
1144 /**
1145 * @see https://wiki.civicrm.org/confluence/display/CRMDOC/Notification+Reference
1146 */
1147 $.fn.crmError = function (text, title, options) {
1148 title = title || '';
1149 text = text || '';
1150 options = options || {};
1151
1152 var extra = {
1153 expires: 0
1154 };
1155 if ($(this).length) {
1156 if (title === '') {
1157 var label = $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]').not('[generated=true]');
1158 if (label.length) {
1159 label.addClass('crm-error');
1160 var $label = label.clone();
1161 if (text === '' && $('.crm-marker', $label).length > 0) {
1162 text = $('.crm-marker', $label).attr('title');
1163 }
1164 $('.crm-marker', $label).remove();
1165 title = $label.text();
1166 }
1167 }
1168 $(this).addClass('crm-error');
1169 }
1170 var msg = CRM.alert(text, title, 'error', $.extend(extra, options));
1171 if ($(this).length) {
1172 var ele = $(this);
1173 setTimeout(function () {
1174 ele.one('change', function () {
1175 if (msg && msg.close) msg.close();
1176 ele.removeClass('error');
1177 label.removeClass('crm-error');
1178 });
1179 }, 1000);
1180 }
1181 return msg;
1182 };
1183
1184 // Display system alerts through js notifications
1185 function messagesFromMarkup() {
1186 $('div.messages:visible', this).not('.help').not('.no-popup').each(function () {
1187 var text, title = '';
1188 $(this).removeClass('status messages');
1189 var type = $(this).attr('class').split(' ')[0] || 'alert';
1190 type = type.replace('crm-', '');
1191 $('.icon', this).remove();
1192 if ($('.msg-text', this).length > 0) {
1193 text = $('.msg-text', this).html();
1194 title = $('.msg-title', this).html();
1195 }
1196 else {
1197 text = $(this).html();
1198 }
1199 var options = $(this).data('options') || {};
1200 $(this).remove();
1201 // Duplicates were already removed server-side
1202 options.unique = false;
1203 CRM.alert(text, title, type, options);
1204 });
1205 // Handle qf form errors
1206 $('form :input.error', this).one('blur', function() {
1207 $('.ui-notify-message.error a.ui-notify-close').click();
1208 $(this).removeClass('error');
1209 $(this).next('span.crm-error').remove();
1210 $('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
1211 .removeClass('crm-error')
1212 .find('.crm-error').removeClass('crm-error');
1213 });
1214 }
1215
1216 /**
1217 * Improve blockUI when used with jQuery dialog
1218 */
1219 var originalBlock = $.fn.block,
1220 originalUnblock = $.fn.unblock;
1221
1222 $.fn.block = function(opts) {
1223 if ($(this).is('.ui-dialog-content')) {
1224 originalBlock.call($(this).parents('.ui-dialog'), opts);
1225 return $(this);
1226 }
1227 return originalBlock.call(this, opts);
1228 };
1229 $.fn.unblock = function(opts) {
1230 if ($(this).is('.ui-dialog-content')) {
1231 originalUnblock.call($(this).parents('.ui-dialog'), opts);
1232 return $(this);
1233 }
1234 return originalUnblock.call(this, opts);
1235 };
1236
1237 // Preprocess all CRM ajax calls to display messages
1238 $(document).ajaxSuccess(function(event, xhr, settings) {
1239 try {
1240 if ((!settings.dataType || settings.dataType == 'json') && xhr.responseText) {
1241 var response = $.parseJSON(xhr.responseText);
1242 if (typeof(response.crmMessages) == 'object') {
1243 $.each(response.crmMessages, function(n, msg) {
1244 CRM.alert(msg.text, msg.title, msg.type, msg.options);
1245 });
1246 }
1247 if (response.backtrace) {
1248 CRM.console('log', response.backtrace);
1249 }
1250 if (typeof response.deprecated === 'string') {
1251 CRM.console('warn', response.deprecated);
1252 }
1253 }
1254 }
1255 // Ignore errors thrown by parseJSON
1256 catch (e) {}
1257 });
1258
1259 $(function () {
1260 $.blockUI.defaults.message = null;
1261 $.blockUI.defaults.ignoreIfBlocked = true;
1262
1263 if ($('#crm-container').hasClass('crm-public')) {
1264 $.fn.select2.defaults.dropdownCssClass = $.ui.dialog.prototype.options.dialogClass = 'crm-container crm-public';
1265 }
1266
1267 // Trigger crmLoad on initial content for consistency. It will also be triggered for ajax-loaded content.
1268 $('.crm-container').trigger('crmLoad');
1269
1270 if ($('#crm-notification-container').length) {
1271 // Initialize notifications
1272 $('#crm-notification-container').notify();
1273 messagesFromMarkup.call($('#crm-container'));
1274 }
1275
1276 // Hide CiviCRM menubar when editor is fullscreen
1277 if (window.CKEDITOR) {
1278 CKEDITOR.on('instanceCreated', function (e) {
1279 e.editor.on('maximize', function (e) {
1280 $('#civicrm-menu').toggle(e.data === 2);
1281 });
1282 });
1283 }
1284
1285 $('body')
1286 // bind the event for image popup
1287 .on('click', 'a.crm-image-popup', function(e) {
1288 CRM.confirm({
1289 title: ts('Preview'),
1290 resizable: true,
1291 // Prevent overlap with the menubar
1292 maxHeight: $(window).height() - 30,
1293 position: {my: 'center', at: 'center center+15', of: window},
1294 message: '<div class="crm-custom-image-popup"><img style="max-width: 100%" src="' + $(this).attr('href') + '"></div>',
1295 options: null
1296 });
1297 e.preventDefault();
1298 })
1299
1300 .on('click', function (event) {
1301 $('.btn-slide-active').removeClass('btn-slide-active').find('.panel').hide();
1302 if ($(event.target).is('.btn-slide')) {
1303 $(event.target).addClass('btn-slide-active').find('.panel').show();
1304 }
1305 })
1306
1307 // Handle clear button for form elements
1308 .on('click', 'a.crm-clear-link', function() {
1309 $(this).css({visibility: 'hidden'}).siblings('.crm-form-radio:checked').prop('checked', false).trigger('change', ['crmClear']);
1310 $(this).siblings('input:text').val('').trigger('change', ['crmClear']);
1311 return false;
1312 })
1313 .on('change', 'input.crm-form-radio:checked', function() {
1314 $(this).siblings('.crm-clear-link').css({visibility: ''});
1315 })
1316
1317 // Allow normal clicking of links within accordions
1318 .on('click.crmAccordions', 'div.crm-accordion-header a', function (e) {
1319 e.stopPropagation();
1320 })
1321 // Handle accordions
1322 .on('click.crmAccordions', '.crm-accordion-header, .crm-collapsible .collapsible-title', function (e) {
1323 if ($(this).parent().hasClass('collapsed')) {
1324 $(this).next().css('display', 'none').slideDown(200);
1325 }
1326 else {
1327 $(this).next().css('display', 'block').slideUp(200);
1328 }
1329 $(this).parent().toggleClass('collapsed');
1330 e.preventDefault();
1331 });
1332
1333 $().crmtooltip();
1334 });
1335 /**
1336 * @deprecated
1337 */
1338 $.fn.crmAccordions = function () {
1339 CRM.console('warn', 'Warning: $.crmAccordions was called. This function is deprecated and should not be used.');
1340 };
1341 /**
1342 * Collapse or expand an accordion
1343 * @param speed
1344 */
1345 $.fn.crmAccordionToggle = function (speed) {
1346 $(this).each(function () {
1347 if ($(this).hasClass('collapsed')) {
1348 $('.crm-accordion-body', this).first().css('display', 'none').slideDown(speed);
1349 }
1350 else {
1351 $('.crm-accordion-body', this).first().css('display', 'block').slideUp(speed);
1352 }
1353 $(this).toggleClass('collapsed');
1354 });
1355 };
1356
1357 /**
1358 * Clientside currency formatting
1359 * @param number value
1360 * @param [optional] boolean onlyNumber - if true, we return formated amount without currency sign
1361 * @param [optional] string format - currency representation of the number 1234.56
1362 * @return string
1363 */
1364 var currencyTemplate;
1365 CRM.formatMoney = function(value, onlyNumber, format) {
1366 var decimal, separator, sign, i, j, result;
1367 if (value === 'init' && format) {
1368 currencyTemplate = format;
1369 return;
1370 }
1371 format = format || currencyTemplate;
1372 result = /1(.?)234(.?)56/.exec(format);
1373 if (result === null) {
1374 return 'Invalid format passed to CRM.formatMoney';
1375 }
1376 separator = result[1];
1377 decimal = result[2];
1378 sign = (value < 0) ? '-' : '';
1379 //extracting the absolute value of the integer part of the number and converting to string
1380 i = parseInt(value = Math.abs(value).toFixed(2)) + '';
1381 j = ((j = i.length) > 3) ? j % 3 : 0;
1382 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) : '');
1383 if ( onlyNumber ) {
1384 return result;
1385 }
1386 return format.replace(/1.*234.*56/, result);
1387 };
1388
1389 CRM.console = function(method, title, msg) {
1390 if (window.console) {
1391 method = $.isFunction(console[method]) ? method : 'log';
1392 if (msg === undefined) {
1393 return console[method](title);
1394 } else {
1395 return console[method](title, msg);
1396 }
1397 }
1398 };
1399
1400 // Determine if a user has a given permission.
1401 // @see CRM_Core_Resources::addPermissions
1402 CRM.checkPerm = function(perm) {
1403 return CRM.permissions[perm];
1404 };
1405
1406 // Round while preserving sigfigs
1407 CRM.utils.sigfig = function(n, digits) {
1408 var len = ("" + n).length;
1409 var scale = Math.pow(10.0, len-digits);
1410 return Math.round(n / scale) * scale;
1411 };
1412 })(jQuery, _);