Show used space instead of empty

This commit is contained in:
Gabriel Tofvesson 2024-10-26 19:51:53 +02:00
parent a0a7c96093
commit d294355a73

View File

@ -529,16 +529,19 @@ local PAGES = {
-- Set dynamic states for elements -- Set dynamic states for elements
sortButton:setText("<"..tostring(pageState.sortMode)..">") sortButton:setText("<"..tostring(pageState.sortMode)..">")
local totalCountStr = tostring(totalCount) local totalCountStr = tostring(totalCount)
local emptyCountStr = tostring(emptyCount) local availCount = totalCount - emptyCount
local availCountStr = tostring(availCount)
local storageSat = availCountStr / totalCount
storageSatProgress:setText( storageSatProgress:setText(
emptyCountStr.. (availCountStr)..
(" "):rep(math.max(0, math.floor(state.width / 2) - #emptyCountStr - 1)).. (" "):rep(math.max(0, math.floor(state.width / 2) - #availCountStr - 1))..
"/".. "/"..
(" "):rep(math.max(0, math.ceil(state.width / 2) - #totalCountStr)).. (" "):rep(math.max(0, math.ceil(state.width / 2) - #totalCountStr))..
totalCountStr totalCountStr
) )
storageSatProgress:setProgress(emptyCount / totalCount) storageSatProgress:setProgress(storageSat)
storageSatProgress:setFgColor((storageSat <= 0.33 and colors.green) or (storageSat <= 0.66 and colors.orange) or colors.red)
local basePageIndex = (pageState.currentPage - 1) * groupEntryListBudget local basePageIndex = (pageState.currentPage - 1) * groupEntryListBudget
for i=1,groupEntryListBudget do for i=1,groupEntryListBudget do