]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/services/ui.js
webstaff: teach egConfirmDialog how to set custom labels for buttons
[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                 scope.$apply(model.assign(scope, false));
23             })
24         }
25     };
26 }])
27
28 /**
29  * <input blur-me="pleaseBlurMe"/>
30  * $scope.pleaseBlurMe = true
31  * Useful for de-focusing when no other obvious focus target exists
32  */
33 .directive('blurMe', 
34        ['$timeout','$parse', 
35 function($timeout , $parse) {
36     return {
37         link: function(scope, element, attrs) {
38             var model = $parse(attrs.blurMe);
39             scope.$watch(model, function(value) {
40                 if(value === true) 
41                     $timeout(function() {element[0].blur()});
42             });
43             element.bind('focus', function() {
44                 scope.$apply(model.assign(scope, false));
45             })
46         }
47     };
48 }])
49
50
51 // <input select-me="iWantToBeSelected"/>
52 // $scope.iWantToBeSelected = true;
53 .directive('selectMe', 
54        ['$timeout','$parse', 
55 function($timeout , $parse) {
56     return {
57         link: function(scope, element, attrs) {
58             var model = $parse(attrs.selectMe);
59             scope.$watch(model, function(value) {
60                 if(value === true) 
61                     $timeout(function() {element[0].select()});
62             });
63             element.bind('blur', function() {
64                 scope.$apply(model.assign(scope, false));
65             })
66         }
67     };
68 }])
69
70
71 // 'reverse' filter 
72 // <div ng-repeat="item in items | reverse">{{item.name}}</div>
73 // http://stackoverflow.com/questions/15266671/angular-ng-repeat-in-reverse
74 // TODO: perhaps this should live elsewhere
75 .filter('reverse', function() {
76     return function(items) {
77         return items.slice().reverse();
78     };
79 })
80
81
82 /**
83  * egAlertDialog.open({message : 'hello {{name}}'}).result.then(
84  *     function() { console.log('alert closed') });
85  */
86 .factory('egAlertDialog', 
87
88         ['$modal','$interpolate',
89 function($modal , $interpolate) {
90     var service = {};
91
92     service.open = function(message, msg_scope) {
93         return $modal.open({
94             templateUrl: './share/t_alert_dialog',
95             controller: ['$scope', '$modalInstance',
96                 function($scope, $modalInstance) {
97                     $scope.message = $interpolate(message)(msg_scope);
98                     $scope.ok = function() {
99                         if (msg_scope && msg_scope.ok) msg_scope.ok();
100                         $modalInstance.close()
101                     }
102                 }
103             ]
104         });
105     }
106
107     return service;
108 }])
109
110 /**
111  * egConfirmDialog.open("some message goes {{here}}", {
112  *  here : 'foo', ok : function() {}, cancel : function() {}},
113  *  'OK', 'Cancel');
114  */
115 .factory('egConfirmDialog', 
116     
117        ['$modal','$interpolate',
118 function($modal, $interpolate) {
119     var service = {};
120
121     service.open = function(title, message, msg_scope, ok_button_label, cancel_button_label) {
122         return $modal.open({
123             templateUrl: './share/t_confirm_dialog',
124             controller: ['$scope', '$modalInstance',
125                 function($scope, $modalInstance) {
126                     $scope.title = $interpolate(title)(msg_scope);
127                     $scope.message = $interpolate(message)(msg_scope);
128                     $scope.ok_button_label = $interpolate(ok_button_label || '')(msg_scope);
129                     $scope.cancel_button_label = $interpolate(cancel_button_label || '')(msg_scope);
130                     $scope.ok = function() {
131                         if (msg_scope.ok) msg_scope.ok();
132                         $modalInstance.close()
133                     }
134                     $scope.cancel = function() {
135                         if (msg_scope.cancel) msg_scope.cancel();
136                         $modalInstance.dismiss();
137                     }
138                 }
139             ]
140         })
141     }
142
143     return service;
144 }])
145
146 /**
147  * egPromptDialog.open(
148  *    "prompt message goes {{here}}", 
149  *    promptValue,  // optional
150  *    {
151  *      here : 'foo',  
152  *      ok : function(value) {console.log(value)}, 
153  *      cancel : function() {console.log('prompt denied')}
154  *    }
155  *  );
156  */
157 .factory('egPromptDialog', 
158     
159        ['$modal','$interpolate',
160 function($modal, $interpolate) {
161     var service = {};
162
163     service.open = function(message, promptValue, msg_scope) {
164         return $modal.open({
165             templateUrl: './share/t_prompt_dialog',
166             controller: ['$scope', '$modalInstance',
167                 function($scope, $modalInstance) {
168                     $scope.message = $interpolate(message)(msg_scope);
169                     $scope.args = {value : promptValue || ''};
170                     $scope.focus = true;
171                     $scope.ok = function() {
172                         if (msg_scope.ok) msg_scope.ok($scope.args.value);
173                         $modalInstance.close()
174                     }
175                     $scope.cancel = function() {
176                         if (msg_scope.cancel) msg_scope.cancel();
177                         $modalInstance.dismiss();
178                     }
179                 }
180             ]
181         })
182     }
183
184     return service;
185 }])
186
187 .directive('aDisabled', function() {
188     return {
189         restrict : 'A',
190         compile: function(tElement, tAttrs, transclude) {
191             //Disable ngClick
192             tAttrs["ngClick"] = ("ng-click", "!("+tAttrs["aDisabled"]+") && ("+tAttrs["ngClick"]+")");
193
194             //Toggle "disabled" to class when aDisabled becomes true
195             return function (scope, iElement, iAttrs) {
196                 scope.$watch(iAttrs["aDisabled"], function(newValue) {
197                     if (newValue !== undefined) {
198                         iElement.toggleClass("disabled", newValue);
199                     }
200                 });
201
202                 //Disable href on click
203                 iElement.on("click", function(e) {
204                     if (scope.$eval(iAttrs["aDisabled"])) {
205                         e.preventDefault();
206                     }
207                 });
208             };
209         }
210     };
211 })
212
213 .directive('egBasicComboBox', function() {
214     return {
215         restrict: 'E',
216         replace: true,
217         scope: {
218             list: "=", // list of strings
219             selected: "="
220         },
221         template:
222             '<div class="input-group">'+
223                 '<input type="text" class="form-control" ng-model="selected" ng-change="makeOpen()">'+
224                 '<div class="input-group-btn" dropdown ng-class="{open:isopen}">'+
225                     '<button type="button" class="btn btn-default dropdown-toggle"><span class="caret"></span></button>'+
226                     '<ul class="dropdown-menu dropdown-menu-right">'+
227                         '<li ng-repeat="item in list|filter:selected"><a href ng-click="changeValue(item)">{{item}}</a></li>'+
228                     '</ul>'+
229                 '</div>'+
230             '</div>',
231         controller: ['$scope','$filter',
232             function( $scope , $filter) {
233
234                 $scope.always = true;
235                 $scope.isopen = false;
236
237                 $scope.makeOpen = function () {
238                     return $scope.isopen = $filter('filter')(
239                         $scope.list,
240                         $scope.selected
241                     ).length > 0 && $scope.selected.length > 0;
242                 }
243
244                 $scope.changeValue = function (newVal) {
245                     $scope.selected = newVal;
246                     $scope.isopen = false;
247                 }
248
249             }
250         ]
251     };
252 })
253
254 /**
255  * Nested org unit selector modeled as a Bootstrap dropdown button.
256  */
257 .directive('egOrgSelector', function() {
258     return {
259         restrict : 'AE',
260         transclude : true,
261         replace : true, // makes styling easier
262         scope : {
263             selected : '=', // defaults to workstation or root org,
264                             // unless the nodefault attibute exists
265
266             // Each org unit is passed into this function and, for
267             // any org units where the response value is true, the
268             // org unit will not be added to the selector.
269             hiddenTest : '=',
270
271             // Each org unit is passed into this function and, for
272             // any org units where the response value is true, the
273             // org unit will not be available for selection.
274             disableTest : '=',
275
276             // if set to true, disable the UI element altogether
277             alldisabled : '@',
278
279             // Caller can either $watch(selected, ..) or register an
280             // onchange handler.
281             onchange : '=',
282
283             // optional primary drop-down button label
284             label : '@'
285         },
286
287         // any reason to move this into a TT2 template?
288         template : 
289             '<div class="btn-group eg-org-selector" dropdown>'
290             + '<button type="button" class="btn btn-default dropdown-toggle" ng-disabled="disable_button">'
291              + '<span style="padding-right: 5px;">{{getSelectedName()}}</span>'
292              + '<span class="caret"></span>'
293            + '</button>'
294            + '<ul class="dropdown-menu">'
295              + '<li ng-repeat="org in orgList" ng-hide="hiddenTest(org.id)">'
296                + '<a href ng-click="orgChanged(org)" a-disabled="disableTest(org.id)" '
297                  + 'style="padding-left: {{org.depth * 10 + 5}}px">'
298                  + '{{org.shortname}}'
299                + '</a>'
300              + '</li>'
301            + '</ul>'
302           + '</div>',
303
304         controller : ['$scope','$timeout','egOrg','egAuth',
305               function($scope , $timeout , egOrg , egAuth) {
306
307             if ($scope.alldisabled) {
308                 $scope.disable_button = $scope.alldisabled == 'true' ? true : false;
309             } else {
310                 $scope.disable_button = false;
311             }
312
313             $scope.egOrg = egOrg; // for use in the link function
314             $scope.egAuth = egAuth; // for use in the link function
315
316             // avoid linking the full fleshed tree to the scope by 
317             // tossing in a flattened list.
318             $scope.orgList = egOrg.list().map(function(org) {
319                 return {
320                     id : org.id(),
321                     shortname : org.shortname(), 
322                     depth : org.ou_type().depth()
323                 }
324             });
325
326             $scope.getSelectedName = function() {
327                 if ($scope.selected)
328                     return $scope.selected.shortname();
329                 return $scope.label;
330             }
331
332             $scope.orgChanged = function(org) {
333                 $scope.selected = egOrg.get(org.id);
334                 if ($scope.onchange) $scope.onchange($scope.selected);
335             }
336
337         }],
338         link : function(scope, element, attrs, egGridCtrl) {
339
340             // boolean fields are presented as value-less attributes
341             angular.forEach(
342                 ['nodefault'],
343                 function(field) {
344                     if (angular.isDefined(attrs[field]))
345                         scope[field] = true;
346                     else
347                         scope[field] = false;
348                 }
349             );
350
351             if (!scope.selected && !scope.nodefault)
352                 scope.selected = scope.egOrg.get(scope.egAuth.user().ws_ou());
353         }
354
355     }
356 })
357
358 /* http://eric.sau.pe/angularjs-detect-enter-key-ngenter/ */
359 .directive('egEnter', function () {
360     return function (scope, element, attrs) {
361         element.bind("keydown keypress", function (event) {
362             if(event.which === 13) {
363                 scope.$apply(function (){
364                     scope.$eval(attrs.egEnter);
365                 });
366  
367                 event.preventDefault();
368             }
369         });
370     };
371 })
372
373 /*
374 http://stackoverflow.com/questions/18061757/angular-js-and-html5-date-input-value-how-to-get-firefox-to-show-a-readable-d
375
376 This directive allows us to use html5 input type="date" (for Chrome) and 
377 gracefully fall back to a regular ISO text input for Firefox.
378 It also allows us to abstract away some browser finickiness.
379 */
380 .directive(
381     'egDateInput',
382     function(dateFilter) {
383         return {
384             require: 'ngModel',
385             template: '<input type="date"></input>',
386             replace: true,
387             link: function(scope, elm, attrs, ngModelCtrl) {
388
389                 // since this is a date-only selector, set the time
390                 // portion to 00:00:00, which should better match the
391                 // user's expectations.  Note this allows us to retain
392                 // the timezone.
393                 function strip_time(date) {
394                     if (!date) date = new Date();
395                     date.setHours(0);
396                     date.setMinutes(0);
397                     date.setSeconds(0);
398                     date.setMilliseconds(0);
399                     return date;
400                 }
401
402                 ngModelCtrl.$formatters.unshift(function (modelValue) {
403                     // apply strip_time here in case the user never 
404                     // modifies the date value.
405                     return dateFilter(strip_time(modelValue), 'yyyy-MM-dd');
406                 });
407                 
408                 ngModelCtrl.$parsers.unshift(function(viewValue) {
409                     return strip_time(new Date(viewValue));
410                 });
411             },
412         };
413 })