Add request page button to item detail

This commit is contained in:
Gabriel Tofvesson 2024-10-12 01:02:57 +02:00
parent 3095b399b2
commit 4425e1b0c7

View File

@ -309,7 +309,7 @@ local PAGES = {
GROUP_DETAIL = function(state, newPage)
local paddingSide = 1
local paddingTop = 1
local group = state:getExtra()
if group == nil then
state:setPage("MAIN")
@ -403,6 +403,22 @@ local PAGES = {
right = paddingSide,
bottom = 0,
element = infoElements,
},
Padding:new{
x = 1,
y = state.height - 3,
top = 1,
left = 1,
right = 1,
bottom = 1,
bgColor = colors.gray,
element = Text:new{
text = "Request",
bgColor = colors.gray
},
onClick = function(e, x, y, s)
state:setPage("REQUEST")
end
}
},
width = state.width,
@ -417,7 +433,23 @@ local PAGES = {
end,
REQUEST = function(state, newPage)
local helloPage = Text:new{
text = "Hello Request"
}
local stuffContainer = Container:new{
[Children:getId()] = {
helloPage
},
width = state.width,
height = state.height,
parent = state.monitor,
onClick = function(e, x, y, s)
state:setPage("GROUP_DETAIL")
end
}
return renderDefault(state, stuffContainer)
end
}