Merge pull request #19375 from civicrm/5.34
[civicrm-core.git] / ang / crmUi.js
CommitLineData
685acae4 1/// crmUi: Sundry UI helpers
2(function (angular, $, _) {
3
835fcb5e 4 var uidCount = 0,
826f5ace
CW
5 pageTitle = 'CiviCRM',
6 documentTitle = 'CiviCRM';
f8601d61 7
0b199194 8 angular.module('crmUi', CRM.angRequires('crmUi'))
030dce01 9
0cbed02c 10 // example <div crm-ui-accordion crm-title="ts('My Title')" crm-collapsed="true">...content...</div>
e4f46be0 11 // WISHLIST: crmCollapsed should support two-way/continuous binding
030dce01
TO
12 .directive('crmUiAccordion', function() {
13 return {
14 scope: {
207819ec 15 crmUiAccordion: '='
030dce01 16 },
207819ec 17 template: '<div ng-class="cssClasses"><div class="crm-accordion-header">{{crmUiAccordion.title}} <a crm-ui-help="help" ng-if="help"></a></div><div class="crm-accordion-body" ng-transclude></div></div>',
030dce01 18 transclude: true,
0cbed02c
TO
19 link: function (scope, element, attrs) {
20 scope.cssClasses = {
207819ec
CW
21 'crm-accordion-wrapper': true,
22 collapsed: scope.crmUiAccordion.collapsed
0cbed02c 23 };
207819ec
CW
24 scope.help = null;
25 scope.$watch('crmUiAccordion', function(crmUiAccordion) {
26 if (crmUiAccordion && crmUiAccordion.help) {
27 scope.help = crmUiAccordion.help.clone({}, {
28 title: crmUiAccordion.title
29 });
30 }
31 });
0cbed02c 32 }
030dce01
TO
33 };
34 })
35
69a65adc
TO
36 // Examples:
37 // crmUiAlert({text: 'My text', title: 'My title', type: 'error'});
38 // crmUiAlert({template: '<a ng-click="ok()">Hello</a>', scope: $scope.$new()});
39 // var h = crmUiAlert({templateUrl: '~/crmFoo/alert.html', scope: $scope.$new()});
40 // ... h.close(); ...
41 .service('crmUiAlert', function($compile, $rootScope, $templateRequest, $q) {
42 var count = 0;
43 return function crmUiAlert(params) {
44 var id = 'crmUiAlert_' + (++count);
45 var tpl = null;
46 if (params.templateUrl) {
47 tpl = $templateRequest(params.templateUrl);
48 }
49 else if (params.template) {
50 tpl = params.template;
51 }
52 if (tpl) {
53 params.text = '<div id="' + id + '"></div>'; // temporary stub
54 }
55 var result = CRM.alert(params.text, params.title, params.type, params.options);
56 if (tpl) {
57 $q.when(tpl, function(html) {
58 var scope = params.scope || $rootScope.$new();
59 var linker = $compile(html);
60 $('#' + id).append($(linker(scope)));
61 });
62 }
63 return result;
64 };
65 })
66
a42344f4
CW
67 // Simple wrapper around $.crmDatepicker.
68 // example with no time input: <input crm-ui-datepicker="{time: false}" ng-model="myobj.datefield"/>
70e7470f 69 // example with custom date format: <input crm-ui-datepicker="{date: 'm/d/y'}" ng-model="myobj.datefield"/>
a42344f4 70 .directive('crmUiDatepicker', function () {
510d515d
TO
71 return {
72 restrict: 'AE',
2f31bc16 73 require: 'ngModel',
510d515d 74 scope: {
a42344f4 75 crmUiDatepicker: '='
510d515d 76 },
2f31bc16 77 link: function (scope, element, attrs, ngModel) {
ac5009c1
CW
78 ngModel.$render = function () {
79 element.val(ngModel.$viewValue).change();
80 };
81
a42344f4
CW
82 element
83 .crmDatepicker(scope.crmUiDatepicker)
84 .on('change', function() {
ac5009c1 85 var requiredLength = 19;
a42344f4
CW
86 if (scope.crmUiDatepicker && scope.crmUiDatepicker.time === false) {
87 requiredLength = 10;
88 }
89 if (scope.crmUiDatepicker && scope.crmUiDatepicker.date === false) {
ac5009c1 90 requiredLength = 8;
a42344f4
CW
91 }
92 ngModel.$setValidity('incompleteDateTime', !($(this).val().length && $(this).val().length !== requiredLength));
510d515d 93 });
510d515d
TO
94 }
95 };
96 })
97
c4c69e7b
TO
98 // Display debug information (if available)
99 // For richer DX, checkout Batarang/ng-inspector (Chrome/Safari), or AngScope/ng-inspect (Firefox).
100 // example: <div crm-ui-debug="myobject" />
101 .directive('crmUiDebug', function ($location) {
102 return {
103 restrict: 'AE',
104 scope: {
105 crmUiDebug: '@'
106 },
107 template: function() {
108 var args = $location.search();
10d00207
TO
109 if (args && args.angularDebug) {
110 var jsonTpl = (CRM.angular.modules.indexOf('jsonFormatter') < 0) ? '<pre>{{data|json}}</pre>' : '<json-formatter json="data" open="1"></json-formatter>';
111 return '<div crm-ui-accordion=\'{title: ts("Debug (%1)", {1: crmUiDebug}), collapsed: true}\'>' + jsonTpl + '</div>';
112 }
113 return '';
c4c69e7b
TO
114 },
115 link: function(scope, element, attrs) {
116 var args = $location.search();
117 if (args && args.angularDebug) {
118 scope.ts = CRM.ts(null);
119 scope.$parent.$watch(attrs.crmUiDebug, function(data) {
120 scope.data = data;
121 });
122 }
123 }
124 };
125 })
126
489c2674 127 // Display a field/row in a field list
c4256f35
CW
128 // example: <div crm-ui-field="{title: ts('My Field')}"> {{mydata}} </div>
129 // example: <div crm-ui-field="{name: 'subform.myfield', title: ts('My Field')}"> <input crm-ui-id="subform.myfield" name="myfield" /> </div>
130 // example: <div crm-ui-field="{name: 'subform.myfield', title: ts('My Field')}"> <input crm-ui-id="subform.myfield" name="myfield" required /> </div>
3ca16b89 131 // example: <div crm-ui-field="{name: 'subform.myfield', title: ts('My Field'), help: hs('help_field_name'), required: true}"> {{mydata}} </div>
3cc9c048 132 .directive('crmUiField', function() {
489c2674
TO
133 // Note: When writing new templates, the "label" position is particular. See/patch "var label" below.
134 var templateUrls = {
ef5d18a1
TO
135 default: '~/crmUi/field.html',
136 checkbox: '~/crmUi/field-cb.html'
489c2674
TO
137 };
138
139 return {
f8601d61
TO
140 require: '^crmUiIdScope',
141 restrict: 'EA',
489c2674 142 scope: {
d8356d0b 143 // {title, name, help, helpFile}
c4256f35 144 crmUiField: '='
489c2674
TO
145 },
146 templateUrl: function(tElement, tAttrs){
147 var layout = tAttrs.crmLayout ? tAttrs.crmLayout : 'default';
148 return templateUrls[layout];
149 },
150 transclude: true,
f8601d61 151 link: function (scope, element, attrs, crmUiIdCtrl) {
489c2674 152 $(element).addClass('crm-section');
563ba527 153 scope.help = null;
dfc2a868
TO
154 scope.$watch('crmUiField', function(crmUiField) {
155 if (crmUiField && crmUiField.help) {
156 scope.help = crmUiField.help.clone({}, {
157 title: crmUiField.title
158 });
159 }
160 });
f8601d61
TO
161 }
162 };
163 })
164
165 // example: <div ng-form="subform" crm-ui-id-scope><label crm-ui-for="subform.foo">Foo:</label><input crm-ui-id="subform.foo" name="foo"/></div>
166 .directive('crmUiId', function () {
167 return {
168 require: '^crmUiIdScope',
169 restrict: 'EA',
3cc9c048
TO
170 link: {
171 pre: function (scope, element, attrs, crmUiIdCtrl) {
172 var id = crmUiIdCtrl.get(attrs.crmUiId);
173 element.attr('id', id);
174 }
f8601d61
TO
175 }
176 };
177 })
489c2674 178
dfc2a868
TO
179 // for example, see crmUiHelp
180 .service('crmUiHelp', function(){
181 // example: var h = new FieldHelp({id: 'foo'}); h.open();
182 function FieldHelp(options) {
183 this.options = options;
184 }
185 angular.extend(FieldHelp.prototype, {
186 get: function(n) {
187 return this.options[n];
188 },
189 open: function open() {
dfc2a868
TO
190 CRM.help(this.options.title, {id: this.options.id, file: this.options.file});
191 },
192 clone: function clone(options, defaults) {
dfc2a868
TO
193 return new FieldHelp(angular.extend({}, defaults, this.options, options));
194 }
195 });
196
563ba527 197 // example: var hs = crmUiHelp({file: 'CRM/Foo/Bar'});
dfc2a868 198 return function(defaults){
563ba527
TO
199 // example: hs('myfield')
200 // example: hs({id: 'myfield', title: 'Foo Bar', file: 'Whiz/Bang'})
dfc2a868
TO
201 return function(options) {
202 if (_.isString(options)) {
203 options = {id: options};
204 }
205 return new FieldHelp(angular.extend({}, defaults, options));
6dc9d4ca
TO
206 };
207 };
dfc2a868
TO
208 })
209
210 // Display a help icon
9a593827 211 // Example: Use a default *.hlp file
563ba527
TO
212 // scope.hs = crmUiHelp({file: 'Path/To/Help/File'});
213 // HTML: <a crm-ui-help="hs({title:ts('My Field'), id:'my_field'})">
9a593827 214 // Example: Use an explicit *.hlp file
563ba527 215 // HTML: <a crm-ui-help="hs({title:ts('My Field'), id:'my_field', file:'CRM/Foo/Bar'})">
a517b78a
CW
216 .directive('crmUiHelp', function() {
217 return {
218 restrict: 'EA',
563ba527
TO
219 link: function(scope, element, attrs) {
220 setTimeout(function() {
221 var crmUiHelp = scope.$eval(attrs.crmUiHelp);
dfc2a868
TO
222 var title = crmUiHelp && crmUiHelp.get('title') ? ts('%1 Help', {1: crmUiHelp.get('title')}) : ts('Help');
223 element.attr('title', title);
563ba527 224 }, 50);
dfc2a868 225
a517b78a
CW
226 element
227 .addClass('helpicon')
a517b78a
CW
228 .attr('href', '#')
229 .on('click', function(e) {
230 e.preventDefault();
563ba527 231 scope.$eval(attrs.crmUiHelp).open();
a517b78a
CW
232 });
233 }
234 };
235 })
236
f8601d61
TO
237 // example: <div ng-form="subform" crm-ui-id-scope><label crm-ui-for="subform.foo">Foo:</label><input crm-ui-id="subform.foo" name="foo"/></div>
238 .directive('crmUiFor', function ($parse, $timeout) {
239 return {
240 require: '^crmUiIdScope',
241 restrict: 'EA',
242 template: '<span ng-class="cssClasses"><span ng-transclude/><span crm-ui-visible="crmIsRequired" class="crm-marker" title="This field is required.">*</span></span>',
243 transclude: true,
244 link: function (scope, element, attrs, crmUiIdCtrl) {
245 scope.crmIsRequired = false;
246 scope.cssClasses = {};
489c2674 247
f8601d61 248 if (!attrs.crmUiFor) return;
489c2674 249
f8601d61
TO
250 var id = crmUiIdCtrl.get(attrs.crmUiFor);
251 element.attr('for', id);
252 var ngModel = null;
489c2674 253
f8601d61
TO
254 var updateCss = function () {
255 scope.cssClasses['crm-error'] = !ngModel.$valid && !ngModel.$pristine;
256 };
489c2674 257
f8601d61
TO
258 // Note: if target element is dynamically generated (eg via ngInclude), then it may not be available
259 // immediately for initialization. Use retries/retryDelay to initialize such elements.
260 var init = function (retries, retryDelay) {
261 var input = $('#' + id);
3ca16b89 262 if (input.length === 0 && !attrs.crmUiForceRequired) {
f8601d61
TO
263 if (retries) {
264 $timeout(function(){
265 init(retries-1, retryDelay);
266 }, retryDelay);
267 }
268 return;
269 }
489c2674 270
3ca16b89
TO
271 if (attrs.crmUiForceRequired) {
272 scope.crmIsRequired = true;
273 return;
274 }
275
f8601d61
TO
276 var tgtScope = scope;//.$parent;
277 if (attrs.crmDepth) {
278 for (var i = attrs.crmDepth; i > 0; i--) {
279 tgtScope = tgtScope.$parent;
280 }
281 }
489c2674 282
f8601d61
TO
283 if (input.attr('ng-required')) {
284 scope.crmIsRequired = scope.$parent.$eval(input.attr('ng-required'));
285 scope.$parent.$watch(input.attr('ng-required'), function (isRequired) {
286 scope.crmIsRequired = isRequired;
287 });
288 }
289 else {
f2bad133 290 scope.crmIsRequired = input.prop('required');
f8601d61 291 }
489c2674 292
f8601d61
TO
293 ngModel = $parse(attrs.crmUiFor)(tgtScope);
294 if (ngModel) {
295 ngModel.$viewChangeListeners.push(updateCss);
296 }
297 };
489c2674 298
f8601d61
TO
299 $timeout(function(){
300 init(3, 100);
489c2674
TO
301 });
302 }
303 };
304 })
305
d376f33e 306 // Define a scope in which a name like "subform.foo" maps to a unique ID.
f8601d61
TO
307 // example: <div ng-form="subform" crm-ui-id-scope><label crm-ui-for="subform.foo">Foo:</label><input crm-ui-id="subform.foo" name="foo"/></div>
308 .directive('crmUiIdScope', function () {
309 return {
310 restrict: 'EA',
311 scope: {},
312 controllerAs: 'crmUiIdCtrl',
313 controller: function($scope) {
314 var ids = {};
315 this.get = function(name) {
316 if (!ids[name]) {
317 ids[name] = "crmUiId_" + (++uidCount);
318 }
319 return ids[name];
f2bad133 320 };
f8601d61
TO
321 },
322 link: function (scope, element, attrs) {}
323 };
324 })
325
d376f33e 326 // Display an HTML blurb inside an IFRAME.
107c5cc7 327 // example: <iframe crm-ui-iframe="getHtmlContent()"></iframe>
79cf1116 328 // example: <iframe crm-ui-iframe crm-ui-iframe-src="getUrl()"></iframe>
107c5cc7
TO
329 .directive('crmUiIframe', function ($parse) {
330 return {
331 scope: {
79cf1116
TO
332 crmUiIframeSrc: '@', // expression which evaluates to a URL
333 crmUiIframe: '@' // expression which evaluates to HTML content
107c5cc7
TO
334 },
335 link: function (scope, elm, attrs) {
336 var iframe = $(elm)[0];
337 iframe.setAttribute('width', '100%');
910a6c11 338 iframe.setAttribute('height', '250px');
107c5cc7
TO
339 iframe.setAttribute('frameborder', '0');
340
341 var refresh = function () {
79cf1116
TO
342 if (attrs.crmUiIframeSrc) {
343 iframe.setAttribute('src', scope.$parent.$eval(attrs.crmUiIframeSrc));
107c5cc7 344 }
79cf1116
TO
345 else {
346 var iframeHtml = scope.$parent.$eval(attrs.crmUiIframe);
107c5cc7 347
79cf1116
TO
348 var doc = iframe.document;
349 if (iframe.contentDocument) {
350 doc = iframe.contentDocument;
351 }
352 else if (iframe.contentWindow) {
353 doc = iframe.contentWindow.document;
354 }
355
356 doc.open();
357 doc.writeln(iframeHtml);
358 doc.close();
359 }
f2bad133 360 };
107c5cc7 361
02cd9764
CW
362 // If the iframe is in a dialog, respond to resize events
363 $(elm).parent().on('dialogresize dialogopen', function(e, ui) {
364 $(this).css({padding: '0', margin: '0', overflow: 'hidden'});
365 iframe.setAttribute('height', '' + $(this).innerHeight() + 'px');
366 });
367
910a6c11
MR
368 $(elm).parent().on('dialogresize', function(e, ui) {
369 iframe.setAttribute('class', 'resized');
370 });
371
107c5cc7 372 scope.$parent.$watch(attrs.crmUiIframe, refresh);
107c5cc7
TO
373 }
374 };
375 })
376
f8f85764
TO
377 // Example:
378 // <a ng-click="$broadcast('my-insert-target', 'some new text')>Insert</a>
379 // <textarea crm-ui-insert-rx='my-insert-target'></textarea>
f8f85764
TO
380 .directive('crmUiInsertRx', function() {
381 return {
382 link: function(scope, element, attrs) {
383 scope.$on(attrs.crmUiInsertRx, function(e, tokenName) {
c62731c3
TC
384 CRM.wysiwyg.insert(element, tokenName);
385 $(element).select2('close').select2('val', '');
f91b1c0c 386 CRM.wysiwyg.focus(element);
f8f85764
TO
387 });
388 }
389 };
390 })
391
d376f33e 392 // Define a rich text editor.
3cc9c048
TO
393 // example: <textarea crm-ui-id="myForm.body_html" crm-ui-richtext name="body_html" ng-model="mailing.body_html"></textarea>
394 .directive('crmUiRichtext', function ($timeout) {
38737af8
TO
395 return {
396 require: '?ngModel',
397 link: function (scope, elm, attr, ngModel) {
65d3e04c 398
c62731c3 399 var editor = CRM.wysiwyg.create(elm);
38737af8
TO
400 if (!ngModel) {
401 return;
402 }
403
07996588 404 if (attr.ngBlur) {
f91b1c0c
CW
405 $(elm).on('blur', function() {
406 $timeout(function() {
07996588 407 scope.$eval(attr.ngBlur);
d03e0d13 408 });
07996588
TO
409 });
410 }
411
f91b1c0c 412 ngModel.$render = function(value) {
c63f9bfb 413 editor.done(function() {
495f94fb 414 CRM.wysiwyg.setVal(elm, ngModel.$viewValue || '');
c63f9bfb 415 });
38737af8
TO
416 };
417 }
418 };
419 })
420
d376f33e 421 // Display a lock icon (based on a boolean).
685acae4 422 // example: <a crm-ui-lock binding="mymodel.boolfield"></a>
423 // example: <a crm-ui-lock
424 // binding="mymodel.boolfield"
425 // title-locked="ts('Boolfield is locked')"
426 // title-unlocked="ts('Boolfield is unlocked')"></a>
427 .directive('crmUiLock', function ($parse, $rootScope) {
428 var defaultVal = function (defaultValue) {
429 var f = function (scope) {
430 return defaultValue;
f2bad133 431 };
685acae4 432 f.assign = function (scope, value) {
433 // ignore changes
f2bad133 434 };
685acae4 435 return f;
436 };
437
438 // like $parse, but accepts a defaultValue in case expr is undefined
439 var parse = function (expr, defaultValue) {
440 return expr ? $parse(expr) : defaultVal(defaultValue);
441 };
442
443 return {
444 template: '',
445 link: function (scope, element, attrs) {
f2bad133
TO
446 var binding = parse(attrs.binding, true);
447 var titleLocked = parse(attrs.titleLocked, ts('Locked'));
448 var titleUnlocked = parse(attrs.titleUnlocked, ts('Unlocked'));
685acae4 449
77ec5a8d 450 $(element).addClass('crm-i lock-button');
685acae4 451 var refresh = function () {
452 var locked = binding(scope);
453 if (locked) {
454 $(element)
77ec5a8d
AH
455 .removeClass('fa-unlock')
456 .addClass('fa-lock')
685acae4 457 .prop('title', titleLocked(scope))
458 ;
459 }
460 else {
461 $(element)
77ec5a8d
AH
462 .removeClass('fa-lock')
463 .addClass('fa-unlock')
685acae4 464 .prop('title', titleUnlocked(scope))
465 ;
466 }
467 };
468
469 $(element).click(function () {
470 binding.assign(scope, !binding(scope));
471 //scope.$digest();
472 $rootScope.$digest();
473 });
474
475 scope.$watch(attrs.binding, refresh);
476 scope.$watch(attrs.titleLocked, refresh);
477 scope.$watch(attrs.titleUnlocked, refresh);
478
479 refresh();
480 }
481 };
482 })
030dce01 483
b21c9cdc
TO
484 // CrmUiOrderCtrl is a controller class which manages sort orderings.
485 // Ex:
486 // JS: $scope.myOrder = new CrmUiOrderCtrl(['+field1', '-field2]);
487 // $scope.myOrder.toggle('field1');
488 // $scope.myOrder.setDir('field2', '');
489 // HTML: <tr ng-repeat="... | order:myOrder.get()">...</tr>
490 .service('CrmUiOrderCtrl', function(){
b21c9cdc
TO
491 function CrmUiOrderCtrl(defaults){
492 this.values = defaults;
493 }
494 angular.extend(CrmUiOrderCtrl.prototype, {
495 get: function get() {
496 return this.values;
497 },
498 getDir: function getDir(name) {
499 if (this.values.indexOf(name) >= 0 || this.values.indexOf('+' + name) >= 0) {
500 return '+';
501 }
502 if (this.values.indexOf('-' + name) >= 0) {
503 return '-';
504 }
505 return '';
506 },
507 // @return bool TRUE if something is removed
508 remove: function remove(name) {
509 var idx = this.values.indexOf(name);
510 if (idx >= 0) {
511 this.values.splice(idx, 1);
512 return true;
513 }
514 else {
515 return false;
516 }
517 },
518 setDir: function setDir(name, dir) {
519 return this.toggle(name, dir);
520 },
521 // Toggle sort order on a field.
522 // To set a specific order, pass optional parameter 'next' ('+', '-', or '').
523 toggle: function toggle(name, next) {
524 if (!next && next !== '') {
525 next = '+';
526 if (this.remove(name) || this.remove('+' + name)) {
527 next = '-';
528 }
529 if (this.remove('-' + name)) {
530 next = '';
531 }
532 }
533
534 if (next == '+') {
535 this.values.unshift('+' + name);
536 }
537 else if (next == '-') {
538 this.values.unshift('-' + name);
539 }
540 }
541 });
542 return CrmUiOrderCtrl;
543 })
544
545 // Define a controller which manages sort order. You may interact with the controller
546 // directly ("myOrder.toggle('fieldname')") order using the helper, crm-ui-order-by.
547 // example:
548 // <span crm-ui-order="{var: 'myOrder', defaults: {'-myField'}}"></span>
549 // <th><a crm-ui-order-by="[myOrder,'myField']">My Field</a></th>
550 // <tr ng-repeat="... | order:myOrder.get()">...</tr>
551 // <button ng-click="myOrder.toggle('myField')">
552 .directive('crmUiOrder', function(CrmUiOrderCtrl) {
553 return {
554 link: function(scope, element, attrs){
555 var options = angular.extend({var: 'crmUiOrderBy'}, scope.$eval(attrs.crmUiOrder));
556 scope[options.var] = new CrmUiOrderCtrl(options.defaults);
557 }
558 };
559 })
560
561 // For usage, see crmUiOrder (above)
562 .directive('crmUiOrderBy', function() {
563 return {
564 link: function(scope, element, attrs) {
565 function updateClass(crmUiOrderCtrl, name) {
566 var dir = crmUiOrderCtrl.getDir(name);
567 element
568 .toggleClass('sorting_asc', dir === '+')
569 .toggleClass('sorting_desc', dir === '-')
570 .toggleClass('sorting', dir === '');
571 }
572
573 element.on('click', function(e){
574 var tgt = scope.$eval(attrs.crmUiOrderBy);
575 tgt[0].toggle(tgt[1]);
576 updateClass(tgt[0], tgt[1]);
577 e.preventDefault();
578 scope.$digest();
579 });
580
581 var tgt = scope.$eval(attrs.crmUiOrderBy);
582 updateClass(tgt[0], tgt[1]);
583 }
584 };
585 })
586
d376f33e 587 // Display a fancy SELECT (based on select2).
ebfe3efb
TO
588 // usage: <select crm-ui-select="{placeholder:'Something',allowClear:true,...}" ng-model="myobj.field"><option...></select>
589 .directive('crmUiSelect', function ($parse, $timeout) {
8c632f2b 590 return {
ebfe3efb 591 require: '?ngModel',
1d924612 592 priority: 1,
8c632f2b 593 scope: {
8674b5ac 594 crmUiSelect: '='
8c632f2b 595 },
ebfe3efb 596 link: function (scope, element, attrs, ngModel) {
8c632f2b
TO
597 // In cases where UI initiates update, there may be an extra
598 // call to refreshUI, but it doesn't create a cycle.
599
c81696a6
CW
600 if (ngModel) {
601 ngModel.$render = function () {
602 $timeout(function () {
603 // ex: msg_template_id adds new item then selects it; use $timeout to ensure that
604 // new item is added before selection is made
9ed95c23
CW
605 var newVal = _.cloneDeep(ngModel.$modelValue);
606 // Fix possible data-type mismatch
607 if (typeof newVal === 'string' && element.select2('container').hasClass('select2-container-multi')) {
608 newVal = newVal.length ? newVal.split(',') : [];
609 }
610 element.select2('val', newVal);
c81696a6
CW
611 });
612 };
613 }
8c632f2b 614 function refreshModel() {
50e25421 615 var oldValue = ngModel.$viewValue, newValue = element.select2('val');
8c632f2b 616 if (oldValue != newValue) {
ebfe3efb
TO
617 scope.$parent.$apply(function () {
618 ngModel.$setViewValue(newValue);
8c632f2b 619 });
8c632f2b
TO
620 }
621 }
ebfe3efb 622
8c632f2b
TO
623 function init() {
624 // TODO watch select2-options
8c3a97ed 625 element.crmSelect2(scope.crmUiSelect || {});
c81696a6
CW
626 if (ngModel) {
627 element.on('change', refreshModel);
c81696a6 628 }
8099bfee
CW
629 }
630
631 init();
632 }
633 };
634 })
635
636 // Render a crmEntityRef widget
637 // usage: <input crm-entityref="{entity: 'Contact', select: {allowClear:true}}" ng-model="myobj.field" />
638 .directive('crmEntityref', function ($parse, $timeout) {
639 return {
640 require: '?ngModel',
641 scope: {
642 crmEntityref: '='
643 },
644 link: function (scope, element, attrs, ngModel) {
645 // In cases where UI initiates update, there may be an extra
646 // call to refreshUI, but it doesn't create a cycle.
647
648 ngModel.$render = function () {
649 $timeout(function () {
650 // ex: msg_template_id adds new item then selects it; use $timeout to ensure that
651 // new item is added before selection is made
9ed95c23
CW
652 var newVal = _.cloneDeep(ngModel.$modelValue);
653 // Fix possible data-type mismatch
654 if (typeof newVal === 'string' && element.select2('container').hasClass('select2-container-multi')) {
655 newVal = newVal.length ? newVal.split(',') : [];
656 }
657 element.select2('val', newVal);
8099bfee
CW
658 });
659 };
660 function refreshModel() {
661 var oldValue = ngModel.$viewValue, newValue = element.select2('val');
662 if (oldValue != newValue) {
663 scope.$parent.$apply(function () {
664 ngModel.$setViewValue(newValue);
665 });
666 }
667 }
668
669 function init() {
8099bfee
CW
670 // TODO can we infer "entity" from model?
671 element.crmEntityRef(scope.crmEntityref || {});
672 element.on('change', refreshModel);
673 $timeout(ngModel.$render);
8c632f2b 674 }
ebfe3efb 675
8c632f2b
TO
676 init();
677 }
678 };
679 })
680
b4fdf77a 681 // validate multiple email text
682 // usage: <input crm-multiple-email type="text" ng-model="myobj.field" />
683 .directive('crmMultipleEmail', function ($parse, $timeout) {
684 return {
685 require: 'ngModel',
686 link: function(scope, element, attrs, ctrl) {
687 ctrl.$parsers.unshift(function(viewValue) {
688 // if empty value provided simply bypass validation
689 if (_.isEmpty(viewValue)) {
690 ctrl.$setValidity('crmMultipleEmail', true);
691 return viewValue;
692 }
693
694 // split email string on basis of comma
695 var emails = viewValue.split(',');
696 // regex pattern for single email
697 var emailRegex = /\S+@\S+\.\S+/;
698
699 var validityArr = emails.map(function(str){
700 return emailRegex.test(str.trim());
701 });
702
703 if ($.inArray(false, validityArr) > -1) {
704 ctrl.$setValidity('crmMultipleEmail', false);
705 } else {
706 ctrl.$setValidity('crmMultipleEmail', true);
707 }
708 return viewValue;
709 });
710 }
711 };
712 })
b1f92f72 713 // example <div crm-ui-tab id="tab-1" crm-title="ts('My Title')" count="3">...content...</div>
5f3568fd 714 // WISHLIST: use a full Angular component instead of an incomplete jQuery wrapper
030dce01
TO
715 .directive('crmUiTab', function($parse) {
716 return {
5f3568fd
TO
717 require: '^crmUiTabSet',
718 restrict: 'EA',
030dce01 719 scope: {
5f3568fd 720 crmTitle: '@',
cf500087 721 crmIcon: '@',
b1f92f72 722 count: '@',
5f3568fd 723 id: '@'
030dce01 724 },
5f3568fd 725 template: '<div ng-transclude></div>',
030dce01 726 transclude: true,
5f3568fd
TO
727 link: function (scope, element, attrs, crmUiTabSetCtrl) {
728 crmUiTabSetCtrl.add(scope);
729 }
030dce01
TO
730 };
731 })
732
733 // example: <div crm-ui-tab-set><div crm-ui-tab crm-title="Tab 1">...</div><div crm-ui-tab crm-title="Tab 2">...</div></div>
734 .directive('crmUiTabSet', function() {
735 return {
5f3568fd
TO
736 restrict: 'EA',
737 scope: {
dcb79a31
AS
738 crmUiTabSet: '@',
739 tabSetOptions: '@'
5f3568fd 740 },
ef5d18a1 741 templateUrl: '~/crmUi/tabset.html',
030dce01 742 transclude: true,
5f3568fd
TO
743 controllerAs: 'crmUiTabSetCtrl',
744 controller: function($scope, $parse) {
745 var tabs = $scope.tabs = []; // array<$scope>
746 this.add = function(tab) {
747 if (!tab.id) throw "Tab is missing 'id'";
748 tabs.push(tab);
749 };
750 },
030dce01
TO
751 link: function (scope, element, attrs) {}
752 };
753 })
754
d376f33e 755 // Generic, field-independent form validator.
3afb86ef
TO
756 // example: <span ng-model="placeholder" crm-ui-validate="foo && bar || whiz" />
757 // example: <span ng-model="placeholder" crm-ui-validate="foo && bar || whiz" crm-ui-validate-name="myError" />
3afb86ef
TO
758 .directive('crmUiValidate', function() {
759 return {
760 restrict: 'EA',
761 require: 'ngModel',
762 link: function(scope, element, attrs, ngModel) {
763 var validationKey = attrs.crmUiValidateName ? attrs.crmUiValidateName : 'crmUiValidate';
764 scope.$watch(attrs.crmUiValidate, function(newValue){
765 ngModel.$setValidity(validationKey, !!newValue);
766 });
767 }
768 };
769 })
770
e84a11d8
TO
771 // like ng-show, but hides/displays elements using "visibility" which maintains positioning
772 // example <div crm-ui-visible="false">...content...</div>
773 .directive('crmUiVisible', function($parse) {
774 return {
775 restrict: 'EA',
776 scope: {
777 crmUiVisible: '@'
778 },
779 link: function (scope, element, attrs) {
780 var model = $parse(attrs.crmUiVisible);
781 function updatecChildren() {
782 element.css('visibility', model(scope.$parent) ? 'inherit' : 'hidden');
783 }
784 updatecChildren();
785 scope.$parent.$watch(attrs.crmUiVisible, updatecChildren);
786 }
787 };
788 })
789
6717e4b9 790 // example: <div crm-ui-wizard="myWizardCtrl"><div crm-ui-wizard-step crm-title="ts('Step 1')">...</div><div crm-ui-wizard-step crm-title="ts('Step 2')">...</div></div>
e5df45d2 791 // example with custom nav classes: <div crm-ui-wizard crm-ui-wizard-nav-class="ng-animate-out ...">...</div>
6717e4b9
TO
792 // Note: "myWizardCtrl" has various actions/properties like next() and $first().
793 // WISHLIST: Allow each step to determine if it is "complete" / "valid" / "selectable"
794 // WISHLIST: Allow each step to enable/disable (show/hide) itself
030dce01
TO
795 .directive('crmUiWizard', function() {
796 return {
6717e4b9
TO
797 restrict: 'EA',
798 scope: {
e5df45d2 799 crmUiWizard: '@',
37f1d23b 800 crmUiWizardNavClass: '@' // string, A list of classes that will be added to the nav items
6717e4b9 801 },
ef5d18a1 802 templateUrl: '~/crmUi/wizard.html',
030dce01 803 transclude: true,
6717e4b9
TO
804 controllerAs: 'crmUiWizardCtrl',
805 controller: function($scope, $parse) {
806 var steps = $scope.steps = []; // array<$scope>
807 var crmUiWizardCtrl = this;
808 var maxVisited = 0;
809 var selectedIndex = null;
810
811 var findIndex = function() {
812 var found = null;
813 angular.forEach(steps, function(step, stepKey) {
814 if (step.selected) found = stepKey;
815 });
816 return found;
817 };
818
819 /// @return int the index of the current step
820 this.$index = function() { return selectedIndex; };
821 /// @return bool whether the currentstep is first
822 this.$first = function() { return this.$index() === 0; };
823 /// @return bool whether the current step is last
824 this.$last = function() { return this.$index() === steps.length -1; };
f2bad133 825 this.$maxVisit = function() { return maxVisited; };
3f0da451 826 this.$validStep = function() {
f8c05c87 827 return steps[selectedIndex] && steps[selectedIndex].isStepValid();
3f0da451 828 };
6717e4b9 829 this.iconFor = function(index) {
4856d49f
AH
830 if (index < this.$index()) return 'crm-i fa-check';
831 if (index === this.$index()) return 'crm-i fa-angle-double-right';
832 return '';
f2bad133 833 };
6717e4b9
TO
834 this.isSelectable = function(step) {
835 if (step.selected) return false;
5919adff 836 return this.$validStep();
6717e4b9
TO
837 };
838
839 /*** @param Object step the $scope of the step */
840 this.select = function(step) {
841 angular.forEach(steps, function(otherStep, otherKey) {
842 otherStep.selected = (otherStep === step);
843 if (otherStep === step && maxVisited < otherKey) maxVisited = otherKey;
844 });
845 selectedIndex = findIndex();
846 };
847 /*** @param Object step the $scope of the step */
848 this.add = function(step) {
849 if (steps.length === 0) {
850 step.selected = true;
851 selectedIndex = 0;
852 }
853 steps.push(step);
8688b463
TO
854 steps.sort(function(a,b){
855 return a.crmUiWizardStep - b.crmUiWizardStep;
856 });
857 selectedIndex = findIndex();
858 };
859 this.remove = function(step) {
860 var key = null;
861 angular.forEach(steps, function(otherStep, otherKey) {
862 if (otherStep === step) key = otherKey;
863 });
4109d03e 864 if (key !== null) {
8688b463
TO
865 steps.splice(key, 1);
866 }
6717e4b9
TO
867 };
868 this.goto = function(index) {
869 if (index < 0) index = 0;
870 if (index >= steps.length) index = steps.length-1;
871 this.select(steps[index]);
872 };
873 this.previous = function() { this.goto(this.$index()-1); };
874 this.next = function() { this.goto(this.$index()+1); };
875 if ($scope.crmUiWizard) {
f2bad133 876 $parse($scope.crmUiWizard).assign($scope.$parent, this);
6717e4b9
TO
877 }
878 },
c4991710
TO
879 link: function (scope, element, attrs) {
880 scope.ts = CRM.ts(null);
510eb730 881
ea140dc3 882 element.find('.crm-wizard-buttons button[ng-click^=crmUiWizardCtrl]').click(function () {
510eb730
FG
883 // These values are captured inside the click handler to ensure the
884 // positions/sizes of the elements are captured at the time of the
885 // click vs. at the time this directive is initialized.
886 var topOfWizard = element.offset().top;
887 var heightOfMenu = $('#civicrm-menu').height() || 0;
888
889 $('html')
890 // stop any other animations that might be happening...
891 .stop()
892 // gracefully slide the user to the top of the wizard
893 .animate({scrollTop: topOfWizard - heightOfMenu}, 1000);
894 });
c4991710 895 }
030dce01
TO
896 };
897 })
898
6717e4b9
TO
899 // Use this to add extra markup to wizard
900 .directive('crmUiWizardButtons', function() {
030dce01 901 return {
6717e4b9
TO
902 require: '^crmUiWizard',
903 restrict: 'EA',
904 scope: {},
905 template: '<span ng-transclude></span>',
030dce01 906 transclude: true,
6717e4b9
TO
907 link: function (scope, element, attrs, crmUiWizardCtrl) {
908 var realButtonsEl = $(element).closest('.crm-wizard').find('.crm-wizard-buttons');
909 $(element).appendTo(realButtonsEl);
910 }
030dce01
TO
911 };
912 })
913
77ec5a8d 914 // Example for Font Awesome: <button crm-icon="fa-check">Save</button>
4bc72ff2 915 // Example for jQuery UI (deprecated): <button crm-icon="fa-check">Save</button>
39f4f54f
CW
916 .directive('crmIcon', function() {
917 return {
918 restrict: 'EA',
39f4f54f 919 link: function (scope, element, attrs) {
cf500087
CW
920 if (element.is('[crm-ui-tab]')) {
921 // handled in crmUiTab ctrl
922 return;
923 }
aee84611 924 if (attrs.crmIcon.substring(0,3) == 'fa-') {
13a3d214 925 $(element).prepend('<i class="crm-i ' + attrs.crmIcon + '" aria-hidden="true"></i> ');
aee84611
AH
926 }
927 else {
928 $(element).prepend('<span class="icon ui-icon-' + attrs.crmIcon + '"></span> ');
929 }
39f4f54f
CW
930 if ($(element).is('button')) {
931 $(element).addClass('crm-button');
932 }
933 }
934 };
935 })
936
3f0da451 937 // example: <div crm-ui-wizard-step crm-title="ts('My Title')" ng-form="mySubForm">...content...</div>
8688b463
TO
938 // If there are any conditional steps, then be sure to set a weight explicitly on *all* steps to maintain ordering.
939 // example: <div crm-ui-wizard-step="100" crm-title="..." ng-if="...">...content...</div>
1302b0a0 940 // example with custom classes: <div crm-ui-wizard-step="100" crm-ui-wizard-step-class="ng-animate-out ...">...content...</div>
030dce01 941 .directive('crmUiWizardStep', function() {
8688b463 942 var nextWeight = 1;
030dce01 943 return {
3f0da451 944 require: ['^crmUiWizard', 'form'],
6717e4b9 945 restrict: 'EA',
030dce01 946 scope: {
8688b463 947 crmTitle: '@', // expression, evaluates to a printable string
37f1d23b
TL
948 crmUiWizardStep: '@', // int, a weight which determines the ordering of the steps
949 crmUiWizardStepClass: '@' // string, A list of classes that will be added to the template
030dce01 950 },
1302b0a0 951 template: '<div class="crm-wizard-step {{crmUiWizardStepClass}}" ng-show="selected" ng-transclude/></div>',
030dce01 952 transclude: true,
3f0da451
TO
953 link: function (scope, element, attrs, ctrls) {
954 var crmUiWizardCtrl = ctrls[0], form = ctrls[1];
8688b463
TO
955 if (scope.crmUiWizardStep) {
956 scope.crmUiWizardStep = parseInt(scope.crmUiWizardStep);
957 } else {
958 scope.crmUiWizardStep = nextWeight++;
959 }
3f0da451
TO
960 scope.isStepValid = function() {
961 return form.$valid;
962 };
6717e4b9 963 crmUiWizardCtrl.add(scope);
e72fdb99 964 scope.$on('$destroy', function(){
8688b463
TO
965 crmUiWizardCtrl.remove(scope);
966 });
6717e4b9 967 }
030dce01
TO
968 };
969 })
970
5fb5b3cf 971 // Example: <button crm-confirm="{message: ts('Are you sure you want to continue?')}" on-yes="frobnicate(123)">Frobincate</button>
4b8c8b42 972 // Example: <button crm-confirm="{type: 'disable', obj: myObject}" on-yes="myObject.is_active=0; myObject.save()">Disable</button>
6a6d0f41
TO
973 // Example: <button crm-confirm="{templateUrl: '~/path/to/view.html', export: {foo: bar}}" on-yes="frobnicate(123)">Frobincate</button>
974 .directive('crmConfirm', function ($compile, $rootScope, $templateRequest, $q) {
88fcc9f1 975 // Helpers to calculate default options for CRM.confirm()
4b8c8b42
TO
976 var defaultFuncs = {
977 'disable': function (options) {
978 return {
979 message: ts('Are you sure you want to disable this?'),
980 options: {no: ts('Cancel'), yes: ts('Disable')},
981 width: 300,
982 title: ts('Disable %1?', {
983 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
984 })
985 };
986 },
470a458e
TO
987 'revert': function (options) {
988 return {
989 message: ts('Are you sure you want to revert this?'),
990 options: {no: ts('Cancel'), yes: ts('Revert')},
991 width: 300,
992 title: ts('Revert %1?', {
993 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
994 })
995 };
996 },
4b8c8b42
TO
997 'delete': function (options) {
998 return {
999 message: ts('Are you sure you want to delete this?'),
1000 options: {no: ts('Cancel'), yes: ts('Delete')},
1001 width: 300,
1002 title: ts('Delete %1?', {
1003 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
1004 })
1005 };
1006 }
1007 };
6a6d0f41 1008 var confirmCount = 0;
4b8c8b42 1009 return {
4b8c8b42
TO
1010 link: function (scope, element, attrs) {
1011 $(element).click(function () {
f2bad133 1012 var options = scope.$eval(attrs.crmConfirm);
b8603a6d
CW
1013 if (attrs.title && !options.title) {
1014 options.title = attrs.title;
1015 }
4b8c8b42 1016 var defaults = (options.type) ? defaultFuncs[options.type](options) : {};
6a6d0f41
TO
1017
1018 var tpl = null, stubId = null;
1019 if (!options.message) {
1020 if (options.templateUrl) {
1021 tpl = $templateRequest(options.templateUrl);
1022 }
1023 else if (options.template) {
1024 tpl = options.template;
1025 }
1026 if (tpl) {
1027 stubId = 'crmUiConfirm_' + (++confirmCount);
1028 options.message = '<div id="' + stubId + '"></div>';
1029 }
1030 }
1031
4b8c8b42 1032 CRM.confirm(_.extend(defaults, options))
6a6d0f41
TO
1033 .on('crmConfirm:yes', function() { scope.$apply(attrs.onYes); })
1034 .on('crmConfirm:no', function() { scope.$apply(attrs.onNo); });
1035
1036 if (tpl && stubId) {
1037 $q.when(tpl, function(html) {
1038 var scope = options.scope || $rootScope.$new();
1039 if (options.export) {
1040 angular.extend(scope, options.export);
1041 }
1042 var linker = $compile(html);
1043 $('#' + stubId).append($(linker(scope)));
1044 });
1045 }
4b8c8b42
TO
1046 });
1047 }
1048 };
1049 })
835fcb5e 1050
826f5ace 1051 // Sets document title & page title; attempts to override CMS title markup for the latter
835fcb5e 1052 // WARNING: Use only once per route!
6968b473
FG
1053 // WARNING: This directive works only if your AngularJS base page does not
1054 // set a custom title (i.e., it has an initial title of "CiviCRM"). See the
1055 // global variables pageTitle and documentTitle.
826f5ace 1056 // Example (same title for both): <h1 crm-page-title>{{ts('Hello')}}</h1>
13a3d214 1057 // Example (separate document title): <h1 crm-document-title="ts('Hello')" crm-page-title><i class="crm-i fa-flag" aria-hidden="true"></i>{{ts('Hello')}}</h1>
826f5ace 1058 .directive('crmPageTitle', function($timeout) {
835fcb5e 1059 return {
826f5ace
CW
1060 scope: {
1061 crmDocumentTitle: '='
1062 },
835fcb5e
CW
1063 link: function(scope, $el, attrs) {
1064 function update() {
1065 $timeout(function() {
826f5ace 1066 var newPageTitle = _.trim($el.html()),
3a603b78 1067 newDocumentTitle = scope.crmDocumentTitle || $el.text();
826f5ace 1068 document.title = $('title').text().replace(documentTitle, newDocumentTitle);
835fcb5e
CW
1069 // If the CMS has already added title markup to the page, use it
1070 $('h1').not('.crm-container h1').each(function() {
826f5ace 1071 if (_.trim($(this).html()) === pageTitle) {
1d924612 1072 $(this).addClass('crm-page-title').html(newPageTitle);
835fcb5e
CW
1073 $el.hide();
1074 }
1075 });
826f5ace
CW
1076 pageTitle = newPageTitle;
1077 documentTitle = newDocumentTitle;
835fcb5e
CW
1078 });
1079 }
1080
826f5ace 1081 scope.$watch(function() {return scope.crmDocumentTitle + $el.html();}, update);
835fcb5e 1082 }
7565f24a 1083 };
835fcb5e
CW
1084 })
1085
02308c07
TO
1086 .run(function($rootScope, $location) {
1087 /// Example: <button ng-click="goto('home')">Go home!</button>
1088 $rootScope.goto = function(path) {
1089 $location.path(path);
1090 };
4b8c8b42 1091 // useful for debugging: $rootScope.log = console.log || function() {};
02308c07 1092 })
685acae4 1093 ;
1094
5fb5b3cf 1095})(angular, CRM.$, CRM._);