Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
4425e1b0c7 Add request page button to item detail 2024-10-12 01:02:57 +02:00
Gabriel Tofvesson
3095b399b2 Use plural for text label 2024-10-12 00:52:22 +02:00

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")
@ -359,7 +359,7 @@ local PAGES = {
bgColor = colors.blue,
[Orientation:getId()] = Orientation.VERTICAL,
[Children:getId()] = {
Text:new{ text = "Slot", bgColor = colors.blue },
Text:new{ text = "Slots", bgColor = colors.blue },
Text:new{ text = tostring(group:getStackCount()), bgColor = colors.blue }
}
}
@ -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
}