summaryrefslogtreecommitdiffstats
path: root/modules-available/js_stupidtable/clientscript.js
blob: 0baa15461ed097330a92899a581ff67f3c9cbbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/*
 Stupid jQuery table plugin. v1.1.3

 https://github.com/joequery/Stupid-Table-Plugin

 Copyright (c) 2012-2017 Joseph McCullough

 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 */

(function($) {
	$.fn.stupidtable = function(sortFns) {
		return this.each(function() {
			var $table = $(this);
			sortFns = sortFns || {};
			sortFns = $.extend({}, $.fn.stupidtable.default_sort_fns, sortFns);
			$table.data('sortFns', sortFns);
			$table.stupidtable_build();

			$table.on("click.stupidtable", "thead th", function() {
				$(this).stupidsort();
			});

			// OpenSLX -- sort arrow; pointer cursor
			var $sortThs = $table.find('th[data-sort]');
			$sortThs.addClass('slx-pointer').append('<span class="glyphicon glyphicon-chevron-up sortarrow invisible"></span>');
			var $arrows = $sortThs.find('.sortarrow');
			var dir = $.fn.stupidtable.dir;
			$table.on("aftertablesort", function (e, data) {
				$arrows.addClass('invisible');
				var addArrow = data.direction !== dir.ASC ? "down" : "up";
				var remArrow = data.direction === dir.ASC ? "down" : "up";
				console.log(data);
				data.$th.find('.sortarrow').removeClass('invisible glyphicon-chevron-' + remArrow).addClass('glyphicon-chevron-' + addArrow);
			});
			// End OpenSLX

			// Sort th immediately if data-sort-onload="yes" is specified. Limit to
			// the first one found - only one default sort column makes sense anyway.
			var $th_onload_sort = $table.find("th[data-sort-onload=yes]").eq(0);
			$th_onload_sort.stupidsort();
		});
	};

	// ------------------------------------------------------------------
	// Default settings
	// ------------------------------------------------------------------
	$.fn.stupidtable.default_settings = {
		should_redraw: function(sort_info){
			return true;
		},
		will_manually_build_table: true // OpenSLX
	};
	$.fn.stupidtable.dir = {ASC: "asc", DESC: "desc"};
	$.fn.stupidtable.default_sort_fns = {
		"int": function(a, b) {
			return parseInt(a, 10) - parseInt(b, 10);
		},
		"float": function(a, b) {
			return parseFloat(a) - parseFloat(b);
		},
		"string": function(a, b) {
			return a.toString().localeCompare(b.toString());
		},
		"string-ins": function(a, b) {
			a = a.toString().toLocaleLowerCase();
			b = b.toString().toLocaleLowerCase();
			return a.localeCompare(b);
		},
		// OpenSLX -- IPv4 sort function
		"ipv4":function(a,b){
			var aa = a.split(".");
			var bb = b.split(".");

			var resulta = aa[0]*0x1000000 + aa[1]*0x10000 + aa[2]*0x100 + aa[3]*1;
			var resultb = bb[0]*0x1000000 + bb[1]*0x10000 + bb[2]*0x100 + bb[3]*1;

			return resulta-resultb;
		}
	};

	// Allow specification of settings on a per-table basis. Call on a table
	// jquery object. Call *before* calling .stuidtable();
	$.fn.stupidtable_settings = function(settings) {
		return this.each(function() {
			var $table = $(this);
			var final_settings = $.extend({}, $.fn.stupidtable.default_settings, settings);
			$table.stupidtable.settings = final_settings;
		});
	};


	// Expects $("#mytable").stupidtable() to have already been called.
	// Call on a table header.
	$.fn.stupidsort = function(force_direction){
		var $this_th = $(this);
		var datatype = $this_th.data("sort") || null;

		// No datatype? Nothing to do.
		if (datatype === null) {
			return;
		}

		var dir = $.fn.stupidtable.dir;
		var $table = $this_th.closest("table");

		var sort_info = {
			$th: $this_th,
			$table: $table,
			datatype: datatype
		};


		// Bring in default settings if none provided
		if(!$table.stupidtable.settings){
			$table.stupidtable.settings = $.extend({}, $.fn.stupidtable.default_settings);
		}

		sort_info.compare_fn = $table.data('sortFns')[datatype];
		sort_info.th_index = calculateTHIndex(sort_info);
		sort_info.sort_dir = calculateSortDir(force_direction, sort_info);

		$this_th.data("sort-dir", sort_info.sort_dir);
		$table.trigger("beforetablesort", {column: sort_info.th_index, direction: sort_info.sort_dir, $th: $this_th});

		// More reliable method of forcing a redraw
		$table.css("display");

		// OpenSLX -- decollapse table if we try to sort it
		var $decol = $table.find('.slx-decollapse');
		if ($decol.length > 0) {
			$decol.click();
			$decol.remove();
			if ($table.stupidtable.settings.will_manually_build_table) $table.stupidtable_build();
		}

		// Run sorting asynchronously on a timout to force browser redraw after
		// `beforetablesort` callback. Also avoids locking up the browser too much.
		setTimeout(function() {
			if(!$table.stupidtable.settings.will_manually_build_table){
				$table.stupidtable_build();
			}
			var table_structure = sortTable(sort_info);
			var trs = getTableRowsFromTableStructure(table_structure, sort_info);

			if(!$table.stupidtable.settings.should_redraw(sort_info)){
				return;
			}
			$table.children("tbody").append(trs);

			updateElementData(sort_info);
			$table.trigger("aftertablesort", {column: sort_info.th_index, direction: sort_info.sort_dir, $th: $this_th});
			$table.css("display");

		}, 10);
		return $this_th;
	};

	// Call on a sortable td to update its value in the sort. This should be the
	// only mechanism used to update a cell's sort value. If your display value is
	// different from your sort value, use jQuery's .text() or .html() to update
	// the td contents, Assumes stupidtable has already been called for the table.
	$.fn.updateSortVal = function(new_sort_val){
		var $this_td = $(this);
		if($this_td.is('[data-sort-value]')){
			// For visual consistency with the .data cache
			$this_td.attr('data-sort-value', new_sort_val);
		}
		$this_td.data("sort-value", new_sort_val);
		return $this_td;
	};


	$.fn.stupidtable_build = function(){
		return this.each(function() {
			var $table = $(this);
			var table_structure = [];
			var trs = $table.children("tbody").children("tr");
			trs.each(function(index,tr) {

				// ====================================================================
				// Transfer to using internal table structure
				// ====================================================================
				var ele = {
					$tr: $(tr),
					columns: [],
					index: index
				};

				$(tr).children('td').each(function(idx, td){
					var sort_val = $(td).data("sort-value");

					// Store and read from the .data cache for display text only sorts
					// instead of looking through the DOM every time
					if(typeof(sort_val) === "undefined"){
						var txt = $(td).text();
						$(td).data('sort-value', txt);
						sort_val = txt;
					}
					ele.columns.push(sort_val);
				});
				table_structure.push(ele);
			});
			$table.data('stupidsort_internaltable', table_structure);
		});
	};

	// ====================================================================
	// Private functions
	// ====================================================================
	var sortTable = function(sort_info){
		var table_structure = sort_info.$table.data('stupidsort_internaltable');
		var th_index = sort_info.th_index;
		var $th = sort_info.$th;

		var multicolumn_target_str = $th.data('sort-multicolumn');
		var multicolumn_targets;
		if(multicolumn_target_str){
			multicolumn_targets = multicolumn_target_str.split(',');
		}
		else{
			multicolumn_targets = [];
		}
		var multicolumn_th_targets = $.map(multicolumn_targets, function(identifier, i){
			return get_th(sort_info.$table, identifier);
		});

		table_structure.sort(function(e1, e2){
			var multicolumns = multicolumn_th_targets.slice(0); // shallow copy
			var diff = sort_info.compare_fn(e1.columns[th_index], e2.columns[th_index]);
			while(diff === 0 && multicolumns.length){
				var multicolumn = multicolumns[0];
				var datatype = multicolumn.$e.data("sort");
				var multiCloumnSortMethod = sort_info.$table.data('sortFns')[datatype];
				diff = multiCloumnSortMethod(e1.columns[multicolumn.index], e2.columns[multicolumn.index]);
				multicolumns.shift();
			}
			// Sort by position in the table if values are the same. This enforces a
			// stable sort across all browsers. See https://bugs.chromium.org/p/v8/issues/detail?id=90
			if (diff === 0)
				return e1.index - e2.index;
			else
				return diff;

		});

		if (sort_info.sort_dir != $.fn.stupidtable.dir.ASC){
			table_structure.reverse();
		}
		return table_structure;
	};

	var get_th = function($table, identifier){
		// identifier can be a th id or a th index number;
		var $table_ths = $table.find('th');
		var index = parseInt(identifier, 10);
		var $th;
		if(!index && index !== 0){
			$th = $table_ths.siblings('#' + identifier);
			index = $table_ths.index($th);
		}
		else{
			$th = $table_ths.eq(index);
		}
		return {index: index, $e: $th};
	};

	var getTableRowsFromTableStructure = function(table_structure, sort_info){
		// Gather individual column for callbacks
		var column = $.map(table_structure, function(ele, i){
			return [[ele.columns[sort_info.th_index], ele.$tr, i]];
		});

		/* Side effect */
		sort_info.column = column;

		// Replace the content of tbody with the sorted rows. Strangely
		// enough, .append accomplishes this for us.
		return $.map(table_structure, function(ele) { return ele.$tr; });

	};

	var updateElementData = function(sort_info){
		var $table = sort_info.$table;
		var $this_th = sort_info.$th;
		var sort_dir = $this_th.data('sort-dir');
		var th_index = sort_info.th_index;


		// Reset siblings
		$table.find("th").data("sort-dir", null).removeClass("sorting-desc sorting-asc");
		$this_th.data("sort-dir", sort_dir).addClass("sorting-"+sort_dir);
	};

	var calculateSortDir = function(force_direction, sort_info){
		var sort_dir;
		var $this_th = sort_info.$th;
		var dir = $.fn.stupidtable.dir;

		if(!!force_direction){
			sort_dir = force_direction;
		}
		else{
			sort_dir = force_direction || $this_th.data("sort-default") || dir.ASC;
			if ($this_th.data("sort-dir"))
				sort_dir = $this_th.data("sort-dir") === dir.ASC ? dir.DESC : dir.ASC;
		}
		return sort_dir;
	};

	var calculateTHIndex = function(sort_info){
		var th_index = 0;
		var base_index = sort_info.$th.index();
		sort_info.$th.parents("tr").find("th").slice(0, base_index).each(function() {
			var cols = $(this).attr("colspan") || 1;
			th_index += parseInt(cols,10);
		});
		return th_index;
	};

})(jQuery);

// OpenSLX -- apply to all elements with class stupidtable
document.addEventListener("DOMContentLoaded", function() {
	var table = $(".stupidtable");
	if (table.length) {
		table = table.stupidtable();
	}
});