]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
LP#1583729 Item status screen column options do not include age protection
[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)) document.getElementById('hold_usr_input').value = load_info.barcode; // Safe at this point as we already set cur_hold_barcode
113     if(load_info.settings['opac.default_pickup_location'])
114         document.getElementById('pickup_lib').value = load_info.settings['opac.default_pickup_location'];
115     if(!load_info.settings['opac.default_phone']) load_info.settings['opac.default_phone'] = '';
116     if(!load_info.settings['opac.default_sms_notify']) load_info.settings['opac.default_sms_notify'] = '';
117     if(!load_info.settings['opac.default_sms_carrier']) load_info.settings['opac.default_sms_carrier'] = '';
118     if(load_info.settings['opac.hold_notify'] || load_info.settings['opac.hold_notify'] === '') {
119         var email = load_info.settings['opac.hold_notify'].indexOf('email') > -1;
120         var phone = load_info.settings['opac.hold_notify'].indexOf('phone') > -1;
121         var sms = load_info.settings['opac.hold_notify'].indexOf('sms') > -1;
122         var update_elements = document.getElementsByName('email_notify');
123         for(var i in update_elements) update_elements[i].checked = (email ? 'checked' : '');
124         update_elements = document.getElementsByName('phone_notify_checkbox');
125         for(var i in update_elements) update_elements[i].checked = (phone ? 'checked' : '');
126         update_elements = document.getElementsByName('sms_notify_checkbox');
127         for(var i in update_elements) update_elements[i].checked = (sms ? 'checked' : '');
128     }
129     update_elements = document.getElementsByName('phone_notify');
130     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_phone'];
131     update_elements = document.getElementsByName('sms_notify');
132     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_notify'];
133     update_elements = document.getElementsByName('sms_carrier');
134     for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_carrier'];
135     update_elements = document.getElementsByName('email_notify');
136     for(var i in update_elements) {
137         update_elements[i].disabled = (load_info.user_email ? false : true);
138         if(update_elements[i].disabled) update_elements[i].checked = false;
139     }
140     update_elements = document.getElementsByName('email_address');
141     for(var i in update_elements) update_elements[i].textContent = load_info.user_email;
142     if(!document.getElementById('hold_usr_is_requestor').checked && document.getElementById('hold_usr_input').value) {
143         document.getElementById('patron_name').innerHTML = load_info.patron_name;
144         document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
145     }
146     // Ok, now we can allow submitting again, unless this is a "true" load, in which case we likely have a blank barcode box active
147
148     // update the advanced hold options link to propagate the patron
149     // barcode if clicked.  This is needed when the patron barcode
150     // is manually entered (i.e. the staff client does not provide one).
151     var adv_link = document.getElementById('advanced_hold_link');
152     if (adv_link) { // not present on MR hold pages
153         var href = adv_link.getAttribute('href').replace(
154             /;usr_barcode=[^;\&]+|$/, 
155             ';usr_barcode=' + encodeURIComponent(cur_hold_barcode));
156         adv_link.setAttribute('href', href);
157     }
158
159     if (isload !== true)
160         document.getElementById('place_hold_submit').disabled = false;
161 }
162 window.onload = function() {
163     // record details page events
164
165     setTimeout(function() {
166
167         if (location.href.match(/is_requestor=[01]/)) {
168             var loc = location.href;
169             var is_req_match = new RegExp("is_requestor=[01]");
170             var is_req = is_req_match.exec(loc).toString();
171             is_req = is_req.replace(/is_requestor=/, '');
172             if (is_req == "1") {
173                 document.getElementById('hold_usr_is_requestor').checked = 'checked';
174                 document.getElementById('hold_usr_input').disabled = true;
175             } else {
176                 document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
177                 document.getElementById('hold_usr_input').disabled = false;
178             }
179         }
180
181         var rec = location.href.match(/\/opac\/record\/(\d+)/);
182         if(rec && rec[1]) { 
183             runEvt('rdetail', 'recordRetrieved', rec[1]); 
184             runEvt('rdetail', 'MFHDDrawn');
185         }
186         if(location.href.match(/place_hold/)) {
187             // patron barcode may come from XUL or a CGI param
188             var patron_barcode = xulG.patron_barcode ||
189                 document.getElementById('hold_usr_input').value;
190             if(patron_barcode) {
191                 staff_hold_usr_barcode_changed(patron_barcode);
192             } else {
193                 staff_hold_usr_barcode_changed(true);
194             }
195         }
196     });
197 }
198
199 function rdetail_next_prev_actions(index, count, prev, next, start, end, results) {
200     /*  we mostly get the relative URL from the template:  recid?query_args...
201         replace the recid and args on location.href to get the new URL  */
202     function fullurl(url) {
203         if (url.match(/eg\/opac\/results/)) {
204             return location.href.replace(/\/eg\/opac\/.+$/, url);
205         } else {
206             return location.href.replace(/\/\d+\??.*/, '/' + url);
207         }
208     }
209
210     if (index > 0) {
211         if(prev) 
212             window.rdetailPrev = function() { location.href = fullurl(prev); }
213         if(start) 
214             window.rdetailStart = function() { location.href = fullurl(start); }
215     }
216
217     if (index < count - 1) {
218         if(next) 
219             window.rdetailNext = function() { location.href = fullurl(next); }
220         if(end) 
221             window.rdetailEnd = function() { location.href = fullurl(end); }
222     }
223
224     window.rdetailBackToResults = function() { location.href = fullurl(results); };
225
226     ol = window.onload;
227     window.onload = function() {
228         if(ol) ol(); 
229         setTimeout(function() {
230             runEvt('rdetail', 'nextPrevDrawn', Number(index), Number(count)); 
231         });
232     };
233 }