]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/services/ui.js
LP#1708291: teach egBasicComboBox and egDatePicker to accept focusMe
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / services / ui.js
1 /**
2   * UI tools and directives.
3   */
4 angular.module('egUiMod', ['egCoreMod', 'ui.bootstrap'])
5
6
7 /**
8  * <input focus-me="iAmOpen"/>
9  * $scope.iAmOpen = true;
10  */
11 .directive('focusMe', 
12        ['$timeout','$parse', 
13 function($timeout , $parse) {
14     return {
15         link: function(scope, element, attrs) {
16             var model = $parse(attrs.focusMe);
17             scope.$watch(model, function(value) {
18                 if(value === true) 
19                     $timeout(function() {element[0].focus()});
20             });
21             element.bind('blur', function() {
22                 $timeout(function() {
23                     scope.$apply(model.assign(scope, false));
24                 });
25             })
26         }
27     };
28 }])
29
30 /**
31  * <input blur-me="pleaseBlurMe"/>
32  * $scope.pleaseBlurMe = true
33  * Useful for de-focusing when no other obvious focus target exists
34  */
35 .directive('blurMe', 
36        ['$timeout','$parse', 
37 function($timeout , $parse) {
38     return {
39         link: function(scope, element, attrs) {
40             var model = $parse(attrs.blurMe);
41             scope.$watch(model, function(value) {
42                 if(value === true) 
43                     $timeout(function() {element[0].blur()});
44             });
45             element.bind('focus', function() {
46                 $timeout(function() {
47                     scope.$apply(model.assign(scope, false));
48                 });
49             })
50         }
51     };
52 }])
53
54
55 // <input select-me="iWantToBeSelected"/>
56 // $scope.iWantToBeSelected = true;
57 .directive('selectMe', 
58        ['$timeout','$parse', 
59 function($timeout , $parse) {
60     return {
61         link: function(scope, element, attrs) {
62             var model = $parse(attrs.selectMe);
63             scope.$watch(model, function(value) {
64                 if(value === true) 
65                     $timeout(function() {element[0].select()});
66             });
67             element.bind('blur', function() {
68                 $timeout(function() {
69                     scope.$apply(model.assign(scope, false));
70                 });
71             })
72         }
73     };
74 }])
75
76
77 // 'reverse' filter 
78 // <div ng-repeat="item in items | reverse">{{item.name}}</div>
79 // http://stackoverflow.com/questions/15266671/angular-ng-repeat-in-reverse
80 // TODO: perhaps this should live elsewhere
81 .filter('reverse', function() {
82     return function(items) {
83         return items.slice().reverse();
84     };
85 })
86
87 // 'date' filter
88 // Overriding the core angular date filter with a moment-js based one for
89 // better timezone and formatting support.
90 .filter('date',function() {
91
92     var formatMap = {
93         short  : 'l LT',
94         medium : 'lll',
95         long   : 'LLL',
96         full   : 'LLLL',
97
98         shortDate  : 'l',
99         mediumDate : 'll',
100         longDate   : 'LL',
101         fullDate   : 'LL',
102
103         shortTime  : 'LT',
104         mediumTime : 'LTS'
105     };
106
107     var formatReplace = [
108         [ /yyyy/g, 'YYYY' ],
109         [ /yy/g,   'YY'   ],
110         [ /y/g,    'Y'    ],
111         [ /ww/g,   'WW'   ],
112         [ /w/g,    'W'    ],
113         [ /dd/g,   'DD'   ],
114         [ /d/g,    'D'    ],
115         [ /sss/g,  'SSS'  ],
116         [ /EEEE/g, 'dddd' ],
117         [ /EEE/g,  'ddd'  ],
118         [ /Z/g,    'ZZ'   ]
119     ];
120
121     return function (date, format, tz) {
122         if (!date) return '';
123
124         if (date == 'now') 
125             date = new Date().toISOString();
126
127         if (format) {
128             var fmt = formatMap[format] || format;
129             angular.forEach(formatReplace, function (r) {
130                 fmt = fmt.replace(r[0],r[1]);
131             });
132         }
133
134         var d = moment(date);
135         if (tz && tz !== '-') d.tz(tz);
136
137         return d.isValid() ? d.format(fmt) : '';
138     }
139
140 })
141
142 // 'egOrgDate' filter
143 // Uses moment.js and moment-timezone.js to put dates into the most appropriate
144 // timezone for a given (optional) org unit based on its lib.timezone setting
145 .filter('egOrgDate',['$filter','egCore',
146              function($filter , egCore) {
147
148     var tzcache = {};
149
150     function eg_date_filter (date, fmt, ouID) {
151         if (ouID) {
152             if (angular.isObject(ouID)) {
153                 if (angular.isFunction(ouID.id)) {
154                     ouID = ouID.id();
155                 } else {
156                     ouID = ouID.id;
157                 }
158             }
159     
160             if (!tzcache[ouID]) {
161                 tzcache[ouID] = '-';
162                 egCore.org.settings('lib.timezone', ouID)
163                 .then(function(s) {
164                     tzcache[ouID] = s['lib.timezone'] || OpenSRF.tz;
165                 });
166             }
167         }
168
169         return $filter('date')(date, fmt, tzcache[ouID]);
170     }
171
172     eg_date_filter.$stateful = true;
173
174     return eg_date_filter;
175 }])
176
177 // 'egOrgDateInContext' filter
178 // Uses the egOrgDate filter to make time and date location aware, and further
179 // modifies the format if one of [short, medium, long, full] to show only the
180 // date if the optional interval parameter is day-granular.  This is
181 // particularly useful for due dates on circulations.
182 .filter('egOrgDateInContext',['$filter','egCore',
183                       function($filter , egCore) {
184
185     function eg_context_date_filter (date, format, orgID, interval) {
186         var fmt = format;
187         if (!fmt) fmt = 'shortDate';
188
189         // if this is a simple, one-word format, and it doesn't say "Date" in it...
190         if (['short','medium','long','full'].filter(function(x){return fmt == x}).length > 0 && interval) {
191             var secs = egCore.date.intervalToSeconds(interval);
192             if (secs !== null && secs % 86400 == 0) fmt += 'Date';
193         }
194
195         return $filter('egOrgDate')(date, fmt, orgID);
196     }
197
198     eg_context_date_filter.$stateful = true;
199
200     return eg_context_date_filter;
201 }])
202
203 // 'egDueDate' filter
204 // Uses the egOrgDateInContext filter to make time and date location aware, but
205 // only if the supplied interval is day-granular.  This is as wrapper for
206 // egOrgDateInContext to be used for circulation due date /only/.
207 .filter('egDueDate',['$filter','egCore',
208                       function($filter , egCore) {
209
210     function eg_context_due_date_filter (date, format, orgID, interval) {
211         if (interval) {
212             var secs = egCore.date.intervalToSeconds(interval);
213             if (secs === null || secs % 86400 != 0) {
214                 orgID = null;
215                 interval = null;
216             }
217         }
218         return $filter('egOrgDateInContext')(date, format, orgID, interval);
219     }
220
221     eg_context_due_date_filter.$stateful = true;
222
223     return eg_context_due_date_filter;
224 }])
225
226 // 'join' filter
227 // TODO: perhaps this should live elsewhere
228 .filter('join', function() {
229     return function(arr,sep) {
230         if (typeof arr == 'object' && arr.constructor == Array) {
231             return arr.join(sep || ',');
232         } else {
233             return '';
234         }
235     };
236 })
237
238 /**
239  * Progress Dialog. 
240  *
241  * egProgressDialog.open();
242  * egProgressDialog.open({value : 0});
243  * egProgressDialog.open({value : 0, max : 123});
244  * egProgressDialog.increment();
245  * egProgressDialog.increment();
246  * egProgressDialog.close();
247  *
248  * Each dialog has 2 numbers, 'max' and 'value'.
249  * The content of these values determines how the dialog displays.  
250  *
251  * There are 3 flavors:
252  *
253  * -- value is set, max is set
254  * determinate: shows a progression with a percent complete.
255  *
256  * -- value is set, max is unset
257  * semi-determinate, with a value report.  Shows a value-less
258  * <progress/>, but shows the value as a number in the dialog.
259  *
260  * This is useful in cases where the total number of items to retrieve
261  * from the server is unknown, but we know how many items we've
262  * retrieved thus far.  It helps to reinforce that something specific
263  * is happening, but we don't know when it will end.
264  *
265  * -- value is unset
266  * indeterminate: shows a generic value-less <progress/> with no 
267  * clear indication of progress.
268  *
269  * Only 1 egProgressDialog instance will be activate at a time.
270  * Each invocation of .open() destroys any existing instance.
271  */
272
273 /* Simple storage class for egProgressDialog data maintenance.
274  * This data lives outside of egProgressDialog so it can be 
275  * directly imported into egProgressDialog's $uibModalInstance.
276  */
277 .factory('egProgressData', [
278     function() {
279         var service = {}; // max/value initially unset
280
281         service.reset = function() {
282             delete service.max;
283             delete service.value;
284         }
285
286         service.hasvalue = function() {
287             return Number.isInteger(service.value);
288         }
289
290         service.hasmax = function() {
291             return Number.isInteger(service.max);
292         }
293
294         service.percent = function() {
295             if (service.hasvalue()  && 
296                 service.hasmax()    && 
297                 service.max > 0     &&
298                 service.value <= service.max)
299                 return Math.floor((service.value / service.max) * 100);
300             return 100;
301         }
302
303         return service;
304     }
305 ])
306
307 .factory('egProgressDialog', [
308             'egProgressData','$uibModal', 
309     function(egProgressData , $uibModal) {
310     var service = {};
311
312     service.open = function(args) {
313         service.close(); // force-kill existing instances.
314
315         // Reset to an indeterminate progress bar, 
316         // overlay with caller values.
317         egProgressData.reset();
318         service.update(angular.extend({}, args));
319
320         return $uibModal.open({
321             templateUrl: './share/t_progress_dialog',
322             controller: ['$scope','$uibModalInstance','egProgressData',
323                 function( $scope , $uibModalInstance , egProgressData) {
324                   service.currentInstance = $uibModalInstance;
325                   $scope.data = egProgressData; // tiny service
326                 }
327             ]
328         });
329     };
330
331     service.close = function() {
332         if (service.currentInstance) {
333             service.currentInstance.close();
334             delete service.currentInstance;
335         }
336     }
337
338     // Set the current state of the progress bar.
339     service.update = function(args) {
340         if (args.max != undefined) 
341             egProgressData.max = args.max;
342         if (args.value != undefined) 
343             egProgressData.value = args.value;
344     }
345
346     // Increment the current value.  If no amount is specified,
347     // it increments by 1.  Calling increment() on an indetermite
348     // progress bar will force it to be a (semi-)determinate bar.
349     service.increment = function(amt) {
350         if (!Number.isInteger(amt)) amt = 1;
351
352         if (!egProgressData.hasvalue())
353             egProgressData.value = 0;
354
355         egProgressData.value += amt;
356     }
357
358     return service;
359 }])
360
361 /**
362  * egAlertDialog.open({message : 'hello {{name}}'}).result.then(
363  *     function() { console.log('alert closed') });
364  */
365 .factory('egAlertDialog', 
366
367         ['$uibModal','$interpolate',
368 function($uibModal , $interpolate) {
369     var service = {};
370
371     service.open = function(message, msg_scope) {
372         return $uibModal.open({
373             templateUrl: './share/t_alert_dialog',
374             controller: ['$scope', '$uibModalInstance',
375                 function($scope, $uibModalInstance) {
376                     $scope.message = $interpolate(message)(msg_scope);
377                     $scope.ok = function() {
378                         if (msg_scope && msg_scope.ok) msg_scope.ok();
379                         $uibModalInstance.close()
380                     }
381                 }
382             ]
383         });
384     }
385
386     return service;
387 }])
388
389 /**
390  * egConfirmDialog.open("some message goes {{here}}", {
391  *  here : 'foo', ok : function() {}, cancel : function() {}},
392  *  'OK', 'Cancel');
393  */
394 .factory('egConfirmDialog', 
395     
396        ['$uibModal','$interpolate',
397 function($uibModal, $interpolate) {
398     var service = {};
399
400     service.open = function(title, message, msg_scope, ok_button_label, cancel_button_label) {
401         return $uibModal.open({
402             templateUrl: './share/t_confirm_dialog',
403             controller: ['$scope', '$uibModalInstance',
404                 function($scope, $uibModalInstance) {
405                     $scope.title = $interpolate(title)(msg_scope);
406                     $scope.message = $interpolate(message)(msg_scope);
407                     $scope.ok_button_label = $interpolate(ok_button_label || '')(msg_scope);
408                     $scope.cancel_button_label = $interpolate(cancel_button_label || '')(msg_scope);
409                     $scope.ok = function() {
410                         if (msg_scope.ok) msg_scope.ok();
411                         $uibModalInstance.close()
412                     }
413                     $scope.cancel = function() {
414                         if (msg_scope.cancel) msg_scope.cancel();
415                         $uibModalInstance.dismiss();
416                     }
417                 }
418             ]
419         })
420     }
421
422     return service;
423 }])
424
425 /**
426  * egPromptDialog.open(
427  *    "prompt message goes {{here}}", 
428  *    promptValue,  // optional
429  *    {
430  *      here : 'foo',  
431  *      ok : function(value) {console.log(value)}, 
432  *      cancel : function() {console.log('prompt denied')}
433  *    }
434  *  );
435  */
436 .factory('egPromptDialog', 
437     
438        ['$uibModal','$interpolate',
439 function($uibModal, $interpolate) {
440     var service = {};
441
442     service.open = function(message, promptValue, msg_scope) {
443         return $uibModal.open({
444             templateUrl: './share/t_prompt_dialog',
445             controller: ['$scope', '$uibModalInstance',
446                 function($scope, $uibModalInstance) {
447                     $scope.message = $interpolate(message)(msg_scope);
448                     $scope.args = {value : promptValue || ''};
449                     $scope.focus = true;
450                     $scope.ok = function() {
451                         if (msg_scope.ok) msg_scope.ok($scope.args.value);
452                         $uibModalInstance.close()
453                     }
454                     $scope.cancel = function() {
455                         if (msg_scope.cancel) msg_scope.cancel();
456                         $uibModalInstance.dismiss();
457                     }
458                 }
459             ]
460         })
461     }
462
463     return service;
464 }])
465
466 /**
467  * egSelectDialog.open(
468  *    "message goes {{here}}", 
469  *    list,           // ['values','for','dropdown'],
470  *    selectedValue,  // optional
471  *    {
472  *      here : 'foo',
473  *      ok : function(value) {console.log(value)}, 
474  *      cancel : function() {console.log('prompt denied')}
475  *    }
476  *  );
477  */
478 .factory('egSelectDialog', 
479     
480        ['$uibModal','$interpolate',
481 function($uibModal, $interpolate) {
482     var service = {};
483
484     service.open = function(message, inputList, selectedValue, msg_scope) {
485         return $uibModal.open({
486             templateUrl: './share/t_select_dialog',
487             controller: ['$scope', '$uibModalInstance',
488                 function($scope, $uibModalInstance) {
489                     $scope.message = $interpolate(message)(msg_scope);
490                     $scope.args = {
491                         list  : inputList,
492                         value : selectedValue
493                     };
494                     $scope.focus = true;
495                     $scope.ok = function() {
496                         if (msg_scope.ok) msg_scope.ok($scope.args.value);
497                         $uibModalInstance.close()
498                     }
499                     $scope.cancel = function() {
500                         if (msg_scope.cancel) msg_scope.cancel();
501                         $uibModalInstance.dismiss();
502                     }
503                 }
504             ]
505         })
506     }
507
508     return service;
509 }])
510
511 /**
512  * Warn on page unload and give the user a chance to avoid navigating
513  * away from the current page.  
514  * Only one handler is supported per page.
515  * NOTE: we can't use an egUnloadDialog as the dialog builder, because
516  * it renders asynchronously, which allows the page to redirect before
517  * the dialog appears.
518  */
519 .factory('egUnloadPrompt', [
520         '$window','egStrings', 
521 function($window , egStrings) {
522     var service = {attached : false};
523
524     // attach a page/scope unload prompt
525     service.attach = function($scope, msg) {
526         if (service.attached) return;
527         service.attached = true;
528
529         // handle page change
530         $($window).on('beforeunload', function() { 
531             service.clear();
532             return msg || egStrings.EG_UNLOAD_PAGE_PROMPT_MSG;
533         });
534
535         if (!$scope) return;
536
537         // If a scope was provided, attach a scope-change handler,
538         // similar to the page-page prompt.
539         service.locChangeCancel = 
540             $scope.$on('$locationChangeStart', function(evt, next, current) {
541             if (confirm(msg || egStrings.EG_UNLOAD_CTRL_PROMPT_MSG)) {
542                 // user allowed the page to change.  
543                 // Clear the unload handler.
544                 service.clear();
545             } else {
546                 evt.preventDefault();
547             }
548         });
549     };
550
551     // remove the page unload prompt
552     service.clear = function() {
553         $($window).off('beforeunload');
554         if (service.locChangeCancel)
555             service.locChangeCancel();
556         service.attached = false;
557     }
558
559     return service;
560 }])
561
562 .directive('aDisabled', function() {
563     return {
564         restrict : 'A',
565         compile: function(tElement, tAttrs, transclude) {
566             //Disable ngClick
567             tAttrs["ngClick"] = ("ng-click", "!("+tAttrs["aDisabled"]+") && ("+tAttrs["ngClick"]+")");
568
569             //Toggle "disabled" to class when aDisabled becomes true
570             return function (scope, iElement, iAttrs) {
571                 scope.$watch(iAttrs["aDisabled"], function(newValue) {
572                     if (newValue !== undefined) {
573                         iElement.toggleClass("disabled", newValue);
574                     }
575                 });
576
577                 //Disable href on click
578                 iElement.on("click", function(e) {
579                     if (scope.$eval(iAttrs["aDisabled"])) {
580                         e.preventDefault();
581                     }
582                 });
583             };
584         }
585     };
586 })
587
588 .directive('egBasicComboBox', function() {
589     return {
590         restrict: 'E',
591         replace: true,
592         scope: {
593             list: "=", // list of strings
594             selected: "=",
595             egDisabled: "=",
596             allowAll: "@",
597             focusMe: "=?"
598         },
599         template:
600             '<div class="input-group">'+
601                 '<input type="text" ng-disabled="egDisabled" class="form-control" ng-model="selected" ng-change="makeOpen()" focus-me="focusMe">'+
602                 '<div class="input-group-btn" dropdown ng-class="{open:isopen}">'+
603                     '<button type="button" ng-click="showAll()" class="btn btn-default dropdown-toggle"><span class="caret"></span></button>'+
604                     '<ul class="dropdown-menu dropdown-menu-right">'+
605                         '<li ng-repeat="item in list|filter:selected"><a href ng-click="changeValue(item)">{{item}}</a></li>'+
606                         '<li ng-if="complete_list" class="divider"><span></span></li>'+
607                         '<li ng-if="complete_list" ng-repeat="item in list"><a href ng-click="changeValue(item)">{{item}}</a></li>'+
608                     '</ul>'+
609                 '</div>'+
610             '</div>',
611         controller: ['$scope','$filter',
612             function( $scope , $filter) {
613
614                 $scope.complete_list = false;
615                 $scope.isopen = false;
616                 $scope.clickedopen = false;
617                 $scope.clickedclosed = null;
618
619                 $scope.showAll = function () {
620
621                     $scope.clickedopen = !$scope.clickedopen;
622
623                     if ($scope.clickedclosed === null) {
624                         if (!$scope.clickedopen) {
625                             $scope.clickedclosed = true;
626                         }
627                     } else {
628                         $scope.clickedclosed = !$scope.clickedopen;
629                     }
630
631                     if ($scope.selected.length > 0) $scope.complete_list = true;
632                     if ($scope.selected.length == 0) $scope.complete_list = false;
633                     $scope.makeOpen();
634                 }
635
636                 $scope.makeOpen = function () {
637                     $scope.isopen = $scope.clickedopen || ($filter('filter')(
638                         $scope.list,
639                         $scope.selected
640                     ).length > 0 && $scope.selected.length > 0);
641                     if ($scope.clickedclosed) $scope.isopen = false;
642                 }
643
644                 $scope.changeValue = function (newVal) {
645                     $scope.selected = newVal;
646                     $scope.isopen = false;
647                     $scope.clickedclosed = null;
648                     $scope.clickedopen = false;
649                     if ($scope.selected.length == 0) $scope.complete_list = false;
650                 }
651
652             }
653         ]
654     };
655 })
656
657 /**
658  * Nested org unit selector modeled as a Bootstrap dropdown button.
659  */
660 .directive('egOrgSelector', function() {
661     return {
662         restrict : 'AE',
663         transclude : true,
664         replace : true, // makes styling easier
665         scope : {
666             selected : '=', // defaults to workstation or root org,
667                             // unless the nodefault attibute exists
668
669             // Each org unit is passed into this function and, for
670             // any org units where the response value is true, the
671             // org unit will not be added to the selector.
672             hiddenTest : '=',
673
674             // Each org unit is passed into this function and, for
675             // any org units where the response value is true, the
676             // org unit will not be available for selection.
677             disableTest : '=',
678
679             // if set to true, disable the UI element altogether
680             alldisabled : '@',
681
682             // Caller can either $watch(selected, ..) or register an
683             // onchange handler.
684             onchange : '=',
685
686             // optional primary drop-down button label
687             label : '@',
688
689             // optional name of settings key for persisting
690             // the last selected org unit
691             stickySetting : '@'
692         },
693
694         // any reason to move this into a TT2 template?
695         template : 
696             '<div class="btn-group eg-org-selector" uib-dropdown>'
697             + '<button type="button" class="btn btn-default" uib-dropdown-toggle ng-disabled="disable_button">'
698              + '<span style="padding-right: 5px;">{{getSelectedName()}}</span>'
699              + '<span class="caret"></span>'
700            + '</button>'
701            + '<ul uib-dropdown-menu class="scrollable-menu">'
702              + '<li ng-repeat="org in orgList" ng-hide="hiddenTest(org.id)">'
703                + '<a href ng-click="orgChanged(org)" a-disabled="disableTest(org.id)" '
704                  + 'style="padding-left: {{org.depth * 10 + 5}}px">'
705                  + '{{org.shortname}}'
706                + '</a>'
707              + '</li>'
708            + '</ul>'
709           + '</div>',
710
711         controller : ['$scope','$timeout','egCore','egStartup','egLovefield','$q',
712               function($scope , $timeout , egCore , egStartup , egLovefield , $q) {
713
714             if ($scope.alldisabled) {
715                 $scope.disable_button = $scope.alldisabled == 'true' ? true : false;
716             } else {
717                 $scope.disable_button = false;
718             }
719
720             // avoid linking the full fleshed tree to the scope by 
721             // tossing in a flattened list.
722             // --
723             // Run-time code referencing post-start data should be run
724             // from within a startup block, otherwise accessing this
725             // module before startup completes will lead to failure.
726             //
727             // controller() runs before link().
728             // This post-startup code runs after link().
729             egStartup.go(
730             ).then(
731                 function() {
732                     return egCore.env.classLoaders.aou();
733                 }
734             ).then(
735                 function() {
736
737                     $scope.orgList = egCore.org.list().map(function(org) {
738                         return {
739                             id : org.id(),
740                             shortname : org.shortname(), 
741                             depth : org.ou_type().depth()
742                         }
743                     });
744                     
745     
746                     // Apply default values
747     
748                     if ($scope.stickySetting) {
749                         var orgId = egCore.hatch.getLocalItem($scope.stickySetting);
750                         if (orgId) {
751                             $scope.selected = egCore.org.get(orgId);
752                         }
753                     }
754     
755                     if (!$scope.selected && !$scope.nodefault && egCore.auth.user()) {
756                         $scope.selected = 
757                             egCore.org.get(egCore.auth.user().ws_ou());
758                     }
759     
760                     fire_orgsel_onchange(); // no-op if nothing is selected
761                 }
762             );
763
764             /**
765              * Fire onchange handler after a timeout, so the
766              * $scope.selected value has a chance to propagate to
767              * the page controllers before the onchange fires.  This
768              * way, the caller does not have to manually capture the
769              * $scope.selected value during onchange.
770              */
771             function fire_orgsel_onchange() {
772                 if (!$scope.selected || !$scope.onchange) return;
773                 $timeout(function() {
774                     console.debug(
775                         'egOrgSelector onchange('+$scope.selected.id()+')');
776                     $scope.onchange($scope.selected)
777                 });
778             }
779
780             $scope.getSelectedName = function() {
781                 if ($scope.selected && $scope.selected.shortname)
782                     return $scope.selected.shortname();
783                 return $scope.label;
784             }
785
786             $scope.orgChanged = function(org) {
787                 $scope.selected = egCore.org.get(org.id);
788                 if ($scope.stickySetting) {
789                     egCore.hatch.setLocalItem($scope.stickySetting, org.id);
790                 }
791                 fire_orgsel_onchange();
792             }
793
794         }],
795         link : function(scope, element, attrs, egGridCtrl) {
796
797             // boolean fields are presented as value-less attributes
798             angular.forEach(
799                 ['nodefault'],
800                 function(field) {
801                     if (angular.isDefined(attrs[field]))
802                         scope[field] = true;
803                     else
804                         scope[field] = false;
805                 }
806             );
807         }
808     }
809 })
810
811 .directive('nextOnEnter', function () {
812     return function (scope, element, attrs) {
813         element.bind("keydown keypress", function (event) {
814             if(event.which === 13) {
815                 $('#'+attrs.nextOnEnter).focus();
816                 event.preventDefault();
817             }
818         });
819     };
820 })
821
822 /* http://eric.sau.pe/angularjs-detect-enter-key-ngenter/ */
823 .directive('egEnter', function () {
824     return function (scope, element, attrs) {
825         element.bind("keydown keypress", function (event) {
826             if(event.which === 13) {
827                 scope.$apply(function (){
828                     scope.$eval(attrs.egEnter);
829                 });
830  
831                 event.preventDefault();
832             }
833         });
834     };
835 })
836
837 /*
838 * Handy wrapper directive for uib-datapicker-popup
839 */
840 .directive(
841     'egDateInput', ['egStrings', 'egCore',
842     function(egStrings, egCore) {
843         return {
844             scope : {
845                 id : '@',
846                 closeText : '@',
847                 ngModel : '=',
848                 ngChange : '=',
849                 ngBlur : '=',
850                 minDate : '=?',
851                 maxDate : '=?',
852                 ngDisabled : '=',
853                 ngRequired : '=',
854                 hideDatePicker : '=',
855                 dateFormat : '=?',
856                 outOfRange : '=?',
857                 focusMe : '=?'
858             },
859             require: 'ngModel',
860             templateUrl: './share/t_datetime',
861             replace: true,
862             controller : ['$scope', function($scope) {
863                 $scope.options = {
864                     minDate : $scope.minDate,
865                     maxDate : $scope.maxDate
866                 };
867
868                 var maxDateObj = $scope.maxDate ? new Date($scope.maxDate) : null;
869                 var minDateObj = $scope.minDate ? new Date($scope.minDate) : null;
870
871                 if ($scope.outOfRange !== undefined && (maxDateObj || minDateObj)) {
872                     $scope.$watch('ngModel', function (n,o) {
873                         if (n && n != o) {
874                             var bad = false;
875                             var newdate = new Date(n);
876                             if (maxDateObj && newdate.getTime() > maxDateObj.getTime()) bad = true;
877                             if (minDateObj && newdate.getTime() < minDateObj.getTime()) bad = true;
878                             $scope.outOfRange = bad;
879                         }
880                     });
881                 }
882             }],
883             link : function(scope, elm, attrs) {
884                 if (!scope.closeText)
885                     scope.closeText = egStrings.EG_DATE_INPUT_CLOSE_TEXT;
886
887                 if ('showTimePicker' in attrs)
888                     scope.showTimePicker = true;
889
890                 var default_format = 'mediumDate';
891                 egCore.org.settings(['format.date']).then(function(set) {
892                     default_format = set['format.date'];
893                     scope.date_format = (scope.dateFormat) ?
894                         scope.dateFormat :
895                         default_format;
896                 });
897             }
898         };
899     }
900 ])
901
902 /*
903  *  egFmValueSelector - widget for selecting a value from list specified
904  *                      by IDL class
905  */
906 .directive('egFmValueSelector', function() {
907     return {
908         restrict : 'E',
909         transclude : true,
910         scope : {
911             idlClass : '@',
912             ngModel : '=',
913
914             // optional filter for refining the set of rows that
915             // get returned. Example:
916             //
917             // filter="{'column':{'=':null}}"
918             filter : '=',
919
920             // optional name of settings key for persisting
921             // the last selected value
922             stickySetting : '@',
923
924             // optional OU setting for fetching default value;
925             // used only if sticky setting not set
926             ouSetting : '@'
927         },
928         require: 'ngModel',
929         templateUrl : './share/t_fm_value_selector',
930         controller : ['$scope','egCore', function($scope , egCore) {
931
932             $scope.org = egCore.org; // for use in the link function
933             $scope.auth = egCore.auth; // for use in the link function
934             $scope.hatch = egCore.hatch // for use in the link function
935
936             function flatten_linked_values(cls, list) {
937                 var results = [];
938                 var fields = egCore.idl.classes[cls].fields;
939                 var id_field;
940                 var selector;
941                 angular.forEach(fields, function(fld) {
942                     if (fld.datatype == 'id') {
943                         id_field = fld.name;
944                         selector = fld.selector ? fld.selector : id_field;
945                         return;
946                     }
947                 });
948                 angular.forEach(list, function(item) {
949                     var rec = egCore.idl.toHash(item);
950                     results.push({
951                         id : rec[id_field],
952                         name : rec[selector]
953                     });
954                 });
955                 return results;
956             }
957
958             var search = {};
959             search[egCore.idl.classes[$scope.idlClass].pkey] = {'!=' : null};
960             if ($scope.filter) {
961                 angular.extend(search, $scope.filter);
962             }
963             egCore.pcrud.search(
964                 $scope.idlClass, search, {}, {atomic : true}
965             ).then(function(list) {
966                 $scope.linked_values = flatten_linked_values($scope.idlClass, list);
967             });
968
969             $scope.handleChange = function(value) {
970                 if ($scope.stickySetting) {
971                     egCore.hatch.setLocalItem($scope.stickySetting, value);
972                 }
973             }
974
975         }],
976         link : function(scope, element, attrs) {
977             if (scope.stickySetting && (angular.isUndefined(scope.ngModel) || (scope.ngModel === null))) {
978                 var value = scope.hatch.getLocalItem(scope.stickySetting);
979                 scope.ngModel = value;
980             }
981             if (scope.ouSetting && (angular.isUndefined(scope.ngModel) || (scope.ngModel === null))) {
982                 scope.org.settings([scope.ouSetting], scope.auth.user().ws_ou())
983                 .then(function(set) {
984                     var value = parseInt(set[scope.ouSetting]);
985                     if (!isNaN(value))
986                         scope.ngModel = value;
987                 });
988             }
989         }
990     }
991 })
992
993 /*
994  *  egShareDepthSelector - widget for selecting a share depth
995  */
996 .directive('egShareDepthSelector', function() {
997     return {
998         restrict : 'E',
999         transclude : true,
1000         scope : {
1001             ngModel : '=',
1002         },
1003         require: 'ngModel',
1004         templateUrl : './share/t_share_depth_selector',
1005         controller : ['$scope','egCore', function($scope , egCore) {
1006             $scope.values = [];
1007             egCore.pcrud.search('aout',
1008                 { id : {'!=' : null} },
1009                 { order_by : {aout : ['depth', 'name']} },
1010                 { atomic : true }
1011             ).then(function(list) {
1012                 var scratch = [];
1013                 angular.forEach(list, function(aout) {
1014                     var depth = parseInt(aout.depth());
1015                     if (depth in scratch) {
1016                         scratch[depth].push(aout.name());
1017                     } else {
1018                         scratch[depth] = [ aout.name() ]
1019                     }
1020                 });
1021                 scratch.forEach(function(val, idx) {
1022                     $scope.values.push({ id : idx,  name : scratch[idx].join(' / ') });
1023                 });
1024             });
1025         }]
1026     }
1027 })
1028
1029 /*
1030  * egHelpPopover - a helpful widget
1031  */
1032 .directive('egHelpPopover', function() {
1033     return {
1034         restrict : 'E',
1035         transclude : true,
1036         scope : {
1037             helpText : '@',
1038             helpLink : '@'
1039         },
1040         templateUrl : './share/t_help_popover',
1041         controller : ['$scope','$sce', function($scope , $sce) {
1042             if ($scope.helpLink) {
1043                 $scope.helpHtml = $sce.trustAsHtml(
1044                     '<a target="_new" href="' + $scope.helpLink + '">' +
1045                     $scope.helpText + '</a>'
1046                 );
1047             }
1048         }]
1049     }
1050 })
1051
1052 .factory('egWorkLog', ['egCore', function(egCore) {
1053     var service = {};
1054
1055     service.retrieve_all = function() {
1056         var workLog = egCore.hatch.getLocalItem('eg.work_log') || [];
1057         var patronLog = egCore.hatch.getLocalItem('eg.patron_log') || [];
1058
1059         return { 'work_log' : workLog, 'patron_log' : patronLog };
1060     }
1061
1062     service.record = function(message,data) {
1063         var max_entries;
1064         var max_patrons;
1065         if (typeof egCore != 'undefined') {
1066             if (typeof egCore.env != 'undefined') {
1067                 if (typeof egCore.env.aous != 'undefined') {
1068                     max_entries = egCore.env.aous['ui.admin.work_log.max_entries'];
1069                     max_patrons = egCore.env.aous['ui.admin.patron_log.max_entries'];
1070                 } else {
1071                     console.log('worklog: missing egCore.env.aous');
1072                 }
1073             } else {
1074                 console.log('worklog: missing egCore.env');
1075             }
1076         } else {
1077             console.log('worklog: missing egCore');
1078         }
1079         if (!max_entries) {
1080             if (typeof egCore.org != 'undefined') {
1081                 if (typeof egCore.org.cachedSettings != 'undefined') {
1082                     max_entries = egCore.org.cachedSettings['ui.admin.work_log.max_entries'];
1083                 } else {
1084                     console.log('worklog: missing egCore.org.cachedSettings');
1085                 }
1086             } else {
1087                 console.log('worklog: missing egCore.org');
1088             }
1089         }
1090         if (!max_patrons) {
1091             if (typeof egCore.org != 'undefined') {
1092                 if (typeof egCore.org.cachedSettings != 'undefined') {
1093                     max_patrons = egCore.org.cachedSettings['ui.admin.patron_log.max_entries'];
1094                 } else {
1095                     console.log('worklog: missing egCore.org.cachedSettings');
1096                 }
1097             } else {
1098                 console.log('worklog: missing egCore.org');
1099             }
1100         }
1101         if (!max_entries) {
1102             max_entries = 20;
1103             console.log('worklog: defaulting to max_entries = ' + max_entries);
1104         }
1105         if (!max_patrons) {
1106             max_patrons = 10;
1107             console.log('worklog: defaulting to max_patrons = ' + max_patrons);
1108         }
1109
1110         var workLog = egCore.hatch.getLocalItem('eg.work_log') || [];
1111         var patronLog = egCore.hatch.getLocalItem('eg.patron_log') || [];
1112         var entry = {
1113             'when' : new Date(),
1114             'msg' : message,
1115             'action' : data.action,
1116             'actor' : egCore.auth.user().usrname()
1117         };
1118         if (data.action == 'checkin') {
1119             entry['item'] = data.response.params.copy_barcode;
1120             entry['item_id'] = data.response.data.acp.id();
1121             if (data.response.data.au) {
1122                 entry['user'] = data.response.data.au.family_name();
1123                 entry['patron_id'] = data.response.data.au.id();
1124             }
1125         }
1126         if (data.action == 'checkout') {
1127             entry['item'] = data.response.params.copy_barcode;
1128             entry['user'] = data.response.data.au.family_name();
1129             entry['item_id'] = data.response.data.acp.id();
1130             entry['patron_id'] = data.response.data.au.id();
1131         }
1132         if (data.action == 'noncat_checkout') {
1133             entry['user'] = data.response.data.au.family_name();
1134             entry['patron_id'] = data.response.data.au.id();
1135         }
1136         if (data.action == 'renew') {
1137             entry['item'] = data.response.params.copy_barcode;
1138             entry['user'] = data.response.data.au.family_name();
1139             entry['item_id'] = data.response.data.acp.id();
1140             entry['patron_id'] = data.response.data.au.id();
1141         }
1142         if (data.action == 'requested_hold'
1143             || data.action == 'edited_patron'
1144             || data.action == 'registered_patron'
1145             || data.action == 'paid_bill') {
1146             entry['patron_id'] = data.patron_id;
1147         }
1148         if (data.action == 'requested_hold') {
1149             entry['hold_id'] = data.hold_id;
1150         }
1151         if (data.action == 'paid_bill') {
1152             entry['amount'] = data.total_amount;
1153         }
1154
1155         workLog.push( entry );
1156         if (workLog.length > max_entries) workLog.shift();
1157         egCore.hatch.setLocalItem('eg.work_log',workLog); // hatch JSONifies the data, so should be okay re: memory leaks?
1158
1159         if (entry['patron_id']) {
1160             var temp = [];
1161             for (var i = 0; i < patronLog.length; i++) { // filter out any matching patron
1162                 if (patronLog[i]['patron_id'] != entry['patron_id']) temp.push(patronLog[i]);
1163             }
1164             temp.push( entry );
1165             if (temp.length > max_patrons) temp.shift();
1166             patronLog = temp;
1167             egCore.hatch.setLocalItem('eg.patron_log',patronLog);
1168         }
1169
1170         console.log('worklog',entry);
1171     }
1172
1173     return service;
1174 }]);