]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/copyloc.js
LP1778972 A slew of updates
[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                     render_adv_copy_locations_new(list);
56                 } else {
57                     dojo.addClass('adv_chunk_copy_location', 'hidden');
58                 }
59             } else {
60                 dojo.addClass('adv_chunk_copy_location', 'hidden');
61             }
62         }                                                              
63     }).send(); 
64 }
65
66 function render_adv_copy_locations_new(locations) {
67     var sel = dojo.byId('adv_copy_location_selector_new');
68     if(sel)
69     {
70     var cgi = new openils.CGI();
71
72     // collect any location values from the URL to re-populate the list
73     var url_selected = cgi.param('fi:locations');
74     if (url_selected) {
75         if (!dojo.isArray(url_selected)) 
76             url_selected = [url_selected];
77     }
78
79     dojo.removeClass('adv_chunk_copy_location', 'hidden');
80     
81     // sort by name
82     locations = locations.sort(
83         function(a, b) {return a.name < b.name ? -1 : 1}
84     );
85
86     
87     var ulist = dojo.create('ul', {class: "adv_filters"});
88     // append the new list of locations
89     dojo.forEach(locations, function(loc) {
90         var attrs = {value : loc.id, name : "fi:locations", type: "checkbox", class: "form-check-input"};
91         if (url_selected && url_selected.indexOf(''+loc.id) > -1) {
92             attrs.selected = true;
93         }
94         
95         
96         ulist.appendChild(dojo.create('li')).appendChild(dojo.create('div', {class: "form-check"})).appendChild(dojo.create('label', {innerHTML : loc.name, class: "form-check-label"})).prepend(dojo.create('input', attrs));
97     });
98     sel.appendChild(dojo.create("div", {class: "card-body"})).appendChild(ulist);}
99 }
100
101    
102
103 function render_adv_copy_locations(locations) {
104     var sel = dojo.byId('adv_copy_location_selector');
105     if(sel){
106
107     
108     var cgi = new openils.CGI();
109
110     // collect any location values from the URL to re-populate the list
111     var url_selected = cgi.param('fi:locations');
112     if (url_selected) {
113         if (!dojo.isArray(url_selected)) 
114             url_selected = [url_selected];
115     }
116
117     dojo.removeClass('adv_chunk_copy_location', 'hidden');
118     
119     // sort by name
120     locations = locations.sort(
121         function(a, b) {return a.name < b.name ? -1 : 1}
122     );
123
124     // remove the previous list of locations
125     dojo.empty(sel);
126
127     // append the new list of locations
128     dojo.forEach(locations, function(loc) {
129         var attrs = {value : loc.id, innerHTML : loc.name};
130         if (url_selected && url_selected.indexOf(''+loc.id) > -1) {
131             attrs.selected = true;
132         }
133         sel.appendChild(dojo.create('option', attrs));
134     });
135 }
136 }
137
138 // load the locations on page load
139 dojo.addOnLoad(function() {
140     apply_adv_copy_locations();
141     dojo.connect(dojo.byId('adv_org_selector'), 
142         'onchange', apply_adv_copy_locations);
143 });
144