]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/catalog/app.js
LP#1402797 Implement retrieve record by id and tcn
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / catalog / app.js
1 /**
2  * TPAC Frame App
3  *
4  * currently, this app doesn't use routes for each sub-ui, because 
5  * reloading the catalog each time is sloooow.  better so far to 
6  * swap out divs w/ ng-if / ng-show / ng-hide as needed.
7  *
8  */
9
10 angular.module('egCatalogApp', ['ui.bootstrap','ngRoute','egCoreMod','egGridMod'])
11
12 .config(function($routeProvider, $locationProvider, $compileProvider) {
13     $locationProvider.html5Mode(true);
14     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
15
16     var resolver = {delay : 
17         ['egStartup', function(egStartup) {return egStartup.go()}]}
18
19     $routeProvider.when('/cat/catalog/index', {
20         templateUrl: './cat/catalog/t_catalog',
21         controller: 'CatalogCtrl',
22         resolve : resolver
23     });
24
25     $routeProvider.when('/cat/catalog/retrieve_by_id', {
26         templateUrl: './cat/catalog/t_retrieve_by_id',
27         controller: 'CatalogRecordRetrieve',
28         resolve : resolver
29     });
30
31     $routeProvider.when('/cat/catalog/retrieve_by_tcn', {
32         templateUrl: './cat/catalog/t_retrieve_by_tcn',
33         controller: 'CatalogRecordRetrieve',
34         resolve : resolver
35     });
36
37     // create some catalog page-specific mappings
38     $routeProvider.when('/cat/catalog/record/:record_id', {
39         templateUrl: './cat/catalog/t_catalog',
40         controller: 'CatalogCtrl',
41         resolve : resolver
42     });
43
44     // create some catalog page-specific mappings
45     $routeProvider.when('/cat/catalog/record/:record_id/:record_tab', {
46         templateUrl: './cat/catalog/t_catalog',
47         controller: 'CatalogCtrl',
48         resolve : resolver
49     });
50
51     $routeProvider.otherwise({redirectTo : '/cat/catalog/index'});
52 })
53
54
55 /**
56  * */
57 .controller('CatalogRecordRetrieve',
58        ['$scope','$routeParams','$location','$q','egCore',
59 function($scope , $routeParams , $location , $q , egCore ) {
60
61     $scope.focusMe = true;
62
63     // jump to the patron checkout UI
64     function loadRecord(record_id) {
65         $location
66         .path('/cat/catalog/record/' + record_id);
67     }
68
69     $scope.submitId = function(args) {
70         $scope.recordNotFound = null;
71         if (!args.record_id) return;
72
73         // blur so next time it's set to true it will re-apply select()
74         $scope.selectMe = false;
75
76         return loadRecord(args.record_id);
77     }
78
79     $scope.submitTCN = function(args) {
80         $scope.recordNotFound = null;
81         $scope.moreRecordsFound = null;
82         if (!args.record_tcn) return;
83
84         // blur so next time it's set to true it will re-apply select()
85         $scope.selectMe = false;
86
87         // lookup TCN
88         egCore.net.request(
89             'open-ils.search',
90             'open-ils.search.biblio.tcn',
91             args.record_tcn)
92
93         .then(function(resp) { // get_barcodes
94
95             if (evt = egCore.evt.parse(resp)) {
96                 alert(evt); // FIXME
97                 return;
98             }
99
100             if (!resp.count) {
101                 $scope.recordNotFound = args.record_tcn;
102                 $scope.selectMe = true;
103                 return;
104             }
105
106             if (resp.count > 1) {
107                 $scope.moreRecordsFound = args.record_tcn;
108                 $scope.selectMe = true;
109                 return;
110             }
111
112             var record_id = resp.ids[0];
113             return loadRecord(record_id);
114         });
115     }
116
117 }])
118
119 .controller('CatalogCtrl',
120        ['$scope','$routeParams','$location','$q','egCore','egHolds',
121         'egGridDataProvider','egHoldGridActions',
122 function($scope , $routeParams , $location , $q , egCore , egHolds, 
123          egGridDataProvider , egHoldGridActions) {
124
125     // set record ID on page load if available...
126     $scope.record_id = $routeParams.record_id;
127
128     // Set the "last bib" cookie, if we have that
129     if ($scope.record_id)
130         egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
131
132     // also set it when the iframe changes to a new record
133     $scope.handle_page = function(url) {
134
135         if (!url || url == 'about:blank') {
136             // nothing loaded.  If we already have a record ID, leave it.
137             return;
138         }
139
140         var match = url.match(/\/+opac\/+record\/+(\d+)/);
141         if (match) {
142             $scope.record_id = match[1];
143             egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
144
145             // force the record_id to show up in the page.  
146             // not sure why a $digest isn't occuring here.
147             try { $scope.$apply() } catch(E) {}
148         } else {
149             delete $scope.record_id;
150         }
151     }
152
153     // xulG catalog handlers
154     $scope.handlers = { }
155
156     // ------------------------------------------------------------------
157     // Holds 
158     var provider = egGridDataProvider.instance({});
159     $scope.hold_grid_data_provider = provider;
160     $scope.grid_actions = egHoldGridActions;
161     $scope.hold_grid_controls = {};
162
163     var hold_ids = []; // current list of holds
164     function fetchHolds(offset, count) {
165         var ids = hold_ids.slice(offset, offset + count);
166         return egHolds.fetch_holds(ids).then(null, null,
167             function(hold_data) { 
168                 return hold_data;
169             }
170         );
171     }
172
173     provider.get = function(offset, count) {
174         if ($scope.record_tab != 'holds') return $q.when();
175         var deferred = $q.defer();
176         hold_ids = []; // no caching ATM
177
178         // fetch the IDs
179         egCore.net.request(
180             'open-ils.circ',
181             'open-ils.circ.holds.retrieve_all_from_title',
182             egCore.auth.token(), $scope.record_id, 
183             {pickup_lib : egCore.org.descendants($scope.pickup_ou.id(), true)}
184         ).then(
185             function(hold_data) {
186                 angular.forEach(hold_data, function(list, type) {
187                     hold_ids = hold_ids.concat(list);
188                 });
189                 fetchHolds(offset, count).then(
190                     deferred.resolve, null, deferred.notify);
191             }
192         );
193
194         return deferred.promise;
195     }
196
197     $scope.detail_view = function(action, user_data, items) {
198         if (h = items[0]) {
199             $scope.detail_hold_id = h.hold.id();
200         }
201     }
202
203     $scope.list_view = function(items) {
204          $scope.detail_hold_id = null;
205     }
206
207     // refresh the list of record holds when the pickup lib is changed.
208     $scope.pickup_ou = egCore.org.get(egCore.auth.user().ws_ou());
209     $scope.pickup_ou_changed = function(org) {
210         $scope.pickup_ou = org;
211         provider.refresh();
212     }
213
214     $scope.print_holds = function() {
215         var holds = [];
216         angular.forEach($scope.hold_grid_controls.allItems(), function(item) {
217             holds.push({
218                 hold : egCore.idl.toHash(item.hold),
219                 patron_last : item.patron_last,
220                 patron_alias : item.patron_alias,
221                 patron_barcode : item.patron_barcode,
222                 copy : egCore.idl.toHash(item.copy),
223                 volume : egCore.idl.toHash(item.volume),
224                 title : item.mvr.title(),
225                 author : item.mvr.author()
226             });
227         });
228
229         egCore.print.print({
230             context : 'receipt', 
231             template : 'holds_for_bib', 
232             scope : {holds : holds}
233         });
234     }
235
236     $scope.mark_hold_transfer_dest = function() {
237         egCore.hatch.setLocalItem(
238             'eg.circ.hold.title_transfer_target', $scope.record_id);
239     }
240
241     // UI presents this option as "all holds"
242     $scope.transfer_holds_to_marked = function() {
243         var hold_ids = $scope.hold_grid_controls.allItems().map(
244             function(hold_data) {return hold_data.hold.id()});
245         egHolds.transfer_to_marked_title(hold_ids);
246     }
247
248     // ------------------------------------------------------------------
249     // Initialize the selected tab
250
251     function init_cat_url() {
252         // Set the initial catalog URL.  This only happens once.
253         // The URL is otherwise generated through user navigation.
254         if ($scope.catalog_url) return; 
255
256         var url = $location.absUrl().replace(/\/staff.*/, '/opac/advanced');
257
258         // A record ID in the path indicates a request for the record-
259         // specific page.
260         if ($routeParams.record_id) {
261             url = url.replace(/advanced/, '/record/' + $scope.record_id);
262         }
263
264         $scope.catalog_url = url;
265     }
266
267     $scope.set_record_tab = function(tab) {
268         $scope.record_tab = tab;
269
270         switch(tab) {
271
272             case 'catalog':
273                 init_cat_url();
274                 break;
275
276             case 'holds':
277                 $scope.detail_hold_record_id = $scope.record_id; 
278                 // refresh the holds grid
279                 provider.refresh();
280                 break;
281         }
282     }
283
284     var tab = $routeParams.record_tab || 'catalog';
285     $scope.set_record_tab(tab);
286
287 }])
288