Center item detail title

This commit is contained in:
Gabriel Tofvesson 2024-10-12 00:37:02 +02:00
parent 2b4baf7b76
commit 63e1e54462

View File

@ -241,6 +241,22 @@ end
local function NOOP() end local function NOOP() end
local function getCenterPad(contentWidth, widthBudget)
if widthBudget < contentWidth then
return 0, 0
end
local pad = (widthBudget - contentWidth) / 2
return math.floor(pad), math.ceil(pad)
end
local function fitText(text, widthBudget)
if #text <= widthBudget then
return text
end
return text:sub(1, #widthBudget)
end
local PAGES = { local PAGES = {
MAIN = function(state) MAIN = function(state)
local pageState = state:currentPageState({}) local pageState = state:currentPageState({})
@ -291,23 +307,27 @@ local PAGES = {
end, end,
GROUP_DETAIL = function(state, newPage) GROUP_DETAIL = function(state, newPage)
local paddingSide = 1
local paddingTop = 1
local group = state:getExtra() local group = state:getExtra()
if group == nil then if group == nil then
state:setPage("MAIN") state:setPage("MAIN")
return NOOP return NOOP
end end
local title = Text:new{ local itemName = fitText(group:getSimpleName(), state.width - (paddingSide * 2))
text = group:getSimpleName(), local itemLeftPad, itemRightPad = getCenterPad(#itemName, state.width - (paddingSide * 2))
bgColor = colors.gray
}
local paddedTitle = Padding:new{ local paddedTitle = Padding:new{
top = 1, top = 1,
left = 1, left = itemLeftPad,
right = 1, right = itemRightPad,
bottom = 1, bottom = 1,
element = title, element = Text:new{
text = itemName,
bgColor = colors.gray
},
bgColor = colors.gray bgColor = colors.gray
} }
@ -344,10 +364,10 @@ local PAGES = {
local stuffContainer = Container:new{ local stuffContainer = Container:new{
[Children:getId()] = { [Children:getId()] = {
Padding:new{ Padding:new{
top = 1, top = paddingTop,
left = 1, left = paddingSide,
right = 1, right = paddingSide,
bottom = 1, bottom = 0,
element = infoElements, element = infoElements,
} }
}, },