Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
d294355a73 Show used space instead of empty 2024-10-26 19:55:36 +02:00
Gabriel Tofvesson
a0a7c96093 Call parent MT of Text 2024-10-26 19:50:13 +02:00
2 changed files with 8 additions and 5 deletions

View File

@ -10,7 +10,7 @@ function TextProgress:setProgress(progress)
end end
function TextProgress:draw() function TextProgress:draw()
getmetatable(getmetatable(self)).draw(self) getmetatable(getmetatable(getmetatable(self))).draw(self)
local text = self:getText() local text = self:getText()
if #text == 0 then if #text == 0 then
return return

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