]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/copyloc.js
Docs: incorporating offline circ docs
[Evergreen.git] / Open-ILS / web / js / ui / default / opac / copyloc.js
1 dojo.require("DojoSRF");
2 dojo.require("openils.CGI");
3
4 // called on initial page load and when the advance search org unit
5 // selector is changed.
6 function apply_adv_copy_locations() {
7
8     // patron selected org
9     var sel = dojo.byId('adv_org_selector');
10     var selected_id = sel.options[sel.selectedIndex].getAttribute('value');
11     var org_unit = aou_hash[selected_id];
12
13     var display_orgs = [];
14
15     // we want to display copy locations at the selected org,
16     // all parent orgs, and all child orgs.
17
18     function collect_child_orgs(org_id) {
19         display_orgs.push(org_id);
20         for (var id in aou_hash) { // for key in
21             if (aou_hash[id].parent_ou == org_id) 
22                 collect_child_orgs(id);
23         }
24     }
25
26     function collect_parent_orgs(org_id) {
27         if (!org_id) return;
28         display_orgs.push(org_id);
29         collect_parent_orgs(aou_hash[org_id].parent_ou);
30     }
31
32     display_orgs.push(org_unit.id);
33     collect_parent_orgs(org_unit.parent_ou);
34     fetch_adv_copy_locations(display_orgs);
35 }
36
37 function fetch_adv_copy_locations(org_ids) {
38
39     var params = [{
40         cache : 1, 
41         fields : ['name', 'id', 'owning_lib'],
42         query : {owning_lib : org_ids, opac_visible : 't', deleted : 'f'}
43     }];
44
45     new OpenSRF.ClientSession('open-ils.fielder').request({
46         method: 'open-ils.fielder.acpl.atomic',
47         params: params,
48         async: true,
49         oncomplete: function(r) {
50             var resp = r.recv();
51             if (resp) {
52                 var list = resp.content();
53                 if (list && list.length) {
54                     render_adv_copy_locations(list);
55                 } else {
56                     dojo.addClass('adv_chunk_copy_location', 'hidden');
57                 }
58             } else {
59                 dojo.addClass('adv_chunk_copy_location', 'hidden');
60             }
61         }                                                              
62     }).send(); 
63 }
64
65 function render_adv_copy_locations(locations) {
66     var sel = dojo.byId('adv_copy_location_selector');
67     var cgi = new openils.CGI();
68
69     // collect any location values from the URL to re-populate the list
70     var url_selected = cgi.param('fi:locations');
71     if (url_selected) {
72         if (!dojo.isArray(url_selected)) 
73             url_selected = [url_selected];
74     }
75
76     dojo.removeClass('adv_chunk_copy_location', 'hidden');
77     
78     // sort by name
79     locations = locations.sort(
80         function(a, b) {return a.name < b.name ? -1 : 1}
81     );
82
83     // remove the previous list of locations
84     dojo.empty(sel);
85
86     // append the new list of locations
87     dojo.forEach(locations, function(loc) {
88         var attrs = {value : loc.id, innerHTML : loc.name};
89         if (url_selected && url_selected.indexOf(''+loc.id) > -1) {
90             attrs.selected = true;
91         }
92         sel.appendChild(dojo.create('option', attrs));
93     });
94 }
95
96 // load the locations on page load
97 dojo.addOnLoad(function() {
98     apply_adv_copy_locations();
99     dojo.connect(dojo.byId('adv_org_selector'), 
100         'onchange', apply_adv_copy_locations);
101 });
102