Add numeric sort for column Users

pull/7/head
mdPlusPlus 2 years ago
parent 931cb4d719
commit 0c9cf6722d

@ -572,9 +572,9 @@
// test if active_users is valid // test if active_users is valid
$active_users = $content["active_users"]; $active_users = $content["active_users"];
if($active_users == -1) { /*if($active_users == -1) {
$active_users = "N/A"; $active_users = "N/A"; // this breaks sortTable()
} }*/
$line = $line =
" <tr>" . PHP_EOL . " <tr>" . PHP_EOL .

@ -1,58 +1,66 @@
function copyToClipboard(text) { function copyToClipboard(text) {
navigator.clipboard.writeText(text); navigator.clipboard.writeText(text);
} }
function sortTable(n) { function sortTable(n) {
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0; var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
table = document.getElementById("tbl_communities"); table = document.getElementById("tbl_communities");
switching = true; switching = true;
// Set the sorting direction to ascending: // Set the sorting direction to ascending:
dir = "asc"; dir = "asc";
/* Make a loop that will continue until /* Make a loop that will continue until
no switching has been done: */ no switching has been don*e: */
while (switching) { while (switching) {
// Start by saying: no switching is done: // Start by saying: no switching is done:
switching = false; switching = false;
rows = table.rows; rows = table.rows;
/* Loop through all table rows (except the // Loop through all table rows (except the first, which contains table headers):
first, which contains table headers): */ for (i = 1; i < (rows.length - 1); i++) {
for (i = 1; i < (rows.length - 1); i++) { // Start by saying there should be no switching:
// Start by saying there should be no switching: shouldSwitch = false;
shouldSwitch = false; // Get the two elements you want to compare, one from current row and one from the next:
/* Get the two elements you want to compare, x = rows[i].getElementsByTagName("TD")[n];
one from current row and one from the next: */ y = rows[i + 1].getElementsByTagName("TD")[n];
x = rows[i].getElementsByTagName("TD")[n]; // Check if the two rows should switch place, based on the direction, asc or desc:
y = rows[i + 1].getElementsByTagName("TD")[n]; if (dir == "asc") {
/* Check if the two rows should switch place, // If columns is users (3), sort numerically
based on the direction, asc or desc: */ if ( n == 3 ) {
if (dir == "asc") { if (Number(x.innerHTML) > Number(y.innerHTML)) {
if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { shouldSwitch = true;
// If so, mark as a switch and break the loop: break;
shouldSwitch = true; }
break; } else if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {
} // If so, mark as a switch and break the loop:
} else if (dir == "desc") { shouldSwitch = true;
if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) { break;
// If so, mark as a switch and break the loop: }
shouldSwitch = true; }
break; else if (dir == "desc") {
} if ( n == 3 ) {
} // If columns is users (3), sort numerically
} if (Number(x.innerHTML) < Number(y.innerHTML)) {
if (shouldSwitch) { shouldSwitch = true;
/* If a switch has been marked, make the switch break;
and mark that a switch has been done: */ }
rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); } else if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {
switching = true; // If so, mark as a switch and break the loop:
// Each time a switch is done, increase this count by 1: shouldSwitch = true;
switchcount ++; break;
} else { }
/* If no switching has been done AND the direction is "asc", }
set the direction to "desc" and run the while loop again. */ }
if (switchcount == 0 && dir == "asc") { if (shouldSwitch) {
dir = "desc"; // If a switch has been marked, make the switch and mark that a switch has been done:
switching = true; rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);
} switching = true;
} // Each time a switch is done, increase this count by 1:
} switchcount ++;
} else {
// If no switching has been done AND the direction is "asc", set the direction to "desc" and run the while loop again.
if (switchcount == 0 && dir == "asc") {
dir = "desc";
switching = true;
}
}
}
} }

Loading…
Cancel
Save