Bug 24219: Preserve sort order when returning to result list
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / pages / results.js
1 /* global KOHA biblionumber new_results_browser addMultiple vShelfAdd openWindow search_result SEARCH_RESULTS PREF_AmazonCoverImages PREF_LocalCoverImages PREF_IntranetCoce PREF_CoceProviders CoceHost CoceProviders addRecord delSingleRecord PREF_BrowseResultSelection resetSearchContext addBibToContext delBibToContext getContextBiblioNumbers MSG_NO_ITEM_SELECTED MSG_NO_ITEM_SELECTED holdfor_cardnumber holdforclub strQuery MSG_NON_RESERVES_SELECTED PREF_NotHighlightedWords PLACE_HOLD */
2
3 if( PREF_AmazonCoverImages ){
4     $(window).load(function() {
5         verify_images();
6     });
7 }
8
9 var Sticky;
10 var toHighlight = {};
11 var q_array;
12
13 $(document).ready(function() {
14
15     $(".moretoggle").click(function(e) {
16         e.preventDefault();
17         $(this).siblings(".collapsible-facet").toggle();
18         $(this).siblings(".moretoggle").toggle();
19         $(this).toggle();
20     });
21
22     Sticky = $("#searchheader");
23     Sticky.hcSticky({
24         stickTo: "main",
25         stickyClass: "floating"
26     });
27
28     $("#cartsubmit").click(function(e){
29         e.preventDefault();
30         addMultiple();
31     });
32
33     $(".addtolist").on("click",function(e){
34         e.preventDefault();
35         var shelfnumber = $(this).data("shelfnumber");
36         var vshelf = vShelfAdd();
37         if( vshelf ){
38             if( $(this).hasClass("morelists") ){
39                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?' + vshelf);
40             } else if( $(this).hasClass("newlist") ){
41                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?newshelf=1&' + vshelf);
42             } else {
43                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?shelfnumber='+shelfnumber+'&confirm=1&' + vshelf);
44             }
45         }
46     });
47
48     $("#z3950submit").click(function(){
49         PopupZ3950();
50         return false;
51     });
52
53     $("#searchheader").on("click", ".browse_selection", function(){
54         browse_selection();
55         return false;
56     });
57
58     $("#searchheader").on("click",".placehold", function(){
59         $("#holdFor").val("");
60         $("#holdForClub").val("");
61         placeHold();
62         $(".btn-group").removeClass("open");
63         return false;
64     });
65
66     $(".placeholdfor").click(function(){
67         holdForPatron();
68         $(".btn-group").removeClass("open");
69         return false;
70     });
71
72     $(".placeholdforclub").click(function(){
73         holdForClub();
74         $(".btn-group").removeClass("open");
75         return false;
76     });
77
78     $("#forgetholdfor, #forgetholdforclub").click(function(){
79         forgetPatronAndClub();
80         $(".btn-group").removeClass("open");
81         return false;
82     });
83
84     $(".selection").show();
85
86     if( search_result.query_desc ){
87         toHighlight = $("p,span.results_summary,a.title");
88         q_array = search_result.query_desc.split(" ");
89         // ensure that we don't have "" at the end of the array, which can
90         // break the highlighter
91         while ( q_array.length > 0 && q_array[q_array.length-1] == "") {
92             q_array = q_array.splice(0,-1);
93         }
94         highlightOn();
95         $("#highlight_toggle_on" ).hide().click(function(e) {
96             e.preventDefault();
97             highlightOn();
98         });
99         $("#highlight_toggle_off").show().click(function(e) {
100             e.preventDefault();
101             highlightOff();
102         });
103     }
104
105     if( SEARCH_RESULTS ){
106         var browser = KOHA.browser( search_result.searchid, parseInt( biblionumber, 10));
107         browser.create( search_result.first_result_number, search_result.query_cgi, search_result.limit_cgi, search_result.sort_by, new_results_browser, search_result.total );
108     }
109
110     if( search_result.gotoPage && search_result.gotoNumber){
111         if( search_result.gotoNumber == 'first' ){
112             window.location = "/cgi-bin/koha/catalogue/" + search_result.gotoPage + "?biblionumber=" + search_result.first_biblionumber + "&searchid=" + search_result.searchid;
113         } else if( search_result.gotoNumber == "last" ){
114             window.location = "/cgi-bin/koha/catalogue/" + search_result.gotoPage + "?biblionumber=" + search_result.last_biblionumber + "&searchid=" + search_result.searchid;
115         }
116     }
117
118     if( PREF_LocalCoverImages ){
119         KOHA.LocalCover.LoadResultsCovers();
120     }
121
122     if( PREF_IntranetCoce && PREF_CoceProviders ){
123         KOHA.coce.getURL( CoceHost, CoceProviders );
124     }
125
126     $("#select_all").on("click",function(e){
127         e.preventDefault();
128         selectAll();
129     });
130
131     $("#clear_all").on("click",function(e){
132         e.preventDefault();
133         clearAll();
134     });
135
136     $("#searchresults").on("click",".addtocart",function(e){
137         e.preventDefault();
138         var selection_id = this.id;
139         var biblionumber = selection_id.replace("cart","");
140         addRecord(biblionumber);
141     });
142
143     $("#searchresults").on("click",".cartRemove",function(e){
144         e.preventDefault();
145         var selection_id = this.id;
146         var biblionumber = selection_id.replace("cartR","");
147         delSingleRecord(biblionumber);
148     });
149
150     if( !PREF_BrowseResultSelection ){
151         resetSearchContext();
152     }
153
154     $(".selection").change(function(){
155         if ( $(this).is(':checked') == true ) {
156             addBibToContext( $(this).val() );
157         } else {
158             delBibToContext( $(this).val() );
159         }
160     });
161     $("#bookbag_form").ready(function(){
162         $("#bookbag_form").unCheckCheckboxes();
163         var bibnums = getContextBiblioNumbers();
164         if (bibnums) {
165             for (var i=0; i < bibnums.length; i++) {
166                 var id = ('#bib' + bibnums[i]);
167                 if ($(id)) {
168                     $(id).attr('checked', true);
169                 }
170             }
171         }
172     });
173 });
174
175
176 function highlightOff() {
177     if( toHighlight.length > 0 ){
178         toHighlight.removeHighlight();
179         $(".highlight_toggle").toggle();
180     }
181 }
182
183 function highlightOn() {
184     if( toHighlight.length > 0 ){
185         var x;
186         for (x in q_array) {
187             q_array[x] = q_array[x].toLowerCase();
188             var myStopwords = PREF_NotHighlightedWords.toLowerCase().split('|');
189             if ( (q_array[x].length > 0) && ($.inArray(q_array[x], myStopwords) == -1) ) {
190                 toHighlight.highlight(q_array[x]);
191             }
192         }
193         $(".highlight_toggle").toggle();
194     }
195 }
196
197
198 function selectAll () {
199     $("#bookbag_form").checkCheckboxes();
200     $("#bookbag_form").find("input[type='checkbox'][name='biblionumber']").each(function(){
201         $(this).change();
202     } );
203     return false;
204 }
205 function clearAll () {
206     $("#bookbag_form").unCheckCheckboxes();
207     $("#bookbag_form").find("input[type='checkbox'][name='biblionumber']").each(function(){
208         $(this).change();
209     } );
210     return false;
211 }
212 function placeHold () {
213     var checkedItems = $(".selection:checked");
214     if ($(checkedItems).size() == 0) {
215         alert(MSG_NO_ITEM_SELECTED);
216         return false;
217     }
218     var bibs = "";
219     var badBibs = false;
220     $(checkedItems).each(function() {
221         var bib = $(this).val();
222         if ($("#reserve_" + bib).size() == 0) {
223             alert(MSG_NON_RESERVES_SELECTED);
224             badBibs = true;
225             return false;
226         }
227         bibs += bib + "/";
228     });
229     if (badBibs) {
230         return false;
231     }
232     $("#hold_form_biblios").val(bibs);
233     $("#hold_form").submit();
234     return false;
235 }
236
237 function forgetPatronAndClub(){
238     $.removeCookie("holdfor", { path: '/' });
239     $.removeCookie("holdforclub", { path: '/' });
240     $(".holdforlink").remove();
241     $("#placeholdc").html("<a class=\"btn btn-default btn-xs placehold\" href=\"#\"><i class=\"fa fa-sticky-note-o\"></i> " + PLACE_HOLD + "</a>");
242 }
243
244 function browse_selection () {
245     var bibnums = getContextBiblioNumbers();
246     if ( bibnums && bibnums.length > 0 ) {
247         var browser = KOHA.browser('', parseInt( biblionumber, 10));
248         browser.create(1, search_result.query_cgi, search_result.limit_cgi, search_result.sort_by, bibnums, bibnums.length);
249         window.location = '/cgi-bin/koha/catalogue/detail.pl?biblionumber=' + bibnums[0] + '&searchid='+browser.searchid;
250     } else {
251         alert(MSG_NO_ITEM_SELECTED);
252     }
253     return false;
254 }
255
256 function addToList () {
257     var checkedItems = $(".selection:checked");
258     if ($(checkedItems).size() == 0) {
259         alert(MSG_NO_ITEM_SELECTED);
260         return false;
261     }
262     var bibs = "";
263     $(checkedItems).each(function() {
264         bibs += $(this).val() + "/";
265     });
266
267     var url = "/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumbers=" + bibs;
268     window.open(url, 'Add_to_virtualshelf', 'width=500, height=400, toolbar=false, scrollbars=yes');
269     return false;
270 }
271
272 /* this function open a popup to search on z3950 server.  */
273 function PopupZ3950() {
274     if( strQuery ){
275         window.open("/cgi-bin/koha/cataloguing/z3950_search.pl?biblionumber=" + biblionumber + strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
276     }
277 }
278
279 function holdfor(){
280     $("#holdFor").val("");
281     $("#holdForClub").val("");
282     placeHold();
283 }
284
285 function holdForPatron() {
286     $("#holdFor").val( holdfor_cardnumber );
287     placeHold();
288 }
289
290 function holdForClub() {
291     $("#holdForClub").val( holdforclub );
292     placeHold();
293 }
294
295 // http://www.oreillynet.com/pub/a/javascript/2003/10/21/amazonhacks.html
296 function verify_images() {
297     $("img").each(function(){
298         if ((this.src.indexOf('images-amazon.com') >= 0) || (this.src.indexOf('images.amazon.com') >=0)) {
299             var w = this.width;
300             var h = this.height;
301             if ((w == 1) || (h == 1)) {
302                 $(this).parent().html('<span class="no-image">No cover image available</span>');
303             } else if ((this.complete != null) && (!this.complete)) {
304                 $(this).parent().html('<span class="no-image">No cover image available</span>');
305             }
306         }
307     });
308 }