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