mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-03 02:35:55 +02:00
fix list view sorting of string fields
This commit is contained in:
parent
fb2f7cf680
commit
9f56213d2f
@ -83,16 +83,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sort(stats, sorting, nameFilter) {
|
function sort(stats, sorting, nameFilter) {
|
||||||
const cmp =
|
const idCmp = sorting.direction == "up"
|
||||||
sorting.field == "id"
|
? (a, b) => b.id.localeCompare(a.id)
|
||||||
? sorting.direction == "up"
|
: (a, b) => a.id.localeCompare(b.id)
|
||||||
? (a, b) => a.id < b.id
|
|
||||||
: (a, b) => a.id > b.id
|
|
||||||
: sorting.direction == "up"
|
|
||||||
? (a, b) => a[sorting.field] - b[sorting.field]
|
|
||||||
: (a, b) => b[sorting.field] - a[sorting.field];
|
|
||||||
|
|
||||||
return stats.filter((u) => u.id.includes(nameFilter)).sort(cmp);
|
// "-50": Forces empty strings to the end of the list
|
||||||
|
const nameCmp = sorting.direction == "up"
|
||||||
|
? (a, b) => (a.name == '') ? -50 : b.name.localeCompare(a.name)
|
||||||
|
: (a, b) => (b.name == '') ? -50 : a.name.localeCompare(b.name)
|
||||||
|
|
||||||
|
const intCmp = sorting.direction == "up"
|
||||||
|
? (a, b) => a[sorting.field] - b[sorting.field]
|
||||||
|
: (a, b) => b[sorting.field] - a[sorting.field];
|
||||||
|
|
||||||
|
if (sorting.field == "id") {
|
||||||
|
return stats.filter((u) => u.id.includes(nameFilter)).sort(idCmp)
|
||||||
|
} else if (sorting.field == "name") {
|
||||||
|
return stats.filter((u) => u.id.includes(nameFilter)).sort(nameCmp)
|
||||||
|
} else {
|
||||||
|
return stats.filter((u) => u.id.includes(nameFilter)).sort(intCmp)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(() => filterComponent.updateFilters());
|
onMount(() => filterComponent.updateFilters());
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
project = ""
|
project = ""
|
||||||
jobName = ""
|
jobName = ""
|
||||||
user = ""
|
user = ""
|
||||||
termChanged(0, true);
|
termChanged(0);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user