Bug 15413: Adding colons where appropriate
[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     $("#header_search > ul > li").show();
38
39     $(".focus").focus();
40     $(".validated").each(function() {
41         $(this).validate();
42     });
43
44     $("#logout").on("click",function(){
45         logOut();
46     });
47     $("#helper").on("click",function(){
48         openHelp();
49         return false;
50     });
51
52     $("body").on("keypress", ".noEnterSubmit", function(e){
53         return checkEnter(e);
54     });
55 });
56
57 // http://jennifermadden.com/javascript/stringEnterKeyDetector.html
58 function checkEnter(e){ //e is event object passed from function invocation
59     var characterCode; // literal character code will be stored in this variable
60     if(e && e.which){ //if which property of event object is supported (NN4)
61         characterCode = e.which; //character code is contained in NN4's which property
62     } else {
63         characterCode = e.keyCode; //character code is contained in IE's keyCode property
64     }
65
66     if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)
67         return false;
68     } else {
69         return true;
70     }
71 }
72
73 function clearHoldFor(){
74     $.removeCookie("holdfor", { path: '/' });
75 }
76
77 function logOut(){
78     if( typeof delBasket == 'function' ){
79         delBasket('main', true);
80     }
81     clearHoldFor();
82 }
83
84 function openHelp(){
85     openWindow("/cgi-bin/koha/help.pl","KohaHelp",600,600);
86 }
87
88 jQuery.fn.preventDoubleFormSubmit = function() {
89     jQuery(this).submit(function() {
90     $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
91         if (this.beenSubmitted)
92             return false;
93         else
94             this.beenSubmitted = true;
95     });
96 };
97
98 function openWindow(link,name,width,height) {
99     name = (typeof name == "undefined")?'popup':name;
100     width = (typeof width == "undefined")?'600':width;
101     height = (typeof height == "undefined")?'400':height;
102     var newwin;
103     //IE <= 9 can't handle a "name" with whitespace
104     try {
105         newin=window.open(link,name,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
106     } catch(e) {
107         newin=window.open(link,null,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
108     }
109 }
110
111 // Use this function to remove the focus from any element for
112 // repeated scanning actions on errors so the librarian doesn't
113 // continue scanning and miss the error.
114 function removeFocus() {
115     $(':focus').blur();
116 }
117
118 function toUC(f) {
119     var x=f.value.toUpperCase();
120     f.value=x;
121     return true;
122 }
123
124 function confirmDelete(message) {
125     return (confirm(message) ? true : false);
126 }
127
128 function playSound( sound ) {
129     if ( ! ( sound.indexOf('http://') === 0 || sound.indexOf('https://') === 0  ) ) {
130         sound = AUDIO_ALERT_PATH + sound;
131     }
132     document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>';
133 }
134
135 // For keeping the text when navigating the search tabs
136 function keep_text(clicked_index) {
137     var searchboxes = document.getElementsByClassName("head-searchbox");
138     var persist = searchboxes[0].value;
139
140     for (i = 0; i < searchboxes.length - 1; i++) {
141         if (searchboxes[i].value != searchboxes[i+1].value) {
142             if (i === searchboxes.length-2) {
143                 if (searchboxes[i].value != searchboxes[0].value) {
144                     persist = searchboxes[i].value;
145                 } else if (searchboxes.length === 2) {
146                     if (clicked_index === 0) {
147                         persist = searchboxes[1].value;
148                     }
149                 } else {
150                     persist = searchboxes[i+1].value;
151                 }
152             } else if (searchboxes[i+1].value != searchboxes[i+2].value) {
153                 persist = searchboxes[i+1].value;
154             }
155         }
156     }
157
158     for (i = 0; i < searchboxes.length; i++) {
159         searchboxes[i].value = persist;
160     }
161 }