Bug 31028: (follow-up) Fix executable bit
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / js / datatables.js
1 // These default options are for translation but can be used
2 // for any other datatables settings
3 // To use it, write:
4 //  $("#table_id").dataTable($.extend(true, {}, dataTableDefaults, {
5 //      // other settings
6 //  } ) );
7 var dataTablesDefaults = {
8     "language": {
9         "paginate": {
10             "first"    : __('First'),
11             "last"     : __('Last'),
12             "next"     : __('Next'),
13             "previous" : __('Previous'),
14         },
15         "emptyTable"       : __('No data available in table'),
16         "info"             : __('Showing _START_ to _END_ of _TOTAL_ entries'),
17         "infoEmpty"        : __('No entries to show'),
18         "infoFiltered"     : __('(filtered from _MAX_ total entries)'),
19         "lengthMenu"       : __('Show _MENU_ entries'),
20         "loadingRecords"   : __('Loading...'),
21         "processing"       : __('Processing...'),
22         "search"           : __('Search:'),
23         "zeroRecords"      : __('No matching records found'),
24         buttons: {
25             "copyTitle"     : __('Copy to clipboard'),
26             "copyKeys"      : __('Press <i>ctrl</i> or <i>⌘</i> + <i>C</i> to copy the table data<br>to your system clipboard.<br><br>To cancel, click this message or press escape.'),
27             "copySuccess": {
28                 _: __('Copied %d rows to clipboard'),
29                 1: __('Copied one row to clipboard'),
30             }
31         }
32     },
33     "dom": '<"dt-info"i><"top pager"<"table_entries"lp><"table_controls"fB>>tr<"bottom pager"ip>',
34     "buttons": [{
35         fade: 100,
36         className: "dt_button_clear_filter",
37         titleAttr: __('Clear filter'),
38         enabled: false,
39         text: '<i class="fa fa-lg fa-remove"></i> <span class="dt-button-text">' + __('Clear filter') + '</span>',
40         available: function ( dt ) {
41             // The "clear filter" button is made available if this test returns true
42             if( dt.settings()[0].aanFeatures.f ){ // aanFeatures.f is null if there is no search form
43                 return true;
44             }
45         },
46         action: function ( e, dt, node ) {
47             dt.search( "" ).draw("page");
48             node.addClass("disabled");
49         }
50     }],
51     "lengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, __('All')]],
52     "pageLength": 20,
53     "fixedHeader": true,
54     initComplete: function( settings) {
55         var tableId = settings.nTable.id
56         var state =  settings.oLoadedState;
57         state && toggledClearFilter(state.search.search, tableId);
58         // When the DataTables search function is triggered,
59         // enable or disable the "Clear filter" button based on
60         // the presence of a search string
61         $("#" + tableId ).on( 'search.dt', function ( e, settings ) {
62             toggledClearFilter(settings.oPreviousSearch.sSearch, tableId);
63         });
64     }
65 };
66
67 function toggledClearFilter(searchText, tableId){
68     if( searchText == "" ){
69         $("#" + tableId + "_wrapper").find(".dt_button_clear_filter").addClass("disabled");
70     } else {
71         $("#" + tableId + "_wrapper").find(".dt_button_clear_filter").removeClass("disabled");
72     }
73 }
74
75
76 // Return an array of string containing the values of a particular column
77 $.fn.dataTableExt.oApi.fnGetColumnData = function ( oSettings, iColumn, bUnique, bFiltered, bIgnoreEmpty ) {
78     // check that we have a column id
79     if ( typeof iColumn == "undefined" ) return new Array();
80     // by default we only wany unique data
81     if ( typeof bUnique == "undefined" ) bUnique = true;
82     // by default we do want to only look at filtered data
83     if ( typeof bFiltered == "undefined" ) bFiltered = true;
84     // by default we do not wany to include empty values
85     if ( typeof bIgnoreEmpty == "undefined" ) bIgnoreEmpty = true;
86     // list of rows which we're going to loop through
87     var aiRows;
88     // use only filtered rows
89     if (bFiltered == true) aiRows = oSettings.aiDisplay;
90     // use all rows
91     else aiRows = oSettings.aiDisplayMaster; // all row numbers
92
93     // set up data array
94     var asResultData = new Array();
95     for (var i=0,c=aiRows.length; i<c; i++) {
96         iRow = aiRows[i];
97         var aData = this.fnGetData(iRow);
98         var sValue = aData[iColumn];
99         // ignore empty values?
100         if (bIgnoreEmpty == true && sValue.length == 0) continue;
101         // ignore unique values?
102         else if (bUnique == true && jQuery.inArray(sValue, asResultData) > -1) continue;
103         // else push the value onto the result data array
104         else asResultData.push(sValue);
105     }
106     return asResultData;
107 }
108
109 // List of unbind keys (Ctrl, Alt, Direction keys, etc.)
110 // These keys must not launch filtering
111 var blacklist_keys = new Array(0, 16, 17, 18, 37, 38, 39, 40);
112
113 // Set a filtering delay for global search field
114 jQuery.fn.dataTableExt.oApi.fnSetFilteringDelay = function ( oSettings, iDelay ) {
115     /*
116      * Inputs:      object:oSettings - dataTables settings object - automatically given
117      *              integer:iDelay - delay in milliseconds
118      * Usage:       $('#example').dataTable().fnSetFilteringDelay(250);
119      * Author:      Zygimantas Berziunas (www.zygimantas.com) and Allan Jardine
120      * License:     GPL v2 or BSD 3 point style
121      * Contact:     zygimantas.berziunas /AT\ hotmail.com
122      */
123     var
124         _that = this,
125         iDelay = (typeof iDelay == 'undefined') ? 250 : iDelay;
126
127     this.each( function ( i ) {
128         $.fn.dataTableExt.iApiIndex = i;
129         var
130             $this = this,
131             oTimerId = null,
132             sPreviousSearch = null,
133             anControl = $( 'input', _that.fnSettings().aanFeatures.f );
134
135         anControl.unbind( 'keyup.DT' ).bind( 'keyup.DT', function(event) {
136             var $$this = $this;
137             if (blacklist_keys.indexOf(event.keyCode) != -1) {
138                 return this;
139             }else if ( event.keyCode == '13' ) {
140                 $.fn.dataTableExt.iApiIndex = i;
141                 _that.fnFilter( $(this).val() );
142             } else {
143                 if (sPreviousSearch === null || sPreviousSearch != anControl.val()) {
144                     window.clearTimeout(oTimerId);
145                     sPreviousSearch = anControl.val();
146                     oTimerId = window.setTimeout(function() {
147                         $.fn.dataTableExt.iApiIndex = i;
148                         _that.fnFilter( anControl.val() );
149                     }, iDelay);
150                 }
151             }
152         });
153
154         return this;
155     } );
156     return this;
157 }
158
159 // Add a filtering delay on general search and on all input (with a class 'filter')
160 jQuery.fn.dataTableExt.oApi.fnAddFilters = function ( oSettings, sClass, iDelay ) {
161     var table = this;
162     this.fnSetFilteringDelay(iDelay);
163     var filterTimerId = null;
164     $(table).find("input."+sClass).keyup(function(event) {
165       if (blacklist_keys.indexOf(event.keyCode) != -1) {
166         return this;
167       }else if ( event.keyCode == '13' ) {
168         table.fnFilter( $(this).val(), $(this).attr('data-column_num') );
169       } else {
170         window.clearTimeout(filterTimerId);
171         var input = this;
172         filterTimerId = window.setTimeout(function() {
173           table.fnFilter($(input).val(), $(input).attr('data-column_num'));
174         }, iDelay);
175       }
176     });
177     $(table).find("select."+sClass).on('change', function() {
178         table.fnFilter($(this).val(), $(this).attr('data-column_num'));
179     });
180 }
181
182 // Sorting on html contains
183 // <a href="foo.pl">bar</a> sort on 'bar'
184 function dt_overwrite_html_sorting_localeCompare() {
185     jQuery.fn.dataTableExt.oSort['html-asc']  = function(a,b) {
186         a = a.replace(/<.*?>/g, "").replace(/\s+/g, " ");
187         b = b.replace(/<.*?>/g, "").replace(/\s+/g, " ");
188         if (typeof(a.localeCompare == "function")) {
189            return a.localeCompare(b);
190         } else {
191            return (a > b) ? 1 : ((a < b) ? -1 : 0);
192         }
193     };
194
195     jQuery.fn.dataTableExt.oSort['html-desc'] = function(a,b) {
196         a = a.replace(/<.*?>/g, "").replace(/\s+/g, " ");
197         b = b.replace(/<.*?>/g, "").replace(/\s+/g, " ");
198         if(typeof(b.localeCompare == "function")) {
199             return b.localeCompare(a);
200         } else {
201             return (b > a) ? 1 : ((b < a) ? -1 : 0);
202         }
203     };
204
205     jQuery.fn.dataTableExt.oSort['num-html-asc']  = function(a,b) {
206         var x = a.replace( /<.*?>/g, "" );
207         var y = b.replace( /<.*?>/g, "" );
208         x = parseFloat( x );
209         y = parseFloat( y );
210         return ((x < y) ? -1 : ((x > y) ?  1 : 0));
211     };
212
213     jQuery.fn.dataTableExt.oSort['num-html-desc'] = function(a,b) {
214         var x = a.replace( /<.*?>/g, "" );
215         var y = b.replace( /<.*?>/g, "" );
216         x = parseFloat( x );
217         y = parseFloat( y );
218         return ((x < y) ?  1 : ((x > y) ? -1 : 0));
219     };
220 }
221
222 $.fn.dataTableExt.oSort['num-html-asc']  = function(a,b) {
223     var x = a.replace( /<.*?>/g, "" );
224     var y = b.replace( /<.*?>/g, "" );
225     x = parseFloat( x );
226     y = parseFloat( y );
227     return ((x < y) ? -1 : ((x > y) ?  1 : 0));
228 };
229
230 $.fn.dataTableExt.oSort['num-html-desc'] = function(a,b) {
231     var x = a.replace( /<.*?>/g, "" );
232     var y = b.replace( /<.*?>/g, "" );
233     x = parseFloat( x );
234     y = parseFloat( y );
235     return ((x < y) ?  1 : ((x > y) ? -1 : 0));
236 };
237
238 (function() {
239
240 /*
241  * Natural Sort algorithm for Javascript - Version 0.7 - Released under MIT license
242  * Author: Jim Palmer (based on chunking idea from Dave Koelle)
243  * Contributors: Mike Grier (mgrier.com), Clint Priest, Kyle Adams, guillermo
244  * See: http://js-naturalsort.googlecode.com/svn/trunk/naturalSort.js
245  */
246 function naturalSort (a, b) {
247     var re = /(^-?[0-9]+(\.?[0-9]*)[df]?e?[0-9]?$|^0x[0-9a-f]+$|[0-9]+)/gi,
248         sre = /(^[ ]*|[ ]*$)/g,
249         dre = /(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[\/\-]\d{1,4}[\/\-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,
250         hre = /^0x[0-9a-f]+$/i,
251         ore = /^0/,
252         // convert all to strings and trim()
253         x = a.toString().replace(sre, '') || '',
254         y = b.toString().replace(sre, '') || '',
255         // chunk/tokenize
256         xN = x.replace(re, '\0$1\0').replace(/\0$/,'').replace(/^\0/,'').split('\0'),
257         yN = y.replace(re, '\0$1\0').replace(/\0$/,'').replace(/^\0/,'').split('\0'),
258         // numeric, hex or date detection
259         xD = parseInt(x.match(hre), 10) || (xN.length != 1 && x.match(dre) && Date.parse(x)),
260         yD = parseInt(y.match(hre), 10) || xD && y.match(dre) && Date.parse(y) || null;
261     // first try and sort Hex codes or Dates
262     if (yD)
263         if ( xD < yD ) return -1;
264         else if ( xD > yD )  return 1;
265     // natural sorting through split numeric strings and default strings
266     for(var cLoc=0, numS=Math.max(xN.length, yN.length); cLoc < numS; cLoc++) {
267         // find floats not starting with '0', string or 0 if not defined (Clint Priest)
268         var oFxNcL = !(xN[cLoc] || '').match(ore) && parseFloat(xN[cLoc]) || xN[cLoc] || 0;
269         var oFyNcL = !(yN[cLoc] || '').match(ore) && parseFloat(yN[cLoc]) || yN[cLoc] || 0;
270         // handle numeric vs string comparison - number < string - (Kyle Adams)
271         if (isNaN(oFxNcL) !== isNaN(oFyNcL)) return (isNaN(oFxNcL)) ? 1 : -1;
272         // rely on string comparison if different types - i.e. '02' < 2 != '02' < '2'
273         else if (typeof oFxNcL !== typeof oFyNcL) {
274             oFxNcL += '';
275             oFyNcL += '';
276         }
277         if (oFxNcL < oFyNcL) return -1;
278         if (oFxNcL > oFyNcL) return 1;
279     }
280     return 0;
281 }
282
283 jQuery.extend( jQuery.fn.dataTableExt.oSort, {
284     "natural-asc": function ( a, b ) {
285         return naturalSort(a,b);
286     },
287
288     "natural-desc": function ( a, b ) {
289         return naturalSort(a,b) * -1;
290     }
291 } );
292
293 }());
294
295 /* Plugin to allow sorting on data stored in a span's title attribute
296  *
297  * Ex: <td><span title="[% ISO_date %]">[% formatted_date %]</span></td>
298  *
299  * In DataTables config:
300  *     "aoColumns": [
301  *        { "sType": "title-string" },
302  *      ]
303  * http://datatables.net/plug-ins/sorting#hidden_title_string
304  */
305 jQuery.extend( jQuery.fn.dataTableExt.oSort, {
306     "title-string-pre": function ( a ) {
307         var m = a.match(/title="(.*?)"/);
308         if ( null !== m && m.length ) {
309             return m[1].toLowerCase();
310         }
311         return "";
312     },
313
314     "title-string-asc": function ( a, b ) {
315         return ((a < b) ? -1 : ((a > b) ? 1 : 0));
316     },
317
318     "title-string-desc": function ( a, b ) {
319         return ((a < b) ? 1 : ((a > b) ? -1 : 0));
320     }
321 } );
322
323 (function() {
324
325     /* Plugin to allow text sorting to ignore articles
326      *
327      * In DataTables config:
328      *     "aoColumns": [
329      *        { "sType": "anti-the" },
330      *      ]
331      * Based on the plugin found here:
332      * http://datatables.net/plug-ins/sorting#anti_the
333      * Modified to exclude HTML tags from sorting
334      * Extended to accept a string of space-separated articles
335      * from a configuration file (in English, "a," "an," and "the")
336      */
337
338     var config_exclude_articles_from_sort = __('a an the');
339     if (config_exclude_articles_from_sort){
340         var articles = config_exclude_articles_from_sort.split(" ");
341         var rpattern = "";
342         for(i=0;i<articles.length;i++){
343             rpattern += "^" + articles[i] + " ";
344             if(i < articles.length - 1){ rpattern += "|"; }
345         }
346         var re = new RegExp(rpattern, "i");
347     }
348
349     jQuery.extend( jQuery.fn.dataTableExt.oSort, {
350         "anti-the-pre": function ( a ) {
351             var x = String(a).replace( /<[\s\S]*?>/g, "" );
352             var y = x.trim();
353             var z = y.replace(re, "").toLowerCase();
354             return z;
355         },
356
357         "anti-the-asc": function ( a, b ) {
358             return ((a < b) ? -1 : ((a > b) ? 1 : 0));
359         },
360
361         "anti-the-desc": function ( a, b ) {
362             return ((a < b) ? 1 : ((a > b) ? -1 : 0));
363         }
364     });
365
366 }());
367
368 // Remove string between NSB NSB characters
369 $.fn.dataTableExt.oSort['nsb-nse-asc'] = function(a,b) {
370     var pattern = new RegExp("\x88.*\x89");
371     a = a.replace(pattern, "");
372     b = b.replace(pattern, "");
373     return (a > b) ? 1 : ((a < b) ? -1 : 0);
374 }
375 $.fn.dataTableExt.oSort['nsb-nse-desc'] = function(a,b) {
376     var pattern = new RegExp("\x88.*\x89");
377     a = a.replace(pattern, "");
378     b = b.replace(pattern, "");
379     return (b > a) ? 1 : ((b < a) ? -1 : 0);
380 }
381
382 /* Define two custom functions (asc and desc) for basket callnumber sorting */
383 jQuery.fn.dataTableExt.oSort['callnumbers-asc']  = function(x,y) {
384         var x_array = x.split("<div>");
385         var y_array = y.split("<div>");
386
387         /* Pop the first elements, they are empty strings */
388         x_array.shift();
389         y_array.shift();
390
391         x_array = jQuery.map( x_array, function( a ) {
392             return parse_callnumber( a );
393         });
394         y_array = jQuery.map( y_array, function( a ) {
395             return parse_callnumber( a );
396         });
397
398         x_array.sort();
399         y_array.sort();
400
401         x = x_array.shift();
402         y = y_array.shift();
403
404         if ( !x ) { x = ""; }
405         if ( !y ) { y = ""; }
406
407         return ((x < y) ? -1 : ((x > y) ?  1 : 0));
408 };
409
410 jQuery.fn.dataTableExt.oSort['callnumbers-desc'] = function(x,y) {
411         var x_array = x.split("<div>");
412         var y_array = y.split("<div>");
413
414         /* Pop the first elements, they are empty strings */
415         x_array.shift();
416         y_array.shift();
417
418         x_array = jQuery.map( x_array, function( a ) {
419             return parse_callnumber( a );
420         });
421         y_array = jQuery.map( y_array, function( a ) {
422             return parse_callnumber( a );
423         });
424
425         x_array.sort();
426         y_array.sort();
427
428         x = x_array.pop();
429         y = y_array.pop();
430
431         if ( !x ) { x = ""; }
432         if ( !y ) { y = ""; }
433
434         return ((x < y) ?  1 : ((x > y) ? -1 : 0));
435 };
436
437 function parse_callnumber ( html ) {
438     var array = html.split('<span class="callnumber">');
439     if ( array[1] ) {
440         array = array[1].split('</span>');
441         return array[0];
442     } else {
443         return "";
444     }
445 }
446
447 // see http://www.datatables.net/examples/advanced_init/footer_callback.html
448 function footer_column_sum( api, column_numbers ) {
449     // Remove the formatting to get integer data for summation
450     var intVal = function ( i ) {
451         if ( typeof i === 'number' ) {
452             if ( isNaN(i) ) return 0;
453             return i;
454         } else if ( typeof i === 'string' ) {
455             var value = i.replace(/[a-zA-Z ,.]/g, '')*1;
456             if ( isNaN(value) ) return 0;
457             return value;
458         }
459         return 0;
460     };
461
462
463     for ( var indice = 0 ; indice < column_numbers.length ; indice++ ) {
464         var column_number = column_numbers[indice];
465
466         var total = 0;
467         var cells = api.column( column_number, { page: 'current' } ).nodes().to$().find("span.total_amount");
468         var budgets_totaled = [];
469         $(cells).each(function(){ budgets_totaled.push( $(this).data('self_id') ); });
470         $(cells).each(function(){
471             if( $(this).data('parent_id') && $.inArray( $(this).data('parent_id'), budgets_totaled) > -1 ){
472                 return;
473             } else {
474                 total += intVal( $(this).html() );
475             }
476
477         });
478         total /= 100; // Hard-coded decimal precision
479
480         // Update footer
481         $( api.column( column_number ).footer() ).html(total.format_price());
482     };
483 }
484
485 function filterDataTable( table, column, term ){
486     if( column ){
487         table.column( column ).search( term ).draw("page");
488     } else {
489         table.search( term ).draw("page");
490     }
491 }
492
493 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) {
494     if ( settings && settings.jqXHR ) {
495         console.log("Got %s (%s)".format(settings.jqXHR.status, settings.jqXHR.statusText));
496         alert(__("Something went wrong when loading the table.\n%s: %s. \n%s").format(
497             settings.jqXHR.status,
498             settings.jqXHR.statusText,
499             ( settings.jqXHR.responseJSON && settings.jqXHR.responseJSON.errors ) ? settings.jqXHR.responseJSON.errors.map(m => m.message).join("\n") : ''
500         ));
501     } else {
502         alert(__("Something went wrong when loading the table."));
503     }
504     console.log(message);
505 };
506
507 (function($) {
508
509     /**
510     * Create a new dataTables instance that uses the Koha RESTful API's as a data source
511     * @param  {Object}  options         Please see the dataTables documentation for further details
512     *                                   We extend the options set with the `criteria` key which allows
513     *                                   the developer to select the match type to be applied during searches
514     *                                   Valid keys are: `contains`, `starts_with`, `ends_with` and `exact`
515     * @param  {Object}  table_settings The arrayref as returned by TableSettings.GetTableSettings function available
516     *                                   from the columns_settings template toolkit include
517     * @param  {Boolean} add_filters     Add a filters row as the top row of the table
518     * @param  {Object}  default_filters Add a set of default search filters to apply at table initialisation
519     * @return {Object}                  The dataTables instance
520     */
521     $.fn.kohaTable = function(options, table_settings, add_filters, default_filters) {
522         var settings = null;
523
524         if(options) {
525             if(!options.criteria || ['contains', 'starts_with', 'ends_with', 'exact'].indexOf(options.criteria.toLowerCase()) === -1) options.criteria = 'contains';
526             options.criteria = options.criteria.toLowerCase();
527
528             // Don't redefine the default initComplete
529             if ( options.initComplete ) {
530                 let our_initComplete = options.initComplete;
531                 options.initComplete = function(settings, json){
532                     our_initComplete(settings, json);
533                     dataTablesDefaults.initComplete(settings, json)
534                 };
535             }
536
537             settings = $.extend(true, {}, dataTablesDefaults, {
538                         'deferRender': true,
539                         "paging": true,
540                         'serverSide': true,
541                         'searching': true,
542                         'pagingType': 'full_numbers',
543                         'processing': true,
544                         'language': {
545                             'emptyTable': (options.emptyTable) ? options.emptyTable : __("No data available in table")
546                         },
547                         'ajax': {
548                             'type': 'GET',
549                             'cache': true,
550                             'dataSrc': 'data',
551                             'beforeSend': function(xhr, settings) {
552                                 this._xhr = xhr;
553                                 if(options.embed) {
554                                     xhr.setRequestHeader('x-koha-embed', Array.isArray(options.embed)?options.embed.join(','):options.embed);
555                                 }
556                             },
557                             'dataFilter': function(data, type) {
558                                 var json = {data: JSON.parse(data)};
559                                 if (total = this._xhr.getResponseHeader('x-total-count')) {
560                                     json.recordsTotal = total;
561                                     json.recordsFiltered = total;
562                                 }
563                                 if (total = this._xhr.getResponseHeader('x-base-total-count')) {
564                                     json.recordsTotal = total;
565                                 }
566                                 if (draw = this._xhr.getResponseHeader('x-koha-request-id')) {
567                                     json.draw = draw;
568                                 }
569
570                                 return JSON.stringify(json);
571                             },
572                             'data': function( data, settings ) {
573                                 var length = data.length;
574                                 var start  = data.start;
575
576                                 var dataSet = {
577                                     _page: Math.floor(start/length) + 1,
578                                     _per_page: length
579                                 };
580
581                                 function build_query(col, value){
582
583                                     var parts = [];
584                                     var attributes = col.data.split(':');
585                                     for (var i=0;i<attributes.length;i++){
586                                         var part = {};
587                                         var attr = attributes[i];
588                                         let criteria = options.criteria;
589                                         if ( value === 'special:undefined' ) {
590                                             value = null;
591                                             criteria = "exact";
592                                         }
593                                         if ( value !== null ) {
594                                             if ( value.match(/^\^(.*)\$$/) ) {
595                                                 value = value.replace(/^\^/, '').replace(/\$$/, '');
596                                                 criteria = "exact";
597                                             } else {
598                                                 // escape SQL LIKE special characters %
599                                                 value = value.replace(/(\%|\\)/g, "\\$1");
600                                             }
601                                         }
602                                         part[!attr.includes('.')?'me.'+attr:attr] = criteria === 'exact'
603                                             ? value
604                                             : {like: (['contains', 'ends_with'].indexOf(criteria) !== -1?'%':'') + value + (['contains', 'starts_with'].indexOf(criteria) !== -1?'%':'')};
605                                         parts.push(part);
606                                     }
607                                     return parts;
608                                 }
609
610                                 var filter = data.search.value;
611                                 // Build query for each column filter
612                                 var and_query_parameters = settings.aoColumns
613                                 .filter(function(col) {
614                                     return col.bSearchable && typeof col.data == 'string' && data.columns[col.idx].search.value != ''
615                                 })
616                                 .map(function(col) {
617                                     var value = data.columns[col.idx].search.value;
618                                     return build_query(col, value)
619                                 })
620                                 .map(function r(e){
621                                     return ($.isArray(e) ? $.map(e, r) : e);
622                                 });
623
624                                 // Build query for the global search filter
625                                 var or_query_parameters = settings.aoColumns
626                                 .filter(function(col) {
627                                     return col.bSearchable && filter != ''
628                                 })
629                                 .map(function(col) {
630                                     var value = filter;
631                                     return build_query(col, value)
632                                 })
633                                 .map(function r(e){
634                                     return ($.isArray(e) ? $.map(e, r) : e);
635                                 });
636
637                                 if ( default_filters ) {
638                                     let additional_filters = {};
639                                     for ( f in default_filters ) {
640                                         let k; let v;
641                                         if ( typeof(default_filters[f]) === 'function' ) {
642                                             let val = default_filters[f]();
643                                             if ( val != undefined && val != "" ) {
644                                                 k = f; v = val;
645                                             }
646                                         } else {
647                                             k = f; v = default_filters[f];
648                                         }
649
650                                         // Pass to -or if you want a separate OR clause
651                                         // It's not the usual DBIC notation!
652                                         if ( f == '-or' ) {
653                                             if (v) or_query_parameters.push(v)
654                                         } else if ( f == '-and' ) {
655                                             if (v) and_query_parameters.push(v)
656                                         } else if ( v ) {
657                                             additional_filters[k] = v;
658                                         }
659                                     }
660                                     if ( Object.keys(additional_filters).length ) {
661                                         and_query_parameters.push(additional_filters);
662                                     }
663                                 }
664                                 query_parameters = and_query_parameters;
665                                 if ( or_query_parameters.length) {
666                                     query_parameters.push(or_query_parameters);
667                                 }
668
669                                 if(query_parameters.length) {
670                                     query_parameters = JSON.stringify(query_parameters.length === 1?query_parameters[0]:{"-and": query_parameters});
671                                     dataSet.q = query_parameters;
672                                     delete options.query_parameters;
673                                 } else {
674                                     delete options.query_parameters;
675                                 }
676
677                                 dataSet._match = options.criteria;
678
679                                 if ( data["draw"] !== undefined ) {
680                                     settings.ajax.headers = { 'x-koha-request-id': data.draw }
681                                 }
682
683                                 if(options.columns) {
684                                     var order = data.order;
685                                     var orderArray = new Array();
686                                     order.forEach(function (e,i) {
687                                         var order_col      = e.column;
688                                         var order_by       = options.columns[order_col].data;
689                                         order_by           = order_by.split(':');
690                                         var order_dir      = e.dir == 'asc' ? '+' : '-';
691                                         Array.prototype.push.apply(orderArray,order_by.map(x => order_dir + (!x.includes('.')?'me.'+x:x)));
692                                     });
693                                     dataSet._order_by = orderArray.filter((v, i, a) => a.indexOf(v) === i).join(',');
694                                 }
695
696                                 return dataSet;
697                             }
698                         }
699                     }, options);
700         }
701
702         var counter = 0;
703         var hidden_ids = [];
704         var included_ids = [];
705
706
707         if ( table_settings ) {
708             var columns_settings = table_settings['columns'];
709             $(columns_settings).each( function() {
710                 var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', this ).index( 'th' );
711                 var used_id = settings.bKohaColumnsUseNames ? named_id : counter;
712                 if ( used_id == -1 ) return;
713
714                 if ( this['is_hidden'] == "1" ) {
715                     hidden_ids.push( used_id );
716                 }
717                 if ( this['cannot_be_toggled'] == "0" ) {
718                     included_ids.push( used_id );
719                 }
720                 counter++;
721             });
722         }
723
724         var exportColumns = ":visible:not(.noExport)";
725         if( settings.hasOwnProperty("exportColumns") ){
726             // A custom buttons configuration has been passed from the page
727             exportColumns = settings["exportColumns"];
728         }
729
730         var export_format = {
731             body: function ( data, row, column, node ) {
732                 var newnode = $(node);
733
734                 if ( newnode.find(".noExport").length > 0 ) {
735                     newnode = newnode.clone();
736                     newnode.find(".noExport").remove();
737                 }
738
739                 return newnode.text().replace( /\n/g, ' ' ).trim();
740             }
741         }
742
743         var export_buttons = [
744             {
745                 extend: 'excelHtml5',
746                 text: __("Excel"),
747                 exportOptions: {
748                     columns: exportColumns,
749                     format:  export_format
750                 },
751             },
752             {
753                 extend: 'csvHtml5',
754                 text: __("CSV"),
755                 exportOptions: {
756                     columns: exportColumns,
757                     format:  export_format
758                 },
759             },
760             {
761                 extend: 'copyHtml5',
762                 text: __("Copy"),
763                 exportOptions: {
764                     columns: exportColumns,
765                     format:  export_format
766                 },
767             },
768             {
769                 extend: 'print',
770                 text: __("Print"),
771                 exportOptions: {
772                     columns: exportColumns,
773                     format:  export_format
774                 },
775             }
776         ];
777
778         settings[ "buttons" ] = [
779             {
780                 fade: 100,
781                 className: "dt_button_clear_filter",
782                 titleAttr: __("Clear filter"),
783                 enabled: false,
784                 text: '<i class="fa fa-lg fa-remove"></i> <span class="dt-button-text">' + __("Clear filter") + '</span>',
785                 action: function ( e, dt, node, config ) {
786                     dt.search( "" ).draw("page");
787                     node.addClass("disabled");
788                 }
789             }
790         ];
791
792         if( included_ids.length > 0 ){
793             settings[ "buttons" ].push(
794                 {
795                     extend: 'colvis',
796                     fade: 100,
797                     columns: included_ids,
798                     className: "columns_controls",
799                     titleAttr: __("Columns settings"),
800                     text: '<i class="fa fa-lg fa-gear"></i> <span class="dt-button-text">' + __("Columns") + '</span>',
801                     exportOptions: {
802                         columns: exportColumns
803                     }
804                 }
805             );
806         }
807
808         settings[ "buttons" ].push(
809             {
810                 extend: 'collection',
811                 autoClose: true,
812                 fade: 100,
813                 className: "export_controls",
814                 titleAttr: __("Export or print"),
815                 text: '<i class="fa fa-lg fa-download"></i> <span class="dt-button-text">' + __("Export") + '</span>',
816                 buttons: export_buttons
817             }
818         );
819
820         if ( table_settings && CAN_user_parameters_manage_column_config ) {
821             settings[ "buttons" ].push(
822                 {
823                     className: "dt_button_configure_table",
824                     fade: 100,
825                     titleAttr: __("Configure table"),
826                     text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + __("Configure") + '</span>',
827                     action: function() {
828                         window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
829                     },
830                 }
831             );
832         }
833
834         $(".dt_button_clear_filter, .columns_controls, .export_controls, .dt_button_configure_table").tooltip();
835
836         if ( add_filters ) {
837             settings['orderCellsTop'] = true;
838         }
839
840         if ( table_settings ) {
841             if ( table_settings.hasOwnProperty('default_display_length') && table_settings['default_display_length'] != null ) {
842                 settings["pageLength"] = table_settings['default_display_length'];
843             }
844             if ( table_settings.hasOwnProperty('default_sort_order') && table_settings['default_sort_order'] != null ) {
845                 settings["order"] = [[ table_settings['default_sort_order'], 'asc' ]];
846             }
847         }
848
849         var table = $(this).dataTable(settings);
850
851
852         if ( add_filters ) {
853             var table_dt = table.DataTable();
854
855             $(this).find('thead tr').clone().appendTo( $(this).find('thead') );
856
857             $(this).find('thead tr:eq(1) th').each( function (i) {
858                 var is_searchable = table_dt.settings()[0].aoColumns[i].bSearchable;
859                 $(this).removeClass('sorting').removeClass("sorting_asc").removeClass("sorting_desc");
860                 $(this).data('th-id', i);
861                 if ( is_searchable ) {
862                     let input_type = 'input';
863                     if ( $(this).data('filter') ) {
864                         input_type = 'select'
865                         let filter_type = $(this).data('filter');
866                         var existing_search = table_dt.column(i).search();
867                         let select = $('<select><option value=""></option></select');
868
869                         // FIXME eval here is bad and dangerous, how do we workaround that?
870                         $(eval(filter_type)).each(function(){
871                             let o = $('<option value="%s">%s</option>'.format(this._id, this._str));
872                             if ( existing_search === this._id ) {
873                                 o.prop("selected", "selected");
874                             }
875                             o.appendTo(select);
876                         });
877                         $(this).html( select );
878                     } else {
879                         var title = $(this).text();
880                         var existing_search = table_dt.column(i).search();
881                         if ( existing_search ) {
882                             $(this).html( '<input type="text" value="%s" style="width: 100%" />'.format(existing_search) );
883                         } else {
884                             var search_title = __("%s search").format(title);
885                             $(this).html( '<input type="text" placeholder="%s" style="width: 100%" />'.format(search_title) );
886                         }
887                     }
888
889                     $( input_type, this ).on( 'keyup change', function () {
890                         if ( table_dt.column(i).search() !== this.value ) {
891                             if ( input_type == "input" ) {
892                                 table_dt
893                                     .column(i)
894                                     .search( this.value )
895                                     .draw();
896                             } else {
897                                 table_dt
898                                     .column(i)
899                                     .search( this.value.length ? '^'+this.value+'$' : '', true, false )
900                                     .draw();
901                             }
902                         }
903                     } );
904                 } else {
905                     $(this).html('');
906                 }
907             } );
908         }
909
910         table.DataTable().on("column-visibility.dt", function(){
911             if ( add_filters ) {
912                 let visible_columns = table_dt.columns().visible();
913                 $(table).find('thead tr:eq(1) th').each( function (i) {
914                     let th_id = $(this).data('th-id');
915                     if ( visible_columns[th_id] == false ) {
916                         $(this).hide();
917                     } else {
918                         $(this).show();
919                     }
920                 });
921             }
922
923             if( typeof columnsInit == 'function' ){
924                 // This function can be created separately and used to trigger
925                 // an event after the DataTable has loaded AND column visibility
926                 // has been updated according to the table's configuration
927                 columnsInit();
928             }
929         }).columns( hidden_ids ).visible( false );
930
931         return table;
932     };
933
934 })(jQuery);