]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
LP 1779467: Fix SyntaxError: missing ) after argument list
[working/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 function no_hold_submit(event) {
30     if (event.which == 13) {
31         staff_hold_usr_barcode_changed();
32         return false;
33     }
34     return true;
35 }
36 function staff_hold_usr_barcode_changed(isload) {
37
38     if (!document.getElementById('place_hold_submit')) {
39         // in some cases, the submit button is not present.
40         // exit early to avoid needless JS errors
41         return;
42     }
43
44     if (!window.xulG) return;
45  
46     var adv_link = document.getElementById('advanced_hold_link');
47     if (adv_link) {
48         adv_link.setAttribute('href', adv_link.getAttribute('href').replace(/&?is_requestor=[01]/,''));
49         var is_requestor = document.getElementById('hold_usr_is_requestor').checked ? 1 : 0;
50         adv_link.setAttribute('href', adv_link.getAttribute('href') + '&is_requestor=' + is_requestor.toString());
51     }
52
53     var cur_hold_barcode = undefined;
54     var barcode = isload;
55     if(!barcode || barcode === true) barcode = document.getElementById('staff_barcode').value;
56     var only_settings = true;
57     if(!document.getElementById('hold_usr_is_requestor').checked) {
58         if(!isload) {
59             barcode = document.getElementById('hold_usr_input').value;
60             only_settings = false;
61         }
62         if(barcode && barcode != '' && !document.getElementById('hold_usr_is_requestor_not').checked)
63             document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
64     }
65     if(barcode == undefined || barcode == '') {
66         document.getElementById('patron_name').innerHTML = '';
67         // No submitting on empty barcode, but empty barcode doesn't really count as "not found" either
68         document.getElementById('place_hold_submit').disabled = true;
69         document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
70         cur_hold_barcode = null;
71         return;
72     }
73     if(barcode == cur_hold_barcode)
74         return;
75     // No submitting until we think the barcode is valid
76     document.getElementById('place_hold_submit').disabled = true;
77
78     if (window.IAMBROWSER) {
79         // Browser client operates asynchronously
80         if (!xulG.get_barcode_and_settings_async) return;
81         xulG.get_barcode_and_settings_async(barcode, only_settings)
82         .then(
83             function(load_info) { // load succeeded
84                 staff_hold_usr_barcode_changed2(
85                     isload, only_settings, barcode, cur_hold_barcode, load_info);
86             },
87             function() { 
88                 // load failed (rejected).  Call staff_hold_usr_barcode_changed2
89                 // anyway, since it handles clearing the form
90                 staff_hold_usr_barcode_changed2(
91                     isload, only_settings, barcode, cur_hold_barcode, false);
92             }
93         )
94     } else {
95         // XUL version is synchronous
96         if (!xulG.get_barcode_and_settings) return;
97         var load_info = xulG.get_barcode_and_settings(window, barcode, only_settings);
98         staff_hold_usr_barcode_changed2(isload, only_settings, barcode, cur_hold_barcode, load_info);
99     }
100 }
101
102 function staff_hold_usr_barcode_changed2(
103     isload, only_settings, barcode, cur_hold_barcode, load_info) {
104
105     if(load_info == false || load_info == undefined) {
106         document.getElementById('patron_name').innerHTML = '';
107         document.getElementById("patron_usr_barcode_not_found").style.display = '';
108         cur_hold_barcode = null;
109         return;
110     }
111     cur_hold_barcode = load_info.barcode;
112     if (!only_settings || (isload && isload !== true)) {
113         // Safe at this point as we already set cur_hold_barcode
114         document.getElementById('hold_usr_input').value = load_info.barcode;
115
116         // Patron preferred pickup loc always overrides the default pickup lib
117         document.getElementById('pickup_lib').value = 
118             load_info.settings['opac.default_pickup_location'] ?
119             load_info.settings['opac.default_pickup_location'] : load_info.pickup_lib;
120     }
121
122     if (!load_info.settings['opac.default_sms_notify']){
123         load_info.settings['opac.default_sms_notify'] = '';
124     }
125
126     if (!load_info.settings['opac.default_sms_carrier']){
127         load_info.settings['opac.default_sms_carrier'] = '';
128     }
129
130     if (load_info.settings['opac.hold_notify'] || load_info.settings['opac.hold_notify'] === '') {
131         var email = load_info.settings['opac.hold_notify'].indexOf('email') > -1;
132         var phone = load_info.settings['opac.hold_notify'].indexOf('phone') > -1;
133         var sms = load_info.settings['opac.hold_notify'].indexOf('sms') > -1;
134         var update_elements = document.getElementsByName('email_notify');
135         for(var i in update_elements) update_elements[i].checked = (email ? 'checked' : '');
136         update_elements = document.getElementsByName('phone_notify_checkbox');
137         for(var i in update_elements) update_elements[i].checked = (phone ? 'checked' : '');
138         update_elements = document.getElementsByName('sms_notify_checkbox');
139         for(var i in update_elements) update_elements[i].checked = (sms ? 'checked' : '');
140     }
141
142     update_elements = document.getElementsByName('phone_notify');
143     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_phone']
144         ? load_info.settings['opac.default_phone'] : '';
145     update_elements = document.getElementsByName('sms_notify');
146     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_notify'];
147     update_elements = document.getElementsByName('sms_carrier');
148     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_carrier'];
149     update_elements = document.getElementsByName('email_notify');
150     for(var i in update_elements) {
151         update_elements[i].disabled = (load_info.user_email ? false : true);
152         if(update_elements[i].disabled) update_elements[i].checked = false;
153     }
154     update_elements = document.getElementsByName('email_address');
155     for(var i in update_elements) update_elements[i].textContent = load_info.user_email;
156     if(!document.getElementById('hold_usr_is_requestor').checked && document.getElementById('hold_usr_input').value) {
157         document.getElementById('patron_name').innerHTML = load_info.patron_name;
158         document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
159     }
160     // Ok, now we can allow submitting again, unless this is a "true" load, in which case we likely have a blank barcode box active
161
162     // update the advanced hold options link to propagate the patron
163     // barcode if clicked.  This is needed when the patron barcode
164     // is manually entered (i.e. the staff client does not provide one).
165     var adv_link = document.getElementById('advanced_hold_link');
166     if (adv_link) { // not present on MR hold pages
167         var href = adv_link.getAttribute('href').replace(
168             /;usr_barcode=[^;\&]+|$/, 
169             ';usr_barcode=' + encodeURIComponent(cur_hold_barcode));
170         adv_link.setAttribute('href', href);
171     }
172
173     if (isload !== true)
174         document.getElementById('place_hold_submit').disabled = false;
175 }
176 window.onload = function() {
177     // record details page events
178
179     setTimeout(function() {
180
181         if (location.href.match(/is_requestor=[01]/)) {
182             var loc = location.href;
183             var is_req_match = new RegExp("is_requestor=[01]");
184             var is_req = is_req_match.exec(loc).toString();
185             is_req = is_req.replace(/is_requestor=/, '');
186             if (is_req == "1") {
187                 document.getElementById('hold_usr_is_requestor').checked = 'checked';
188                 document.getElementById('hold_usr_input').disabled = true;
189             } else {
190                 document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
191                 document.getElementById('hold_usr_input').disabled = false;
192             }
193         }
194
195         var rec = location.href.match(/\/opac\/record\/(\d+)/);
196         if(rec && rec[1]) { 
197             runEvt('rdetail', 'recordRetrieved', rec[1]); 
198             runEvt('rdetail', 'MFHDDrawn');
199         }
200         if(location.href.match(/place_hold/)) {
201             // patron barcode may come from XUL or a CGI param
202             var patron_barcode = xulG.patron_barcode ||
203                 document.getElementById('hold_usr_input').value;
204             if(patron_barcode) {
205                 staff_hold_usr_barcode_changed(patron_barcode);
206             } else {
207                 staff_hold_usr_barcode_changed(true);
208             }
209         }
210     });
211 }
212
213 function rdetail_next_prev_actions(index, count, prev, next, start, end, results) {
214     /*  we mostly get the relative URL from the template:  recid?query_args...
215         replace the recid and args on location.href to get the new URL  */
216     function fullurl(url) {
217         if (url.match(/eg\/opac\/results/)) {
218             return location.href.replace(/\/eg\/opac\/.+$/, url);
219         } else {
220             return location.href.replace(/\/\d+\??.*/, '/' + url);
221         }
222     }
223
224     if (index > 0) {
225         if(prev) 
226             window.rdetailPrev = function() { location.href = fullurl(prev); }
227         if(start) 
228             window.rdetailStart = function() { location.href = fullurl(start); }
229     }
230
231     if (index < count - 1) {
232         if(next) 
233             window.rdetailNext = function() { location.href = fullurl(next); }
234         if(end) 
235             window.rdetailEnd = function() { location.href = fullurl(end); }
236     }
237
238     window.rdetailBackToResults = function() { location.href = fullurl(results); };
239
240     ol = window.onload;
241     window.onload = function() {
242         if(ol) ol(); 
243         setTimeout(function() {
244             runEvt('rdetail', 'nextPrevDrawn', Number(index), Number(count)); 
245         });
246     };
247 }