]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/catalog/app.js
webstaff: integrate Manage Authorities UI
[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', 'egMarcMod'])
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.when('/cat/catalog/batchEdit', {
52         templateUrl: './cat/catalog/t_batchedit',
53         controller: 'BatchEditCtrl',
54         resolve : resolver
55     });
56
57     $routeProvider.when('/cat/catalog/batchEdit/:container_type/:container_id', {
58         templateUrl: './cat/catalog/t_batchedit',
59         controller: 'BatchEditCtrl',
60         resolve : resolver
61     });
62
63     $routeProvider.when('/cat/catalog/vandelay', {
64         templateUrl: './cat/catalog/t_vandelay',
65         controller: 'VandelayCtrl',
66         resolve : resolver
67     });
68
69     $routeProvider.when('/cat/catalog/verifyURLs', {
70         templateUrl: './cat/catalog/t_verifyurls',
71         controller: 'URLVerifyCtrl',
72         resolve : resolver
73     });
74
75     $routeProvider.when('/cat/catalog/manageAuthorities', {
76         templateUrl: './cat/catalog/t_manageauthorities',
77         controller: 'ManageAuthoritiesCtrl',
78         resolve : resolver
79     });
80
81     $routeProvider.otherwise({redirectTo : '/cat/catalog/index'});
82 })
83
84
85 /**
86  * */
87 .controller('CatalogRecordRetrieve',
88        ['$scope','$routeParams','$location','$q','egCore',
89 function($scope , $routeParams , $location , $q , egCore ) {
90
91     $scope.focusMe = true;
92
93     // jump to the patron checkout UI
94     function loadRecord(record_id) {
95         $location
96         .path('/cat/catalog/record/' + record_id);
97     }
98
99     $scope.submitId = function(args) {
100         $scope.recordNotFound = null;
101         if (!args.record_id) return;
102
103         // blur so next time it's set to true it will re-apply select()
104         $scope.selectMe = false;
105
106         return loadRecord(args.record_id);
107     }
108
109     $scope.submitTCN = function(args) {
110         $scope.recordNotFound = null;
111         $scope.moreRecordsFound = null;
112         if (!args.record_tcn) return;
113
114         // blur so next time it's set to true it will re-apply select()
115         $scope.selectMe = false;
116
117         // lookup TCN
118         egCore.net.request(
119             'open-ils.search',
120             'open-ils.search.biblio.tcn',
121             args.record_tcn)
122
123         .then(function(resp) { // get_barcodes
124
125             if (evt = egCore.evt.parse(resp)) {
126                 alert(evt); // FIXME
127                 return;
128             }
129
130             if (!resp.count) {
131                 $scope.recordNotFound = args.record_tcn;
132                 $scope.selectMe = true;
133                 return;
134             }
135
136             if (resp.count > 1) {
137                 $scope.moreRecordsFound = args.record_tcn;
138                 $scope.selectMe = true;
139                 return;
140             }
141
142             var record_id = resp.ids[0];
143             return loadRecord(record_id);
144         });
145     }
146
147 }])
148
149 .controller('CatalogCtrl',
150        ['$scope','$routeParams','$location','$q','egCore','egHolds',
151         'egGridDataProvider','egHoldGridActions',
152 function($scope , $routeParams , $location , $q , egCore , egHolds, 
153          egGridDataProvider , egHoldGridActions) {
154
155     // set record ID on page load if available...
156     $scope.record_id = $routeParams.record_id;
157
158     if ($routeParams.record_id) $scope.from_route = true;
159     else $scope.from_route = false;
160
161     // will hold a ref to the opac iframe
162     $scope.opac_iframe = null;
163     $scope.in_opac_call = false;
164     $scope.opac_call = function (opac_frame_function, force_opac_tab) {
165         if ($scope.opac_iframe) {
166             if (force_opac_tab) $scope.record_tab = 'catalog';
167             $scope.in_opac_call = true;
168             $scope.opac_iframe.contentWindow[opac_frame_function]();
169         }
170     }
171
172     $scope.stop_unload = false;
173     $scope.$watch('stop_unload',
174         function(newVal, oldVal) {
175             if (newVal && newVal != oldVal && $scope.opac_iframe) {
176                 $($scope.opac_iframe.contentWindow).on('beforeunload', function(){
177                     return 'There is unsaved data in this record.'
178                 });
179             } else {
180                 $($scope.opac_iframe.contentWindow).off('beforeunload');
181             }
182         }
183     );
184
185     // Set the "last bib" cookie, if we have that
186     if ($scope.record_id)
187         egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
188
189     // also set it when the iframe changes to a new record
190     $scope.handle_page = function(url) {
191
192         if (!url || url == 'about:blank') {
193             // nothing loaded.  If we already have a record ID, leave it.
194             return;
195         }
196
197         var match = url.match(/\/+opac\/+record\/+(\d+)/);
198         if (match) {
199             $scope.record_id = match[1];
200             egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
201         } else {
202             delete $scope.record_id;
203         }
204
205         // child scope is executing this function, so our digest doesn't fire ... thus,
206         $scope.$apply();
207
208         if (!$scope.in_opac_call) {
209             if ($scope.record_id) {
210                 var default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
211                 tab = $routeParams.record_tab || default_tab || 'catalog';
212             } else {
213                 tab = $routeParams.record_tab || 'catalog';
214             }
215             $scope.set_record_tab(tab);
216         } else {
217             $scope.in_opac_call = false;
218         }
219     }
220
221     // xulG catalog handlers
222     $scope.handlers = { }
223
224     // ------------------------------------------------------------------
225     // Holds 
226     var provider = egGridDataProvider.instance({});
227     $scope.hold_grid_data_provider = provider;
228     $scope.grid_actions = egHoldGridActions;
229     $scope.grid_actions.refresh = function () { provider.refresh() };
230     $scope.hold_grid_controls = {};
231
232     var hold_ids = []; // current list of holds
233     function fetchHolds(offset, count) {
234         var ids = hold_ids.slice(offset, offset + count);
235         return egHolds.fetch_holds(ids).then(null, null,
236             function(hold_data) { 
237                 return hold_data;
238             }
239         );
240     }
241
242     provider.get = function(offset, count) {
243         if ($scope.record_tab != 'holds') return $q.when();
244         var deferred = $q.defer();
245         hold_ids = []; // no caching ATM
246
247         // fetch the IDs
248         egCore.net.request(
249             'open-ils.circ',
250             'open-ils.circ.holds.retrieve_all_from_title',
251             egCore.auth.token(), $scope.record_id, 
252             {pickup_lib : egCore.org.descendants($scope.pickup_ou.id(), true)}
253         ).then(
254             function(hold_data) {
255                 angular.forEach(hold_data, function(list, type) {
256                     hold_ids = hold_ids.concat(list);
257                 });
258                 fetchHolds(offset, count).then(
259                     deferred.resolve, null, deferred.notify);
260             }
261         );
262
263         return deferred.promise;
264     }
265
266     $scope.detail_view = function(action, user_data, items) {
267         if (h = items[0]) {
268             $scope.detail_hold_id = h.hold.id();
269         }
270     }
271
272     $scope.list_view = function(items) {
273          $scope.detail_hold_id = null;
274     }
275
276     // refresh the list of record holds when the pickup lib is changed.
277     $scope.pickup_ou = egCore.org.get(egCore.auth.user().ws_ou());
278     $scope.pickup_ou_changed = function(org) {
279         $scope.pickup_ou = org;
280         provider.refresh();
281     }
282
283     $scope.print_holds = function() {
284         var holds = [];
285         angular.forEach($scope.hold_grid_controls.allItems(), function(item) {
286             holds.push({
287                 hold : egCore.idl.toHash(item.hold),
288                 patron_last : item.patron_last,
289                 patron_alias : item.patron_alias,
290                 patron_barcode : item.patron_barcode,
291                 copy : egCore.idl.toHash(item.copy),
292                 volume : egCore.idl.toHash(item.volume),
293                 title : item.mvr.title(),
294                 author : item.mvr.author()
295             });
296         });
297
298         egCore.print.print({
299             context : 'receipt', 
300             template : 'holds_for_bib', 
301             scope : {holds : holds}
302         });
303     }
304
305     $scope.mark_hold_transfer_dest = function() {
306         egCore.hatch.setLocalItem(
307             'eg.circ.hold.title_transfer_target', $scope.record_id);
308     }
309
310     // UI presents this option as "all holds"
311     $scope.transfer_holds_to_marked = function() {
312         var hold_ids = $scope.hold_grid_controls.allItems().map(
313             function(hold_data) {return hold_data.hold.id()});
314         egHolds.transfer_to_marked_title(hold_ids);
315     }
316
317     // ------------------------------------------------------------------
318     // Initialize the selected tab
319
320     function init_cat_url() {
321         // Set the initial catalog URL.  This only happens once.
322         // The URL is otherwise generated through user navigation.
323         if ($scope.catalog_url) return; 
324
325         var url = $location.absUrl().replace(/\/staff.*/, '/opac/advanced');
326
327         // A record ID in the path indicates a request for the record-
328         // specific page.
329         if ($routeParams.record_id) {
330             url = url.replace(/advanced/, '/record/' + $scope.record_id);
331         }
332
333         $scope.catalog_url = url;
334     }
335
336     $scope.set_record_tab = function(tab) {
337         $scope.record_tab = tab;
338
339         switch(tab) {
340
341             case 'catalog':
342                 init_cat_url();
343                 break;
344
345             case 'holds':
346                 $scope.detail_hold_record_id = $scope.record_id; 
347                 // refresh the holds grid
348                 provider.refresh();
349                 break;
350         }
351     }
352
353     $scope.set_default_record_tab = function() {
354         egCore.hatch.setLocalItem(
355             'eg.cat.default_record_tab', $scope.record_tab);
356     }
357
358     var tab;
359     if ($scope.record_id) {
360         var default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
361         tab = $routeParams.record_tab || default_tab || 'catalog';
362     } else {
363         tab = $routeParams.record_tab || 'catalog';
364     }
365     $scope.set_record_tab(tab);
366
367 }])
368
369 .controller('URLVerifyCtrl',
370        ['$scope','$location',
371 function($scope , $location) {
372     $scope.verifyurls_url = $location.absUrl().replace(/\/staff.*/, '/url_verify/sessions');
373 }])
374
375 .controller('VandelayCtrl',
376        ['$scope','$location',
377 function($scope , $location) {
378     $scope.vandelay_url = $location.absUrl().replace(/\/staff.*/, '/vandelay/vandelay');
379 }])
380
381 .controller('ManageAuthoritiesCtrl',
382        ['$scope','$location',
383 function($scope , $location) {
384     $scope.manageauthorities_url = $location.absUrl().replace(/\/staff.*/, '/cat/authority/list');
385 }])
386
387 .controller('BatchEditCtrl',
388        ['$scope','$location','$routeParams',
389 function($scope , $location , $routeParams) {
390     $scope.batchedit_url = $location.absUrl().replace(/\/eg.*/, '/opac/extras/merge_template');
391     if ($routeParams.container_type) {
392         switch ($routeParams.container_type) {
393             case 'bucket':
394                 $scope.batchedit_url += '?recordSource=b&containerid=' + $routeParams.container_id;
395                 break;
396             case 'record':
397                 $scope.batchedit_url += '?recordSource=r&recid=' + $routeParams.container_id;
398                 break;
399         };
400     }
401 }])
402
403