Bug 12051: Adds a Renew tab to the staff client
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / js / staff-global.js
1 // staff-global.js
2 if ( KOHA === undefined ) var KOHA = {};
3
4 function _(s) { return s; } // dummy function for gettext
5
6 // http://stackoverflow.com/questions/1038746/equivalent-of-string-format-in-jquery/5341855#5341855
7 String.prototype.format = function() { return formatstr(this, arguments) }
8 function formatstr(str, col) {
9     col = typeof col === 'object' ? col : Array.prototype.slice.call(arguments, 1);
10     var idx = 0;
11     return str.replace(/%%|%s|%(\d+)\$s/g, function (m, n) {
12         if (m == "%%") { return "%"; }
13         if (m == "%s") { return col[idx++]; }
14         return col[n];
15     });
16 };
17
18
19 // http://stackoverflow.com/questions/14859281/select-tab-by-name-in-jquery-ui-1-10-0/16550804#16550804
20 $.fn.tabIndex = function () {
21     return $(this).parent().children('div').index(this);
22 };
23 $.fn.selectTabByID = function (tabID) {
24     $(this).tabs("option", "active", $(tabID).tabIndex());
25 };
26
27  $(document).ready(function() {
28     $('#header_search').tabs().on( "tabsactivate", function(e, ui) { $(this).find("div:visible").find('input').eq(0).focus(); });
29
30     $(".close").click(function(){ window.close(); });
31
32     if($("#header_search #checkin_search").length > 0){ shortcut.add('Alt+r',function (){ $("#header_search").selectTabByID("#checkin_search"); $("#ret_barcode").focus(); }); } else { shortcut.add('Alt+r',function (){ location.href="/cgi-bin/koha/circ/returns.pl"; }); }
33     if($("#header_search #circ_search").length > 0){ shortcut.add('Alt+u',function (){ $("#header_search").selectTabByID("#circ_search"); $("#findborrower").focus(); }); } else { shortcut.add('Alt+u',function(){ location.href="/cgi-bin/koha/circ/circulation.pl"; }); }
34     if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").selectTabByID("#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
35     if($("#header_search #renew_search").length > 0){ shortcut.add('Alt+y',function (){ $("#header_search").selectTabByID("#renew_search"); $("#ren_barcode").focus(); }); } else { shortcut.add('Alt+y',function(){ location.href="/cgi-bin/koha/circ/renew.pl"; }); }
36
37     $(".focus").focus();
38     $(".validated").each(function() {
39         $(this).validate();
40     });
41
42     $("#logout").on("click",function(){
43         logOut();
44     });
45     $("#helper").on("click",function(){
46         openHelp();
47         return false;
48     });
49
50     $("body").on("keypress", ".noEnterSubmit", function(e){
51         return checkEnter(e);
52     });
53 });
54
55 // http://jennifermadden.com/javascript/stringEnterKeyDetector.html
56 function checkEnter(e){ //e is event object passed from function invocation
57     var characterCode; // literal character code will be stored in this variable
58     if(e && e.which){ //if which property of event object is supported (NN4)
59         characterCode = e.which; //character code is contained in NN4's which property
60     } else {
61         characterCode = e.keyCode; //character code is contained in IE's keyCode property
62     }
63
64     if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
65         return false;
66     } else {
67         return true;
68     }
69 }
70
71 function clearHoldFor(){
72     $.removeCookie("holdfor", { path: '/' });
73 }
74
75 function logOut(){
76     if( typeof delBasket == 'function' ){
77         delBasket('main', true);
78     }
79     clearHoldFor();
80 }
81
82 function openHelp(){
83     openWindow("/cgi-bin/koha/help.pl","KohaHelp",600,600);
84 }
85
86 jQuery.fn.preventDoubleFormSubmit = function() {
87     jQuery(this).submit(function() {
88     $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
89         if (this.beenSubmitted)
90             return false;
91         else
92             this.beenSubmitted = true;
93     });
94 };
95
96 function openWindow(link,name,width,height) {
97     name = (typeof name == "undefined")?'popup':name;
98     width = (typeof width == "undefined")?'600':width;
99     height = (typeof height == "undefined")?'400':height;
100     //IE <= 9 can't handle a "name" with whitespace
101     try {
102         var newin=window.open(link,name,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
103     } catch(e) {
104         var newin=window.open(link,null,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
105     }
106 }
107
108 // Use this function to remove the focus from any element for
109 // repeated scanning actions on errors so the librarian doesn't
110 // continue scanning and miss the error.
111 function removeFocus() {
112     $(':focus').blur();
113 }
114
115 function toUC(f) {
116     var x=f.value.toUpperCase();
117     f.value=x;
118     return true;
119 }
120
121 function confirmDelete(message) {
122     return (confirm(message) ? true : false);
123 }
124
125 function playSound( sound ) {
126     if ( ! ( sound.indexOf('http://') == 0 || sound.indexOf('https://') == 0  ) ) {
127         sound = AUDIO_ALERT_PATH + sound;
128     }
129     document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>';
130 }