-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebTableSort.user.js
More file actions
420 lines (302 loc) · 9.24 KB
/
webTableSort.user.js
File metadata and controls
420 lines (302 loc) · 9.24 KB
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// ==UserScript==
// @name Web Tables Sort
// @version 1.0.0
// @description A script to add buttons to `th` elements for sorting tables in a web page
// @author Alexandre Eliot
// @grant none
// @match https://*/*
// @match http://*/*
// ==/UserScript==
(function () {
'use strict';
const UTF_ARROW_UP = "▲";
const UTF_ARROW_DOWN = "▼";
const COLORS = {
active: "grey",
hovered: "hsl(0deg 0% 50% / 20%)",
};
const listenersMap = new Map();
const globalState = new Map();
function initializeState(key) {
globalState.set(key, new Map());
return globalState.get(key);
}
function bindListener(element, eventType, key, eventListener) {
const listenerKey = [eventType, key].join();
if (!listenersMap.has(listenerKey)) {
listenersMap.delete(listenerKey);
}
element.addEventListener(eventType, eventListener);
listenersMap.set(listenerKey, () => {
element.removeEventListener(eventType, eventListener)
});
}
const factorByFormat = {
'g': 1000000000,
'm': 1000000,
'k': 1000
}
function getValueForElement(element) {
let value = -1;
let textElement, multiplier = 1;
const elts = element.querySelectorAll('span,a');
if (elts && elts.length > 0) {
textElement = elts[0];
} else {
textElement = element;
}
if (!textElement) return value;
const textValue = textElement.innerText.trim().replace(/\s*/g, '');
const numericalValue = textValue.replace(/[^\d(.|,)\d]*/g, '').replace(/\,/, '.');
const isNumeric = numericalValue.length + 1 > (textValue.length / 2)
if (isNumeric) {
const numeric = numericalValue;
const lowerCaseText = textValue.toLowerCase();
const foundFactor = Object.entries(factorByFormat).find(([key]) => {
return lowerCaseText.indexOf(key) > -1
})
if (foundFactor) {
multiplier = foundFactor[1];
}
value = Number.parseInt(numeric) * multiplier;
} else {
value = textValue.toLowerCase();
}
return value;
}
function getLastParent(parent) {
let lastParent = parent;
while (lastParent.childElementCount > 0 && lastParent.childElementCount < 2) {
lastParent = lastParent.firstElementChild;
}
return lastParent;
}
function getTableBody(table) {
let tableBody = table.getElementsByTagName('tbody')[0];
if (!tableBody) {
tableBody = getLastParent(table);
}
return tableBody
}
function findThInElements(elements) {
let found = null, index = 0;
while (!found && index < elements.length) {
if (elements[index].tagName === 'TH') {
found = elements[index];
}
}
}
function sortTable(table, sortDirection, indexCol) {
const tableBody = getTableBody(table)
const lines = tableBody.getElementsByTagName('tr');
const linesWithoutTh = [];
// filter out lines containing th elements
iterateOverElements(lines, (line) => {
const thElements = line.querySelectorAll('th');
if (thElements.length < 1) {
linesWithoutTh.push(line)
}
});
let elementsInfos = [];
linesWithoutTh.forEach((line) => {
const tdSortedBy = line.getElementsByTagName('td')[indexCol];
if (tdSortedBy) {
const value = getValueForElement(tdSortedBy);
elementsInfos.push({
element: line,
value,
})
}
})
tableBody.innerHTML = '';
elementsInfos.sort((a, b) => {
if (typeof b.value === 'number' && typeof a.value === 'number') {
return (b.value - a.value) * sortDirection
} else {
return String(b.value).localeCompare(a.value) * sortDirection
}
}).forEach((info) => {
tableBody.appendChild(info.element)
})
}
function SortButton(
key,
{
sortDirection,
onClick,
}
) {
const button = document.createElement('button');
button.classList.add('sort-button');
const iconSpan = document.createElement('span');
button.appendChild(iconSpan);
if (sortDirection !== 0) {
button.classList.add('active');
}
if (sortDirection > 0) {
iconSpan.innerHTML = UTF_ARROW_UP;
} else {
iconSpan.innerHTML = UTF_ARROW_DOWN;
}
bindListener(button, 'click', key, onClick)
return button;
}
function initTable(key, table) {
let state = globalState.get(key);
if (!state) {
state = initializeState(key);
}
function stateHas(k) {
return state.has(k);
}
function stateGet(k) {
return state.get(k);
}
function stateSet(...keyValues) {
keyValues.forEach(([key, value]) => {
state.set(key, value);
})
update();
}
const elements = new Set();
function updateSortIndex(indexCol) {
let newSortDirection;
if (
stateHas('sortDirection') &&
stateHas('sortedColumnIndex') &&
stateGet('sortedColumnIndex') === indexCol
) {
newSortDirection = stateGet('sortDirection') * -1;
} else {
newSortDirection = 1;
}
stateSet(
['sortedColumnIndex', indexCol],
['sortDirection', newSortDirection]
);
}
function update() {
elements.forEach((element) => {
element.remove();
})
elements.clear();
renderSortButtons();
sortTable(table, stateGet('sortDirection'), stateGet('sortedColumnIndex'));
}
function renderSortButtons() {
const firstContainer = table.firstElementChild;
const lastParent = getLastParent(firstContainer);
const colTitleElementsSet = new Set();
const colTitleElements = [
firstContainer.querySelectorAll(`thead th`),
lastParent.querySelectorAll(`th`),
lastParent.querySelectorAll(`[class*="row"] [class*="head"]`),
];
colTitleElements.forEach((elements) => {
iterateOverElements(elements, (element) => {
colTitleElementsSet.add(element)
})
});
if (colTitleElementsSet.size < 2) return -1;
let index = -1;
colTitleElementsSet.forEach((elt) => {
index++;
let sortDirection = 0;
if (
stateHas('sortedColumnIndex') &&
stateGet('sortedColumnIndex') === index
) {
sortDirection = stateGet('sortDirection');
}
const onClick = () => {
updateSortIndex(index);
}
const sortButton = SortButton(
`sort-button-${index}`,
{
sortDirection,
onClick,
}
);
elements.add(sortButton);
elt.appendChild(sortButton);
})
}
renderSortButtons();
}
function addStyle() {
const styleElement = document.createElement('style');
const style = `
.sort-button {
padding: 0.1em;
margin-left: 0.3em;
appearance: none;
border: none;
border-radius: 0.5em;
}
.sort-button.active {
color: ${COLORS.active};
}
.sort-button:hover {
background-color: ${COLORS.hovered};
}
`;
styleElement.innerText = style;
let headElement = document.querySelector('head');
if (!headElement) {
headElement = document.createElement('head');
document.body.appendChild(headElement);
}
headElement.appendChild(styleElement);
}
function iterateOverElements(elements, iteratee) {
for (let index = 0; index < elements.length; index++) {
iteratee(elements[index], index, elements);
}
}
function removeDuplicatesWithinSet(elementsSet) {
// const elementsToCheck = [element];
// while (found.childElementCount > 0 && found.childElementCount < 2) {
// if (elementsSet.has(found)) {
// elementsSet.remove(found)
// }
// found = found.firstElementChild;
// }
// return found;
elementsSet.forEach((element) => {
elementsSet.forEach((elt) => {
if (element !== elt) {
if (element.contains(elt)) {
elementsSet.delete(elt);
} else if (elt.contains(element)) {
elementsSet.delete(element);
}
}
})
});
}
function findTables() {
const tables = new Set();
const tablesElements = [
document.getElementsByTagName('table'),
document.querySelectorAll(`[role^="table"]`),
//document.querySelectorAll(`[class*="table"]:not([class*="head"]):not([class*="row"]):not([class*="col"]):not([class*="container"])`),
];
tablesElements.forEach((elements) => {
iterateOverElements(elements, (element) => {
tables.add(element)
})
})
return tables;
}
function init() {
addStyle();
const tables = findTables();
removeDuplicatesWithinSet(tables)
let index = 0;
tables.forEach((table) => {
initTable(`table-${index++}`, table);
})
}
init();
})();