]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
LP#1759382 Setting: staff placed holds default to workstation
[Evergreen.git] / Open-ILS / web / js / ui / default / opac / staff.js
1 /* staff client integration functions */
2
3 // Browser staff client runs the TPAC within an iframe, whose onload
4 // is not called until after the page onload is called. window.onload
5 // actions are wrapped in timeouts (below) to ensure the wrapping page
6 // has a chance to insert the necessary xulG, etc. functions into the
7 // window.
8
9 function debug(msg){dump(msg+'\n')}
10 var eventCache={};
11 function attachEvt(scope, name, action) {
12     if(!eventCache[scope]) eventCache[scope] = {};
13     if(!eventCache[scope][name]) eventCache[scope][name] = [];
14     eventCache[scope][name].push(action);
15 }
16 function runEvt(scope, name) {
17     debug('running event '+scope+':'+name);
18     var args = Array.prototype.slice.call(arguments).slice(2);
19     if(eventCache[scope]) {
20         var evt = eventCache[scope][name];
21         for(var i in evt) {evt[i].apply(evt[i], args);}
22     } 
23 }
24 function staff_hold_usr_input_disabler(input) {
25     document.getElementById("hold_usr_input").disabled =
26         Boolean(Number(input.value));
27     staff_hold_usr_barcode_changed();
28 }
29
30 var debounce_barcode_change = function() {
31     var timeout;
32
33     return function(event) {
34         clearTimeout(timeout);
35         document.getElementById('patron_usr_barcode_not_found').style.display = 'none';
36
37         if (event.which == '13') {
38             staff_hold_usr_barcode_changed();
39             return false;
40         }
41
42         var duration = event.type == 'paste' ? 0 : 500;
43         timeout = setTimeout(staff_hold_usr_barcode_changed, duration);
44
45         return true;
46     };
47 }();
48
49 function no_hold_submit(event) {
50     if (event.which == 13) {
51         staff_hold_usr_barcode_changed();
52         return false;
53     }
54     return true;
55 }
56
57 function toggleMROptions(on) {
58     var anchor = document.getElementById("advanced_hold_link");
59     // Check for not equal to block so it works on first click.
60     if (on) {
61         anchor.style.display = "inline";
62     } else {
63         anchor.style.display = "none";
64     }
65 }
66
67 function maybeDisable (thing, value) {
68     var el = document.getElementById(thing);
69     if (el) el.disabled = value;
70 }
71
72 function toggleOnSubscription(isSub) {
73     toggleMROptions(!isSub);
74     maybeDisable("override_blocks_subscription",!isSub);
75     maybeDisable("pickup_lib",isSub);
76     maybeDisable("email_notify",isSub);
77     maybeDisable("phone_notify_checkbox",isSub);
78     maybeDisable("phone_notify",isSub);
79     maybeDisable("sms_notify_checkbox",isSub);
80     maybeDisable("sms_carrier",isSub);
81     maybeDisable("sms_notify",isSub);
82 }
83
84 function staff_hold_usr_barcode_changed(isload) {
85
86     if (!document.getElementById('place_hold_submit')) {
87         // in some cases, the submit button is not present.
88         // exit early to avoid needless JS errors
89         return;
90     }
91
92     if (!window.xulG) return;
93  
94     var adv_link = document.getElementById('advanced_hold_link');
95     if (adv_link) {
96         adv_link.setAttribute('href', adv_link.getAttribute('href').replace(/&?is_requestor=[012]/,''));
97         var is_requestor = 0;
98         if (document.getElementById('hold_usr_is_requestor').checked) {
99             is_requestor = 1;
100         } else if (document.getElementById('hold_usr_is_subscription').checked) {
101             is_requestor = 2;
102         }
103         adv_link.setAttribute('href', adv_link.getAttribute('href') + '&is_requestor=' + is_requestor.toString());
104     }
105
106     var cur_hold_barcode = undefined;
107     var barcode = isload;
108     if(!barcode || barcode === true) barcode = document.getElementById('staff_barcode').value;
109     var only_settings = true;
110     var sub_el = document.getElementById('hold_usr_is_subscription');
111
112     toggleOnSubscription(false);
113     if(sub_el && sub_el.checked) {
114         toggleOnSubscription(true);
115         if(!isload) {
116             only_settings = false;
117         }
118     } else if(!document.getElementById('hold_usr_is_requestor').checked) {
119         if(!isload) {
120             barcode = document.getElementById('hold_usr_input').value;
121             only_settings = false;
122         }
123         if(barcode && barcode != '' && !document.getElementById('hold_usr_is_requestor_not').checked)
124             document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
125     }
126
127     if((barcode == undefined || barcode == '') && (!sub_el || !sub_el.checked)) {
128         document.getElementById('patron_name').innerHTML = '';
129         // No submitting on empty barcode, but empty barcode doesn't really count as "not found" either
130         document.getElementById('place_hold_submit').disabled = true;
131         document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
132         cur_hold_barcode = null;
133         return;
134     }
135     if(barcode == cur_hold_barcode)
136         return;
137     // No submitting until we think the barcode is valid
138     document.getElementById('place_hold_submit').disabled = true;
139
140     if (window.IAMBROWSER) {
141         // Browser client operates asynchronously
142         if (!xulG.get_barcode_and_settings_async) return;
143         xulG.get_barcode_and_settings_async(barcode, only_settings)
144         .then(
145             function(load_info) { // load succeeded
146                 staff_hold_usr_barcode_changed2(
147                     isload, only_settings, barcode, cur_hold_barcode, load_info);
148             },
149             function() { 
150                 // load failed (rejected).  Call staff_hold_usr_barcode_changed2
151                 // anyway, since it handles clearing the form
152                 staff_hold_usr_barcode_changed2(
153                     isload, only_settings, barcode, cur_hold_barcode, false);
154             }
155         )
156     } else {
157         // XUL version is synchronous
158         if (!xulG.get_barcode_and_settings) return;
159         var load_info = xulG.get_barcode_and_settings(window, barcode, only_settings);
160         staff_hold_usr_barcode_changed2(isload, only_settings, barcode, cur_hold_barcode, load_info);
161     }
162 }
163
164 function staff_hold_usr_barcode_changed2(
165     isload, only_settings, barcode, cur_hold_barcode, load_info) {
166
167     var sub_el = document.getElementById('hold_usr_is_subscription');
168
169     if(load_info == false || load_info == undefined) {
170         document.getElementById('patron_name').innerHTML = '';
171         document.getElementById("patron_usr_barcode_not_found").style.display = '';
172         cur_hold_barcode = null;
173         return;
174     }
175     cur_hold_barcode = load_info.barcode;
176     if ((!only_settings || (isload && isload !== true)) && (sub_el && !sub_el.checked)) {
177         // Safe at this point as we already set cur_hold_barcode
178         document.getElementById('hold_usr_input').value = load_info.barcode;
179
180         // Patron preferred pickup loc overrides the default pickup lib 
181         // unless the default to workstation setting is enabled
182         document.getElementById('pickup_lib').value = 
183             !load_info.settings['circ.staff_placed_holds_default_to_ws_ou'] &&
184             load_info.settings['opac.default_pickup_location'] ?
185             load_info.settings['opac.default_pickup_location'] : load_info.pickup_lib;
186     }
187
188     if (!load_info.settings['opac.default_sms_notify']){
189         load_info.settings['opac.default_sms_notify'] = '';
190     }
191
192     if (!load_info.settings['opac.default_sms_carrier']){
193         load_info.settings['opac.default_sms_carrier'] = '';
194     }
195
196     if (!sub_el || !sub_el.checked) {
197         if (load_info.settings['opac.hold_notify'] || load_info.settings['opac.hold_notify'] === '') {
198             var email = load_info.settings['opac.hold_notify'].indexOf('email') > -1;
199             var phone = load_info.settings['opac.hold_notify'].indexOf('phone') > -1;
200             var sms = load_info.settings['opac.hold_notify'].indexOf('sms') > -1;
201             var update_elements = document.getElementsByName('email_notify');
202             for(var i in update_elements) update_elements[i].checked = (email ? 'checked' : '');
203             update_elements = document.getElementsByName('phone_notify_checkbox');
204             for(var i in update_elements) update_elements[i].checked = (phone ? 'checked' : '');
205             update_elements = document.getElementsByName('sms_notify_checkbox');
206             for(var i in update_elements) update_elements[i].checked = (sms ? 'checked' : '');
207         }
208     
209         update_elements = document.getElementsByName('phone_notify');
210         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_phone']
211             ? load_info.settings['opac.default_phone'] : '';
212         update_elements = document.getElementsByName('sms_notify');
213         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_notify'];
214         update_elements = document.getElementsByName('sms_carrier');
215         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_carrier'];
216         update_elements = document.getElementsByName('email_notify');
217         for(var i in update_elements) {
218             update_elements[i].disabled = (load_info.user_email ? false : true);
219             if(update_elements[i].disabled) update_elements[i].checked = false;
220         }
221         update_elements = document.getElementsByName('email_address');
222         for(var i in update_elements) update_elements[i].textContent = load_info.user_email;
223         if(!document.getElementById('hold_usr_is_requestor').checked && document.getElementById('hold_usr_input').value) {
224             document.getElementById('patron_name').innerHTML = load_info.patron_name;
225             document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
226         }
227     }
228     // Ok, now we can allow submitting again, unless this is a "true" load, in which case we likely have a blank barcode box active
229
230     // update the advanced hold options link to propagate the patron
231     // barcode if clicked.  This is needed when the patron barcode
232     // is manually entered (i.e. the staff client does not provide one).
233     var adv_link = document.getElementById('advanced_hold_link');
234     if (adv_link) { // not present on MR hold pages
235         var href = adv_link.getAttribute('href').replace(
236             /;usr_barcode=[^;\&]+|$/, 
237             ';usr_barcode=' + encodeURIComponent(cur_hold_barcode));
238         adv_link.setAttribute('href', href);
239     }
240
241     if (isload !== true)
242         document.getElementById('place_hold_submit').disabled = false;
243 }
244 window.onload = function() {
245     // record details page events
246
247     setTimeout(function() {
248
249         if (location.href.match(/is_requestor=[012]/)) {
250             var loc = location.href;
251             var is_req_match = new RegExp("is_requestor=[012]");
252             var is_req = is_req_match.exec(loc).toString();
253             is_req = is_req.replace(/is_requestor=/, '');
254             if (is_req == "2") {
255                 document.getElementById('hold_usr_is_subscription').checked = 'checked';
256                 document.getElementById('hold_usr_input').disabled = true;
257             } else if (is_req == "1") {
258                 document.getElementById('hold_usr_is_requestor').checked = 'checked';
259                 document.getElementById('hold_usr_input').disabled = true;
260             } else {
261                 document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
262                 document.getElementById('hold_usr_input').disabled = false;
263             }
264         }
265
266         var rec = location.href.match(/\/opac\/record\/(\d+)/);
267         if(rec && rec[1]) { 
268             runEvt('rdetail', 'recordRetrieved', rec[1]); 
269             runEvt('rdetail', 'MFHDDrawn');
270         }
271         if(location.href.match(/place_hold/)) {
272             // patron barcode may come from XUL or a CGI param
273             var patron_barcode = xulG.patron_barcode ||
274                 document.getElementById('hold_usr_input').value;
275             if(patron_barcode) {
276                 staff_hold_usr_barcode_changed(patron_barcode);
277             } else {
278                 staff_hold_usr_barcode_changed(true);
279             }
280         }
281     });
282 }
283
284 function rdetail_next_prev_actions(index, count, prev, next, start, end, results) {
285     /*  we mostly get the relative URL from the template:  recid?query_args...
286         replace the recid and args on location.href to get the new URL  */
287     function fullurl(url) {
288         if (url.match(/eg\/opac\/results/)) {
289             return location.href.replace(/\/eg\/opac\/.+$/, url);
290         } else {
291             return location.href.replace(/\/\d+\??.*/, '/' + url);
292         }
293     }
294
295     if (index > 0) {
296         if(prev) 
297             window.rdetailPrev = function() { location.href = fullurl(prev); }
298         if(start) 
299             window.rdetailStart = function() { location.href = fullurl(start); }
300     }
301
302     if (index < count - 1) {
303         if(next) 
304             window.rdetailNext = function() { location.href = fullurl(next); }
305         if(end) 
306             window.rdetailEnd = function() { location.href = fullurl(end); }
307     }
308
309     window.rdetailBackToResults = function() { location.href = fullurl(results); };
310
311     ol = window.onload;
312     window.onload = function() {
313         if(ol) ol(); 
314         setTimeout(function() {
315             runEvt('rdetail', 'nextPrevDrawn', Number(index), Number(count)); 
316         });
317     };
318 }