Merge pull request #5667 from JKingsnorth/CRM-16328
[civicrm-core.git] / ang / crmUi.js
CommitLineData
685acae4 1/// crmUi: Sundry UI helpers
2(function (angular, $, _) {
3
f8601d61
TO
4 var uidCount = 0;
5
685acae4 6 angular.module('crmUi', [])
030dce01 7
0cbed02c
TO
8 // example <div crm-ui-accordion crm-title="ts('My Title')" crm-collapsed="true">...content...</div>
9 // WISHLIST: crmCollapsed should support two-way/continous binding
030dce01
TO
10 .directive('crmUiAccordion', function() {
11 return {
12 scope: {
207819ec 13 crmUiAccordion: '='
030dce01 14 },
207819ec 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>',
030dce01 16 transclude: true,
0cbed02c
TO
17 link: function (scope, element, attrs) {
18 scope.cssClasses = {
207819ec
CW
19 'crm-accordion-wrapper': true,
20 collapsed: scope.crmUiAccordion.collapsed
0cbed02c 21 };
207819ec
CW
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 });
0cbed02c 30 }
030dce01
TO
31 };
32 })
33
69a65adc
TO
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
a42344f4
CW
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 () {
510d515d
TO
69 return {
70 restrict: 'AE',
2f31bc16 71 require: 'ngModel',
510d515d 72 scope: {
a42344f4 73 crmUiDatepicker: '='
510d515d 74 },
2f31bc16 75 link: function (scope, element, attrs, ngModel) {
ac5009c1
CW
76 ngModel.$render = function () {
77 element.val(ngModel.$viewValue).change();
78 };
79
a42344f4
CW
80 element
81 .crmDatepicker(scope.crmUiDatepicker)
82 .on('change', function() {
ac5009c1 83 var requiredLength = 19;
a42344f4
CW
84 if (scope.crmUiDatepicker && scope.crmUiDatepicker.time === false) {
85 requiredLength = 10;
86 }
87 if (scope.crmUiDatepicker && scope.crmUiDatepicker.date === false) {
ac5009c1 88 requiredLength = 8;
a42344f4
CW
89 }
90 ngModel.$setValidity('incompleteDateTime', !($(this).val().length && $(this).val().length !== requiredLength));
510d515d 91 });
510d515d
TO
92 }
93 };
94 })
95
c4c69e7b
TO
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();
916f65c0 107 return (args && args.angularDebug) ? '<div crm-ui-accordion=\'{title: ts("Debug (%1)", {1: crmUiDebug}), collapsed: true}\'><pre>{{data|json}}</pre></div>' : '';
c4c69e7b
TO
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
489c2674 121 // Display a field/row in a field list
c4256f35
CW
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>
563ba527 125 // example: <div crm-ui-field="{name: 'subform.myfield', title: ts('My Field'), help: hs('help_field_name')}"> {{mydata}} </div>
3cc9c048 126 .directive('crmUiField', function() {
489c2674
TO
127 // Note: When writing new templates, the "label" position is particular. See/patch "var label" below.
128 var templateUrls = {
ef5d18a1
TO
129 default: '~/crmUi/field.html',
130 checkbox: '~/crmUi/field-cb.html'
489c2674
TO
131 };
132
133 return {
f8601d61
TO
134 require: '^crmUiIdScope',
135 restrict: 'EA',
489c2674 136 scope: {
d8356d0b 137 // {title, name, help, helpFile}
c4256f35 138 crmUiField: '='
489c2674
TO
139 },
140 templateUrl: function(tElement, tAttrs){
141 var layout = tAttrs.crmLayout ? tAttrs.crmLayout : 'default';
142 return templateUrls[layout];
143 },
144 transclude: true,
f8601d61 145 link: function (scope, element, attrs, crmUiIdCtrl) {
489c2674 146 $(element).addClass('crm-section');
563ba527 147 scope.help = null;
dfc2a868
TO
148 scope.$watch('crmUiField', function(crmUiField) {
149 if (crmUiField && crmUiField.help) {
150 scope.help = crmUiField.help.clone({}, {
151 title: crmUiField.title
152 });
153 }
154 });
f8601d61
TO
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',
3cc9c048
TO
164 link: {
165 pre: function (scope, element, attrs, crmUiIdCtrl) {
166 var id = crmUiIdCtrl.get(attrs.crmUiId);
167 element.attr('id', id);
168 }
f8601d61
TO
169 }
170 };
171 })
489c2674 172
dfc2a868
TO
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() {
dfc2a868
TO
184 CRM.help(this.options.title, {id: this.options.id, file: this.options.file});
185 },
186 clone: function clone(options, defaults) {
dfc2a868
TO
187 return new FieldHelp(angular.extend({}, defaults, this.options, options));
188 }
189 });
190
563ba527 191 // example: var hs = crmUiHelp({file: 'CRM/Foo/Bar'});
dfc2a868 192 return function(defaults){
563ba527
TO
193 // example: hs('myfield')
194 // example: hs({id: 'myfield', title: 'Foo Bar', file: 'Whiz/Bang'})
dfc2a868
TO
195 return function(options) {
196 if (_.isString(options)) {
197 options = {id: options};
198 }
199 return new FieldHelp(angular.extend({}, defaults, options));
6dc9d4ca
TO
200 };
201 };
dfc2a868
TO
202 })
203
204 // Display a help icon
9a593827 205 // Example: Use a default *.hlp file
563ba527
TO
206 // scope.hs = crmUiHelp({file: 'Path/To/Help/File'});
207 // HTML: <a crm-ui-help="hs({title:ts('My Field'), id:'my_field'})">
9a593827 208 // Example: Use an explicit *.hlp file
563ba527 209 // HTML: <a crm-ui-help="hs({title:ts('My Field'), id:'my_field', file:'CRM/Foo/Bar'})">
a517b78a
CW
210 .directive('crmUiHelp', function() {
211 return {
212 restrict: 'EA',
563ba527
TO
213 link: function(scope, element, attrs) {
214 setTimeout(function() {
215 var crmUiHelp = scope.$eval(attrs.crmUiHelp);
dfc2a868
TO
216 var title = crmUiHelp && crmUiHelp.get('title') ? ts('%1 Help', {1: crmUiHelp.get('title')}) : ts('Help');
217 element.attr('title', title);
563ba527 218 }, 50);
dfc2a868 219
a517b78a
CW
220 element
221 .addClass('helpicon')
a517b78a
CW
222 .attr('href', '#')
223 .on('click', function(e) {
224 e.preventDefault();
563ba527 225 scope.$eval(attrs.crmUiHelp).open();
a517b78a
CW
226 });
227 }
228 };
229 })
230
f8601d61
TO
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 = {};
489c2674 241
f8601d61 242 if (!attrs.crmUiFor) return;
489c2674 243
f8601d61
TO
244 var id = crmUiIdCtrl.get(attrs.crmUiFor);
245 element.attr('for', id);
246 var ngModel = null;
489c2674 247
f8601d61
TO
248 var updateCss = function () {
249 scope.cssClasses['crm-error'] = !ngModel.$valid && !ngModel.$pristine;
250 };
489c2674 251
f8601d61
TO
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);
4109d03e 256 if (input.length === 0) {
f8601d61
TO
257 if (retries) {
258 $timeout(function(){
259 init(retries-1, retryDelay);
260 }, retryDelay);
261 }
262 return;
263 }
489c2674 264
f8601d61
TO
265 var tgtScope = scope;//.$parent;
266 if (attrs.crmDepth) {
267 for (var i = attrs.crmDepth; i > 0; i--) {
268 tgtScope = tgtScope.$parent;
269 }
270 }
489c2674 271
f8601d61
TO
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 {
f2bad133 279 scope.crmIsRequired = input.prop('required');
f8601d61 280 }
489c2674 281
f8601d61
TO
282 ngModel = $parse(attrs.crmUiFor)(tgtScope);
283 if (ngModel) {
284 ngModel.$viewChangeListeners.push(updateCss);
285 }
286 };
489c2674 287
f8601d61
TO
288 $timeout(function(){
289 init(3, 100);
489c2674
TO
290 });
291 }
292 };
293 })
294
d376f33e 295 // Define a scope in which a name like "subform.foo" maps to a unique ID.
f8601d61
TO
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];
f2bad133 309 };
f8601d61
TO
310 },
311 link: function (scope, element, attrs) {}
312 };
313 })
314
d376f33e 315 // Display an HTML blurb inside an IFRAME.
107c5cc7
TO
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();
f2bad133 342 };
107c5cc7 343
02cd9764
CW
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
107c5cc7 350 scope.$parent.$watch(attrs.crmUiIframe, refresh);
107c5cc7
TO
351 }
352 };
353 })
354
f8f85764
TO
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 // TODO Consider ways to separate the plain-text/rich-text implementations
359 .directive('crmUiInsertRx', function() {
360 return {
361 link: function(scope, element, attrs) {
362 scope.$on(attrs.crmUiInsertRx, function(e, tokenName) {
363 var id = element.attr('id');
364 if (CKEDITOR.instances[id]) {
365 CKEDITOR.instances[id].insertText(tokenName);
366 $(element).select2('close').select2('val', '');
367 CKEDITOR.instances[id].focus();
368 }
369 else {
370 var crmForEl = $('#' + id);
371 var origVal = crmForEl.val();
372 var origPos = crmForEl[0].selectionStart;
373 var newVal = origVal.substring(0, origPos) + tokenName + origVal.substring(origPos, origVal.length);
374 crmForEl.val(newVal);
375 var newPos = (origPos + tokenName.length);
376 crmForEl[0].selectionStart = newPos;
377 crmForEl[0].selectionEnd = newPos;
378
379 $(element).select2('close').select2('val', '');
380 crmForEl.triggerHandler('change');
381 crmForEl.focus();
382 }
383 });
384 }
385 };
386 })
387
d376f33e 388 // Define a rich text editor.
3cc9c048
TO
389 // example: <textarea crm-ui-id="myForm.body_html" crm-ui-richtext name="body_html" ng-model="mailing.body_html"></textarea>
390 .directive('crmUiRichtext', function ($timeout) {
38737af8
TO
391 return {
392 require: '?ngModel',
393 link: function (scope, elm, attr, ngModel) {
38737af8
TO
394 var ck = CKEDITOR.replace(elm[0]);
395
65d3e04c
TO
396 if (ck) {
397 _.extend(ck.config, {
398 width: '94%',
399 height: '400',
400 filebrowserBrowseUrl: CRM.crmUi.browseUrl + '?cms=civicrm&type=files',
401 filebrowserImageBrowseUrl: CRM.crmUi.browseUrl + '?cms=civicrm&type=images',
402 filebrowserFlashBrowseUrl: CRM.crmUi.browseUrl + '?cms=civicrm&type=flash',
403 filebrowserUploadUrl: CRM.crmUi.uploadUrl + '?cms=civicrm&type=files',
404 filebrowserImageUploadUrl: CRM.crmUi.uploadUrl + '?cms=civicrm&type=images',
405 filebrowserFlashUploadUrl: CRM.crmUi.uploadUrl + '?cms=civicrm&type=flash',
406 });
407 }
408
38737af8
TO
409 if (!ngModel) {
410 return;
411 }
412
07996588
TO
413 if (attr.ngBlur) {
414 ck.on('blur', function(){
415 $timeout(function(){
416 scope.$eval(attr.ngBlur);
d03e0d13 417 });
07996588
TO
418 });
419 }
420
38737af8
TO
421 ck.on('pasteState', function () {
422 scope.$apply(function () {
423 ngModel.$setViewValue(ck.getData());
424 });
425 });
426
427 ck.on('insertText', function () {
428 $timeout(function () {
429 ngModel.$setViewValue(ck.getData());
430 });
431 });
432
433 ngModel.$render = function (value) {
434 ck.setData(ngModel.$viewValue);
435 };
436 }
437 };
438 })
439
d376f33e 440 // Display a lock icon (based on a boolean).
685acae4 441 // example: <a crm-ui-lock binding="mymodel.boolfield"></a>
442 // example: <a crm-ui-lock
443 // binding="mymodel.boolfield"
444 // title-locked="ts('Boolfield is locked')"
445 // title-unlocked="ts('Boolfield is unlocked')"></a>
446 .directive('crmUiLock', function ($parse, $rootScope) {
447 var defaultVal = function (defaultValue) {
448 var f = function (scope) {
449 return defaultValue;
f2bad133 450 };
685acae4 451 f.assign = function (scope, value) {
452 // ignore changes
f2bad133 453 };
685acae4 454 return f;
455 };
456
457 // like $parse, but accepts a defaultValue in case expr is undefined
458 var parse = function (expr, defaultValue) {
459 return expr ? $parse(expr) : defaultVal(defaultValue);
460 };
461
462 return {
463 template: '',
464 link: function (scope, element, attrs) {
f2bad133
TO
465 var binding = parse(attrs.binding, true);
466 var titleLocked = parse(attrs.titleLocked, ts('Locked'));
467 var titleUnlocked = parse(attrs.titleUnlocked, ts('Unlocked'));
685acae4 468
469 $(element).addClass('ui-icon lock-button');
470 var refresh = function () {
471 var locked = binding(scope);
472 if (locked) {
473 $(element)
474 .removeClass('ui-icon-unlocked')
475 .addClass('ui-icon-locked')
476 .prop('title', titleLocked(scope))
477 ;
478 }
479 else {
480 $(element)
481 .removeClass('ui-icon-locked')
482 .addClass('ui-icon-unlocked')
483 .prop('title', titleUnlocked(scope))
484 ;
485 }
486 };
487
488 $(element).click(function () {
489 binding.assign(scope, !binding(scope));
490 //scope.$digest();
491 $rootScope.$digest();
492 });
493
494 scope.$watch(attrs.binding, refresh);
495 scope.$watch(attrs.titleLocked, refresh);
496 scope.$watch(attrs.titleUnlocked, refresh);
497
498 refresh();
499 }
500 };
501 })
030dce01 502
b21c9cdc
TO
503 // CrmUiOrderCtrl is a controller class which manages sort orderings.
504 // Ex:
505 // JS: $scope.myOrder = new CrmUiOrderCtrl(['+field1', '-field2]);
506 // $scope.myOrder.toggle('field1');
507 // $scope.myOrder.setDir('field2', '');
508 // HTML: <tr ng-repeat="... | order:myOrder.get()">...</tr>
509 .service('CrmUiOrderCtrl', function(){
510 //
511 function CrmUiOrderCtrl(defaults){
512 this.values = defaults;
513 }
514 angular.extend(CrmUiOrderCtrl.prototype, {
515 get: function get() {
516 return this.values;
517 },
518 getDir: function getDir(name) {
519 if (this.values.indexOf(name) >= 0 || this.values.indexOf('+' + name) >= 0) {
520 return '+';
521 }
522 if (this.values.indexOf('-' + name) >= 0) {
523 return '-';
524 }
525 return '';
526 },
527 // @return bool TRUE if something is removed
528 remove: function remove(name) {
529 var idx = this.values.indexOf(name);
530 if (idx >= 0) {
531 this.values.splice(idx, 1);
532 return true;
533 }
534 else {
535 return false;
536 }
537 },
538 setDir: function setDir(name, dir) {
539 return this.toggle(name, dir);
540 },
541 // Toggle sort order on a field.
542 // To set a specific order, pass optional parameter 'next' ('+', '-', or '').
543 toggle: function toggle(name, next) {
544 if (!next && next !== '') {
545 next = '+';
546 if (this.remove(name) || this.remove('+' + name)) {
547 next = '-';
548 }
549 if (this.remove('-' + name)) {
550 next = '';
551 }
552 }
553
554 if (next == '+') {
555 this.values.unshift('+' + name);
556 }
557 else if (next == '-') {
558 this.values.unshift('-' + name);
559 }
560 }
561 });
562 return CrmUiOrderCtrl;
563 })
564
565 // Define a controller which manages sort order. You may interact with the controller
566 // directly ("myOrder.toggle('fieldname')") order using the helper, crm-ui-order-by.
567 // example:
568 // <span crm-ui-order="{var: 'myOrder', defaults: {'-myField'}}"></span>
569 // <th><a crm-ui-order-by="[myOrder,'myField']">My Field</a></th>
570 // <tr ng-repeat="... | order:myOrder.get()">...</tr>
571 // <button ng-click="myOrder.toggle('myField')">
572 .directive('crmUiOrder', function(CrmUiOrderCtrl) {
573 return {
574 link: function(scope, element, attrs){
575 var options = angular.extend({var: 'crmUiOrderBy'}, scope.$eval(attrs.crmUiOrder));
576 scope[options.var] = new CrmUiOrderCtrl(options.defaults);
577 }
578 };
579 })
580
581 // For usage, see crmUiOrder (above)
582 .directive('crmUiOrderBy', function() {
583 return {
584 link: function(scope, element, attrs) {
585 function updateClass(crmUiOrderCtrl, name) {
586 var dir = crmUiOrderCtrl.getDir(name);
587 element
588 .toggleClass('sorting_asc', dir === '+')
589 .toggleClass('sorting_desc', dir === '-')
590 .toggleClass('sorting', dir === '');
591 }
592
593 element.on('click', function(e){
594 var tgt = scope.$eval(attrs.crmUiOrderBy);
595 tgt[0].toggle(tgt[1]);
596 updateClass(tgt[0], tgt[1]);
597 e.preventDefault();
598 scope.$digest();
599 });
600
601 var tgt = scope.$eval(attrs.crmUiOrderBy);
602 updateClass(tgt[0], tgt[1]);
603 }
604 };
605 })
606
d376f33e 607 // Display a fancy SELECT (based on select2).
ebfe3efb
TO
608 // usage: <select crm-ui-select="{placeholder:'Something',allowClear:true,...}" ng-model="myobj.field"><option...></select>
609 .directive('crmUiSelect', function ($parse, $timeout) {
8c632f2b 610 return {
ebfe3efb 611 require: '?ngModel',
8c632f2b 612 scope: {
8674b5ac 613 crmUiSelect: '='
8c632f2b 614 },
ebfe3efb 615 link: function (scope, element, attrs, ngModel) {
8c632f2b
TO
616 // In cases where UI initiates update, there may be an extra
617 // call to refreshUI, but it doesn't create a cycle.
618
ebfe3efb
TO
619 ngModel.$render = function () {
620 $timeout(function () {
621 // ex: msg_template_id adds new item then selects it; use $timeout to ensure that
622 // new item is added before selection is made
50e25421 623 element.select2('val', ngModel.$viewValue);
ebfe3efb
TO
624 });
625 };
8c632f2b 626 function refreshModel() {
50e25421 627 var oldValue = ngModel.$viewValue, newValue = element.select2('val');
8c632f2b 628 if (oldValue != newValue) {
ebfe3efb
TO
629 scope.$parent.$apply(function () {
630 ngModel.$setViewValue(newValue);
8c632f2b 631 });
8c632f2b
TO
632 }
633 }
ebfe3efb 634
8c632f2b
TO
635 function init() {
636 // TODO watch select2-options
8674b5ac 637 element.select2(scope.crmUiSelect || {});
50e25421 638 element.on('change', refreshModel);
ebfe3efb 639 $timeout(ngModel.$render);
8099bfee
CW
640 }
641
642 init();
643 }
644 };
645 })
646
647 // Render a crmEntityRef widget
648 // usage: <input crm-entityref="{entity: 'Contact', select: {allowClear:true}}" ng-model="myobj.field" />
649 .directive('crmEntityref', function ($parse, $timeout) {
650 return {
651 require: '?ngModel',
652 scope: {
653 crmEntityref: '='
654 },
655 link: function (scope, element, attrs, ngModel) {
656 // In cases where UI initiates update, there may be an extra
657 // call to refreshUI, but it doesn't create a cycle.
658
659 ngModel.$render = function () {
660 $timeout(function () {
661 // ex: msg_template_id adds new item then selects it; use $timeout to ensure that
662 // new item is added before selection is made
663 element.select2('val', ngModel.$viewValue);
664 });
665 };
666 function refreshModel() {
667 var oldValue = ngModel.$viewValue, newValue = element.select2('val');
668 if (oldValue != newValue) {
669 scope.$parent.$apply(function () {
670 ngModel.$setViewValue(newValue);
671 });
672 }
673 }
674
675 function init() {
676 // TODO watch options
677 // TODO can we infer "entity" from model?
678 element.crmEntityRef(scope.crmEntityref || {});
679 element.on('change', refreshModel);
680 $timeout(ngModel.$render);
8c632f2b 681 }
ebfe3efb 682
8c632f2b
TO
683 init();
684 }
685 };
686 })
687
030dce01 688 // example <div crm-ui-tab crm-title="ts('My Title')">...content...</div>
5f3568fd 689 // WISHLIST: use a full Angular component instead of an incomplete jQuery wrapper
030dce01
TO
690 .directive('crmUiTab', function($parse) {
691 return {
5f3568fd
TO
692 require: '^crmUiTabSet',
693 restrict: 'EA',
030dce01 694 scope: {
5f3568fd
TO
695 crmTitle: '@',
696 id: '@'
030dce01 697 },
5f3568fd 698 template: '<div ng-transclude></div>',
030dce01 699 transclude: true,
5f3568fd
TO
700 link: function (scope, element, attrs, crmUiTabSetCtrl) {
701 crmUiTabSetCtrl.add(scope);
702 }
030dce01
TO
703 };
704 })
705
706 // 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>
707 .directive('crmUiTabSet', function() {
708 return {
5f3568fd
TO
709 restrict: 'EA',
710 scope: {
711 crmUiTabSet: '@'
712 },
ef5d18a1 713 templateUrl: '~/crmUi/tabset.html',
030dce01 714 transclude: true,
5f3568fd
TO
715 controllerAs: 'crmUiTabSetCtrl',
716 controller: function($scope, $parse) {
717 var tabs = $scope.tabs = []; // array<$scope>
718 this.add = function(tab) {
719 if (!tab.id) throw "Tab is missing 'id'";
720 tabs.push(tab);
721 };
722 },
030dce01
TO
723 link: function (scope, element, attrs) {}
724 };
725 })
726
d376f33e 727 // Generic, field-independent form validator.
3afb86ef
TO
728 // example: <span ng-model="placeholder" crm-ui-validate="foo && bar || whiz" />
729 // example: <span ng-model="placeholder" crm-ui-validate="foo && bar || whiz" crm-ui-validate-name="myError" />
3afb86ef
TO
730 .directive('crmUiValidate', function() {
731 return {
732 restrict: 'EA',
733 require: 'ngModel',
734 link: function(scope, element, attrs, ngModel) {
735 var validationKey = attrs.crmUiValidateName ? attrs.crmUiValidateName : 'crmUiValidate';
736 scope.$watch(attrs.crmUiValidate, function(newValue){
737 ngModel.$setValidity(validationKey, !!newValue);
738 });
739 }
740 };
741 })
742
e84a11d8
TO
743 // like ng-show, but hides/displays elements using "visibility" which maintains positioning
744 // example <div crm-ui-visible="false">...content...</div>
745 .directive('crmUiVisible', function($parse) {
746 return {
747 restrict: 'EA',
748 scope: {
749 crmUiVisible: '@'
750 },
751 link: function (scope, element, attrs) {
752 var model = $parse(attrs.crmUiVisible);
753 function updatecChildren() {
754 element.css('visibility', model(scope.$parent) ? 'inherit' : 'hidden');
755 }
756 updatecChildren();
757 scope.$parent.$watch(attrs.crmUiVisible, updatecChildren);
758 }
759 };
760 })
761
6717e4b9
TO
762 // 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>
763 // Note: "myWizardCtrl" has various actions/properties like next() and $first().
764 // WISHLIST: Allow each step to determine if it is "complete" / "valid" / "selectable"
765 // WISHLIST: Allow each step to enable/disable (show/hide) itself
030dce01
TO
766 .directive('crmUiWizard', function() {
767 return {
6717e4b9
TO
768 restrict: 'EA',
769 scope: {
770 crmUiWizard: '@'
771 },
ef5d18a1 772 templateUrl: '~/crmUi/wizard.html',
030dce01 773 transclude: true,
6717e4b9
TO
774 controllerAs: 'crmUiWizardCtrl',
775 controller: function($scope, $parse) {
776 var steps = $scope.steps = []; // array<$scope>
777 var crmUiWizardCtrl = this;
778 var maxVisited = 0;
779 var selectedIndex = null;
780
781 var findIndex = function() {
782 var found = null;
783 angular.forEach(steps, function(step, stepKey) {
784 if (step.selected) found = stepKey;
785 });
786 return found;
787 };
788
789 /// @return int the index of the current step
790 this.$index = function() { return selectedIndex; };
791 /// @return bool whether the currentstep is first
792 this.$first = function() { return this.$index() === 0; };
793 /// @return bool whether the current step is last
794 this.$last = function() { return this.$index() === steps.length -1; };
f2bad133 795 this.$maxVisit = function() { return maxVisited; };
3f0da451 796 this.$validStep = function() {
f8c05c87 797 return steps[selectedIndex] && steps[selectedIndex].isStepValid();
3f0da451 798 };
6717e4b9
TO
799 this.iconFor = function(index) {
800 if (index < this.$index()) return '√';
801 if (index === this.$index()) return '»';
802 return ' ';
f2bad133 803 };
6717e4b9
TO
804 this.isSelectable = function(step) {
805 if (step.selected) return false;
806 var result = false;
807 angular.forEach(steps, function(otherStep, otherKey) {
808 if (step === otherStep && otherKey <= maxVisited) result = true;
809 });
810 return result;
811 };
812
813 /*** @param Object step the $scope of the step */
814 this.select = function(step) {
815 angular.forEach(steps, function(otherStep, otherKey) {
816 otherStep.selected = (otherStep === step);
817 if (otherStep === step && maxVisited < otherKey) maxVisited = otherKey;
818 });
819 selectedIndex = findIndex();
820 };
821 /*** @param Object step the $scope of the step */
822 this.add = function(step) {
823 if (steps.length === 0) {
824 step.selected = true;
825 selectedIndex = 0;
826 }
827 steps.push(step);
8688b463
TO
828 steps.sort(function(a,b){
829 return a.crmUiWizardStep - b.crmUiWizardStep;
830 });
831 selectedIndex = findIndex();
832 };
833 this.remove = function(step) {
834 var key = null;
835 angular.forEach(steps, function(otherStep, otherKey) {
836 if (otherStep === step) key = otherKey;
837 });
4109d03e 838 if (key !== null) {
8688b463
TO
839 steps.splice(key, 1);
840 }
6717e4b9
TO
841 };
842 this.goto = function(index) {
843 if (index < 0) index = 0;
844 if (index >= steps.length) index = steps.length-1;
845 this.select(steps[index]);
846 };
847 this.previous = function() { this.goto(this.$index()-1); };
848 this.next = function() { this.goto(this.$index()+1); };
849 if ($scope.crmUiWizard) {
f2bad133 850 $parse($scope.crmUiWizard).assign($scope.$parent, this);
6717e4b9
TO
851 }
852 },
c4991710
TO
853 link: function (scope, element, attrs) {
854 scope.ts = CRM.ts(null);
855 }
030dce01
TO
856 };
857 })
858
6717e4b9
TO
859 // Use this to add extra markup to wizard
860 .directive('crmUiWizardButtons', function() {
030dce01 861 return {
6717e4b9
TO
862 require: '^crmUiWizard',
863 restrict: 'EA',
864 scope: {},
865 template: '<span ng-transclude></span>',
030dce01 866 transclude: true,
6717e4b9
TO
867 link: function (scope, element, attrs, crmUiWizardCtrl) {
868 var realButtonsEl = $(element).closest('.crm-wizard').find('.crm-wizard-buttons');
869 $(element).appendTo(realButtonsEl);
870 }
030dce01
TO
871 };
872 })
873
39f4f54f
CW
874 // Example: <button crm-icon="check">Save</button>
875 .directive('crmIcon', function() {
876 return {
877 restrict: 'EA',
878 scope: {},
879 link: function (scope, element, attrs) {
880 $(element).prepend('<span class="icon ui-icon-' + attrs.crmIcon + '"></span> ');
881 if ($(element).is('button')) {
882 $(element).addClass('crm-button');
883 }
884 }
885 };
886 })
887
3f0da451 888 // example: <div crm-ui-wizard-step crm-title="ts('My Title')" ng-form="mySubForm">...content...</div>
8688b463
TO
889 // If there are any conditional steps, then be sure to set a weight explicitly on *all* steps to maintain ordering.
890 // example: <div crm-ui-wizard-step="100" crm-title="..." ng-if="...">...content...</div>
030dce01 891 .directive('crmUiWizardStep', function() {
8688b463 892 var nextWeight = 1;
030dce01 893 return {
3f0da451 894 require: ['^crmUiWizard', 'form'],
6717e4b9 895 restrict: 'EA',
030dce01 896 scope: {
8688b463
TO
897 crmTitle: '@', // expression, evaluates to a printable string
898 crmUiWizardStep: '@' // int, a weight which determines the ordering of the steps
030dce01 899 },
6717e4b9 900 template: '<div class="crm-wizard-step" ng-show="selected" ng-transclude/></div>',
030dce01 901 transclude: true,
3f0da451
TO
902 link: function (scope, element, attrs, ctrls) {
903 var crmUiWizardCtrl = ctrls[0], form = ctrls[1];
8688b463
TO
904 if (scope.crmUiWizardStep) {
905 scope.crmUiWizardStep = parseInt(scope.crmUiWizardStep);
906 } else {
907 scope.crmUiWizardStep = nextWeight++;
908 }
3f0da451
TO
909 scope.isStepValid = function() {
910 return form.$valid;
911 };
6717e4b9 912 crmUiWizardCtrl.add(scope);
8688b463
TO
913 element.on('$destroy', function(){
914 crmUiWizardCtrl.remove(scope);
915 });
6717e4b9 916 }
030dce01
TO
917 };
918 })
919
5fb5b3cf 920 // Example: <button crm-confirm="{message: ts('Are you sure you want to continue?')}" on-yes="frobnicate(123)">Frobincate</button>
4b8c8b42 921 // Example: <button crm-confirm="{type: 'disable', obj: myObject}" on-yes="myObject.is_active=0; myObject.save()">Disable</button>
6a6d0f41
TO
922 // Example: <button crm-confirm="{templateUrl: '~/path/to/view.html', export: {foo: bar}}" on-yes="frobnicate(123)">Frobincate</button>
923 .directive('crmConfirm', function ($compile, $rootScope, $templateRequest, $q) {
88fcc9f1 924 // Helpers to calculate default options for CRM.confirm()
4b8c8b42
TO
925 var defaultFuncs = {
926 'disable': function (options) {
927 return {
928 message: ts('Are you sure you want to disable this?'),
929 options: {no: ts('Cancel'), yes: ts('Disable')},
930 width: 300,
931 title: ts('Disable %1?', {
932 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
933 })
934 };
935 },
470a458e
TO
936 'revert': function (options) {
937 return {
938 message: ts('Are you sure you want to revert this?'),
939 options: {no: ts('Cancel'), yes: ts('Revert')},
940 width: 300,
941 title: ts('Revert %1?', {
942 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
943 })
944 };
945 },
4b8c8b42
TO
946 'delete': function (options) {
947 return {
948 message: ts('Are you sure you want to delete this?'),
949 options: {no: ts('Cancel'), yes: ts('Delete')},
950 width: 300,
951 title: ts('Delete %1?', {
952 1: options.obj.title || options.obj.label || options.obj.name || ts('the record')
953 })
954 };
955 }
956 };
6a6d0f41 957 var confirmCount = 0;
4b8c8b42 958 return {
4b8c8b42
TO
959 link: function (scope, element, attrs) {
960 $(element).click(function () {
f2bad133 961 var options = scope.$eval(attrs.crmConfirm);
b8603a6d
CW
962 if (attrs.title && !options.title) {
963 options.title = attrs.title;
964 }
4b8c8b42 965 var defaults = (options.type) ? defaultFuncs[options.type](options) : {};
6a6d0f41
TO
966
967 var tpl = null, stubId = null;
968 if (!options.message) {
969 if (options.templateUrl) {
970 tpl = $templateRequest(options.templateUrl);
971 }
972 else if (options.template) {
973 tpl = options.template;
974 }
975 if (tpl) {
976 stubId = 'crmUiConfirm_' + (++confirmCount);
977 options.message = '<div id="' + stubId + '"></div>';
978 }
979 }
980
4b8c8b42 981 CRM.confirm(_.extend(defaults, options))
6a6d0f41
TO
982 .on('crmConfirm:yes', function() { scope.$apply(attrs.onYes); })
983 .on('crmConfirm:no', function() { scope.$apply(attrs.onNo); });
984
985 if (tpl && stubId) {
986 $q.when(tpl, function(html) {
987 var scope = options.scope || $rootScope.$new();
988 if (options.export) {
989 angular.extend(scope, options.export);
990 }
991 var linker = $compile(html);
992 $('#' + stubId).append($(linker(scope)));
993 });
994 }
4b8c8b42
TO
995 });
996 }
997 };
998 })
02308c07
TO
999 .run(function($rootScope, $location) {
1000 /// Example: <button ng-click="goto('home')">Go home!</button>
1001 $rootScope.goto = function(path) {
1002 $location.path(path);
1003 };
4b8c8b42 1004 // useful for debugging: $rootScope.log = console.log || function() {};
02308c07 1005 })
685acae4 1006 ;
1007
5fb5b3cf 1008})(angular, CRM.$, CRM._);