]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
ce26e03349afdfa7a933cf57796f90136a262c02
[working/Evergreen.git] / Open-ILS / web / js / ui / default / opac / staff.js
1 /* staff client integration functions */
2 function debug(msg){dump(msg+'\n')}
3 var eventCache={};
4 function attachEvt(scope, name, action) {
5     if(!eventCache[scope]) eventCache[scope] = {};
6     if(!eventCache[scope][name]) eventCache[scope][name] = [];
7     eventCache[scope][name].push(action);
8 }
9 function runEvt(scope, name) {
10     debug('running event '+scope+':'+name);
11     var args = Array.prototype.slice.call(arguments).slice(2);
12     if(eventCache[scope]) {
13         var evt = eventCache[scope][name];
14         for(var i in evt) {evt[i].apply(evt[i], args);}
15     } 
16 }
17 function staff_hold_usr_input_disabler(input) {
18     document.getElementById("hold_usr_input").disabled =
19         Boolean(Number(input.value));
20     staff_hold_usr_barcode_changed();
21 }
22 function no_hold_submit(event) {
23     if (event.which == 13) {
24         staff_hold_usr_barcode_changed();
25         return false;
26     }
27     return true;
28 }
29 var cur_hold_barcode = undefined;
30 function staff_hold_usr_barcode_changed(isload) {
31     if(typeof xulG != 'undefined' && xulG.get_barcode_and_settings) {
32         var barcode = isload;
33         if(!barcode || barcode === true) barcode = document.getElementById('staff_barcode').value;
34         var only_settings = true;
35         if(!document.getElementById('hold_usr_is_requestor').checked) {
36             if(!isload) {
37                 barcode = document.getElementById('hold_usr_input').value;
38                 only_settings = false;
39             }
40             if(barcode && barcode != '' && !document.getElementById('hold_usr_is_requestor_not').checked)
41                 document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
42         }
43         if(barcode == undefined || barcode == '') {
44             document.getElementById('patron_name').innerHTML = '';
45             cur_hold_barcode = null;
46             return;
47         }
48         if(barcode == cur_hold_barcode)
49             return;
50         // No submitting until we think the barcode is valid
51         document.getElementById('place_hold_submit').disabled = true;
52         var load_info = xulG.get_barcode_and_settings(window, barcode, only_settings);
53         if(load_info == false || load_info == undefined) {
54             document.getElementById('patron_name').innerHTML = '';
55             document.getElementById("patron_usr_barcode_not_found").style.display = '';
56             cur_hold_barcode = null;
57             return;
58         }
59         cur_hold_barcode = load_info.barcode;
60         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
61         if(load_info.settings['opac.default_pickup_location'])
62             document.getElementById('pickup_lib').value = load_info.settings['opac.default_pickup_location'];
63         if(!load_info.settings['opac.default_phone']) load_info.settings['opac.default_phone'] = '';
64         if(!load_info.settings['opac.default_sms_notify']) load_info.settings['opac.default_sms_notify'] = '';
65         if(!load_info.settings['opac.default_sms_carrier']) load_info.settings['opac.default_sms_carrier'] = '';
66         if(load_info.settings['opac.hold_notify'] || load_info.settings['opac.hold_notify'] === '') {
67             var email = load_info.settings['opac.hold_notify'].indexOf('email') > -1;
68             var phone = load_info.settings['opac.hold_notify'].indexOf('phone') > -1;
69             var sms = load_info.settings['opac.hold_notify'].indexOf('sms') > -1;
70             var update_elements = document.getElementsByName('email_notify');
71             for(var i in update_elements) update_elements[i].checked = (email ? 'checked' : '');
72             update_elements = document.getElementsByName('phone_notify_checkbox');
73             for(var i in update_elements) update_elements[i].checked = (phone ? 'checked' : '');
74             update_elements = document.getElementsByName('sms_notify_checkbox');
75             for(var i in update_elements) update_elements[i].checked = (sms ? 'checked' : '');
76         }
77         update_elements = document.getElementsByName('phone_notify');
78         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_phone'];
79         update_elements = document.getElementsByName('sms_notify');
80         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_notify'];
81         update_elements = document.getElementsByName('sms_carrier');
82         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_carrier'];
83         update_elements = document.getElementsByName('email_notify');
84         for(var i in update_elements) {
85             update_elements[i].disabled = (load_info.user_email ? false : true);
86             if(update_elements[i].disabled) update_elements[i].checked = false;
87         }
88         update_elements = document.getElementsByName('email_address');
89         for(var i in update_elements) update_elements[i].textContent = load_info.user_email;
90         if(!document.getElementById('hold_usr_is_requestor').checked && document.getElementById('hold_usr_input').value) {
91             document.getElementById('patron_name').innerHTML = load_info.patron_name;
92             document.getElementById("patron_usr_barcode_not_found").style.display = 'none';
93         }
94         // Ok, now we can allow submitting again, unless this is a "true" load, in which case we likely have a blank barcode box active
95         if (isload !== true)
96             document.getElementById('place_hold_submit').disabled = false;
97     }
98 }
99 window.onload = function() {
100     // record details page events
101     var rec = location.href.match(/\/opac\/record\/(\d+)/);
102     if(rec && rec[1]) { 
103         runEvt('rdetail', 'recordRetrieved', rec[1]); 
104         runEvt('rdetail', 'MFHDDrawn');
105     }
106     if(location.href.match(/place_hold/)) {
107         if(xulG.patron_barcode) {
108             staff_hold_usr_barcode_changed(xulG.patron_barcode);
109         } else {
110             staff_hold_usr_barcode_changed(true);
111         }
112     }
113 }
114
115 function rdetail_next_prev_actions(index, count, prev, next, start, end, results) {
116     /*  we mostly get the relative URL from the template:  recid?query_args...
117         replace the recid and args on location.href to get the new URL  */
118     function fullurl(url) {
119         if (url.match(/eg\/opac\/results/)) {
120             return location.href.replace(/eg\/opac\/.+$/, url);
121         } else {
122             return location.href.replace(/\/\d+\??.*/, '/' + url);
123         }
124     }
125
126     if (index > 0) {
127         if(prev) 
128             window.rdetailPrev = function() { location.href = fullurl(prev); }
129         if(start) 
130             window.rdetailStart = function() { location.href = fullurl(start); }
131     }
132
133     if (index < count - 1) {
134         if(next) 
135             window.rdetailNext = function() { location.href = fullurl(next); }
136         if(end) 
137             window.rdetailEnd = function() { location.href = fullurl(end); }
138     }
139
140     window.rdetailBackToResults = function() { location.href = fullurl(results); };
141
142     ol = window.onload;
143     window.onload = function() {
144         if(ol) ol(); 
145         runEvt('rdetail', 'nextPrevDrawn', Number(index), Number(count)); 
146     };
147 }