Bug 25279: (QA follow-up) Use .escapeHtml
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / staff-global.js
1 /* global shortcut delCookie delBasket Sticky */
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 var HtmlCharsToEscape = {
19     '&': '&',
20     '<': '&lt;',
21     '>': '&gt;'
22 };
23 String.prototype.escapeHtml = function() {
24     return this.replace(/[&<>]/g, function(c) {
25         return HtmlCharsToEscape[c] || c;
26     });
27 };
28
29 /*
30  * Void method for numbers, for consistency
31  */
32 Number.prototype.escapeHtml = function() {
33     return this;
34 };
35
36 // http://stackoverflow.com/questions/14859281/select-tab-by-name-in-jquery-ui-1-10-0/16550804#16550804
37 $.fn.tabIndex = function () {
38     return $(this).parent().children('div').index(this);
39 };
40 $.fn.selectTabByID = function (tabID) {
41     $(this).tabs("option", "active", $( tabID ).tabIndex());
42 };
43
44  $(document).ready(function() {
45     $('#header_search').tabs().on( "tabsactivate", function(e, ui) { $(this).find("div:visible").find('input').eq(0).focus(); });
46
47     $(".close").click(function(){ window.close(); });
48
49     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"; }); }
50     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"; }); }
51     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"; }); }
52     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"; }); }
53
54     $("#header_search > ul > li").show();
55
56     $(".focus").focus();
57     $(".validated").each(function() {
58         $(this).validate();
59     });
60
61     $("#logout").on("click",function(){
62         logOut();
63     });
64     $("#helper").on("click",function(){
65         openHelp();
66         return false;
67     });
68
69     $("body").on("keypress", ".noEnterSubmit", function(e){
70         return checkEnter(e);
71     });
72
73     $(".keep_text").on("click",function(){
74         var field_index = $(this).parent().index();
75         keep_text( field_index );
76     });
77
78     $(".toggle_element").on("click",function(e){
79         e.preventDefault();
80         $( $(this).data("element") ).toggle();
81         if (typeof Sticky !== "undefined" && typeof hcSticky === "function") {
82             Sticky.hcSticky('update');
83         }
84     });
85
86     var navmenulist = $("#navmenulist");
87     if( navmenulist.length > 0 ){
88         var path = location.pathname.substring(1);
89         var url = window.location.toString();
90         var params = '';
91         if ( url.match(/\?(.+)$/) ) {
92             params = "?" + RegExp.$1;
93         }
94         $("a[href$=\"/" + path + params + "\"]", navmenulist).addClass("current");
95     }
96
97     $("#catalog-search-link a").on("hover", function(){
98         $("#catalog-search-dropdown a").toggleClass("catalog-search-dropdown-hover");
99     });
100
101     if (typeof $.cookie("lastborrowernumber") !== "undefined" && $("#hiddenborrowernumber").val() != $.cookie("lastborrowernumber")) {
102         $("#lastborrower-window").detach().appendTo("#breadcrumbs");
103         $("#lastborrowerlink").show();
104         $("#lastborrowerlink").prop("title", $.cookie("lastborrowername") + " (" + $.cookie("lastborrowercard") + ")");
105         $("#lastborrowerlink").prop("href", "/cgi-bin/koha/circ/circulation.pl?borrowernumber=" + $.cookie("lastborrowernumber"));
106         $("#lastborrower-window").css("display", "inline-block");
107     }
108     if ($("a#logout").length > 0) {
109         $("a#logout").click(function() {
110             delCookie("lastborrowernumber");
111             delCookie("lastborrowername");
112             delCookie("lastborrowercard");
113             delCookie("currentborrowernumber");
114         });
115     }
116     $("#lastborrower-remove").click(function() {
117         delCookie("lastborrowernumber");
118         delCookie("lastborrowername");
119         delCookie("lastborrowercard");
120         delCookie("currentborrowernumber");
121         $("#lastborrower-window").hide();
122     });
123     if (typeof $.cookie("lastborrowernumber") === "undefined" || ($("#hiddenborrowernumber").val() != $.cookie("lastborrowernumber") && $.cookie("currentborrowernumber") != $("#hiddenborrowernumber").val())) {
124         $.cookie("lastborrowernumber", $("#hiddenborrowernumber").val(), { path: "/" });
125         $.cookie("lastborrowername", $("#hiddenborrowername").val(), { path: "/" });
126         $.cookie("lastborrowercard", $("#hiddenborrowercard").val(), { path: "/" });
127     }
128     $.cookie("currentborrowernumber", $("#hiddenborrowernumber").val(), { path: "/" });
129 });
130
131 // http://jennifermadden.com/javascript/stringEnterKeyDetector.html
132 function checkEnter(e){ //e is event object passed from function invocation
133     var characterCode; // literal character code will be stored in this variable
134     if(e && e.which){ //if which property of event object is supported (NN4)
135         characterCode = e.which; //character code is contained in NN4's which property
136     } else {
137         characterCode = e.keyCode; //character code is contained in IE's keyCode property
138     }
139     if( characterCode == 13 //if generated character code is equal to ascii 13 (if enter key)
140         && e.target.nodeName == "INPUT"
141         && e.target.type != "submit" // Allow enter to submit using the submit button
142     ){
143         return false;
144     } else {
145         return true;
146     }
147 }
148
149 function clearHoldFor(){
150     $.removeCookie("holdfor", { path: '/' });
151 }
152
153 function logOut(){
154     if( typeof delBasket == 'function' ){
155         delBasket('main', true);
156     }
157     clearHoldFor();
158 }
159
160 function openHelp(){
161     window.open( "/cgi-bin/koha/help.pl", "_blank");
162 }
163
164 jQuery.fn.preventDoubleFormSubmit = function() {
165     jQuery(this).submit(function() {
166     $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
167         if (this.beenSubmitted)
168             return false;
169         else
170             this.beenSubmitted = true;
171     });
172 };
173
174 function openWindow(link,name,width,height) {
175     name = (typeof name == "undefined")?'popup':name;
176     width = (typeof width == "undefined")?'600':width;
177     height = (typeof height == "undefined")?'400':height;
178     var newwin;
179     //IE <= 9 can't handle a "name" with whitespace
180     try {
181         newin=window.open(link,name,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
182     } catch(e) {
183         newin=window.open(link,null,'width='+width+',height='+height+',resizable=yes,toolbar=false,scrollbars=yes,top');
184     }
185 }
186
187 // Use this function to remove the focus from any element for
188 // repeated scanning actions on errors so the librarian doesn't
189 // continue scanning and miss the error.
190 function removeFocus() {
191     $(':focus').blur();
192 }
193
194 function toUC(f) {
195     var x=f.value.toUpperCase();
196     f.value=x;
197     return true;
198 }
199
200 function confirmDelete(message) {
201     return (confirm(message) ? true : false);
202 }
203
204 function confirmClone(message) {
205     return (confirm(message) ? true : false);
206 }
207
208 function playSound( sound ) {
209     if ( ! ( sound.indexOf('http://') === 0 || sound.indexOf('https://') === 0  ) ) {
210         sound = AUDIO_ALERT_PATH + sound;
211     }
212     document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>';
213 }
214
215 // For keeping the text when navigating the search tabs
216 function keep_text(clicked_index) {
217     var searchboxes = document.getElementsByClassName("head-searchbox");
218     var persist = searchboxes[0].value;
219
220     for (i = 0; i < searchboxes.length - 1; i++) {
221         if (searchboxes[i].value != searchboxes[i+1].value) {
222             if (i === searchboxes.length-2) {
223                 if (searchboxes[i].value != searchboxes[0].value) {
224                     persist = searchboxes[i].value;
225                 } else if (searchboxes.length === 2) {
226                     if (clicked_index === 0) {
227                         persist = searchboxes[1].value;
228                     }
229                 } else {
230                     persist = searchboxes[i+1].value;
231                 }
232             } else if (searchboxes[i+1].value != searchboxes[i+2].value) {
233                 persist = searchboxes[i+1].value;
234             }
235         }
236     }
237
238     for (i = 0; i < searchboxes.length; i++) {
239         searchboxes[i].value = persist;
240     }
241 }