Include sortByType and inverses in sorting types

This commit is contained in:
Gabriel Tofvesson 2024-10-12 23:15:30 +02:00
parent 70c55a42f0
commit 8ed9e48dfe

View File

@ -286,6 +286,10 @@ local PAGES = {
return _genSort(function(v) return v:getSimpleName() end, invert, tiebreaker)
end
local function sortByType(invert, tiebreaker)
return _genSort(function(v) return v:getName() end, invert, tiebreaker)
end
local function sortByDamage(invert, tiebreaker)
return _genSort(function(v)
local damage = v:getDamage()
@ -311,8 +315,12 @@ local PAGES = {
end
local SORT_MODE = {
composeSortFuncs(sortByCount, sortByName, sortByDamage),
composeSortFuncs(sortByName, sortByDamage, sortByCount)
composeSortFuncs(sortByCount, sortByName, sortByType, sortByDamage),
composeSortFuncs(sortByName, sortByType, sortByDamage, sortByCount),
composeSortFuncs(sortByType, sortByDamage, sortByCount, sortByName),
composeSortFuncs(sortByCount, true, sortByName, sortByType, sortByDamage),
composeSortFuncs(sortByName, true, sortByType, sortByDamage, sortByCount),
composeSortFuncs(sortByType, true, sortByDamage, sortByCount, sortByName)
}