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