From 4425e1b0c761879d47d0c27641400e1b16e4de3c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 01:02:57 +0200 Subject: [PATCH] Add request page button to item detail --- itemcontroller.lua | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 1bb9bf6..f055b0a 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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 }