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