Test click event limits
This commit is contained in:
parent
05116679d2
commit
8197d0a6f6
@ -312,6 +312,7 @@ local PAGES = {
|
||||
|
||||
local group = state:getExtra()
|
||||
if group == nil then
|
||||
print("No group passed to GROUP_DETAIL")
|
||||
state:setPage("MAIN")
|
||||
return NOOP
|
||||
end
|
||||
@ -417,7 +418,7 @@ local PAGES = {
|
||||
bgColor = colors.gray
|
||||
},
|
||||
onClick = function(e, x, y, s)
|
||||
state:setPage("REQUEST")
|
||||
state:setPage("REQUEST", group)
|
||||
return true
|
||||
end
|
||||
}
|
||||
@ -435,19 +436,47 @@ local PAGES = {
|
||||
end,
|
||||
|
||||
REQUEST = function(state, newPage)
|
||||
local helloPage = Text:new{
|
||||
text = "Hello Request"
|
||||
local group = state:getExtra()
|
||||
if group == nil then
|
||||
print("No group passed to REQUEST")
|
||||
state:setPage("MAIN")
|
||||
return NOOP
|
||||
end
|
||||
local paddingSide = 0
|
||||
local paddingTop = 0
|
||||
|
||||
local itemName = fitText(group:getSimpleName(), state.width - (paddingSide * 2))
|
||||
local itemLeftPad, itemRightPad = getCenterPad(#itemName, state.width - (paddingSide * 2))
|
||||
|
||||
local paddedTitle = Padding:new{
|
||||
top = 1,
|
||||
left = itemLeftPad,
|
||||
right = itemRightPad,
|
||||
bottom = 1,
|
||||
element = Text:new{
|
||||
id = "title",
|
||||
text = itemName,
|
||||
bgColor = colors.gray
|
||||
},
|
||||
bgColor = colors.gray,
|
||||
onClick = function(e, x, y, s)
|
||||
local title = e:findById("title")
|
||||
title:setText("Clicked")
|
||||
local newLeftPad, newRightPad = getCenterPad(#("Clicked"), state.width - (paddingSide * 2))
|
||||
e:setPadding{ left = newLeftPad, right = newRightPad }
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
local stuffContainer = Container:new{
|
||||
[Children:getId()] = {
|
||||
helloPage
|
||||
paddedTitle
|
||||
},
|
||||
width = state.width,
|
||||
height = state.height,
|
||||
parent = state.monitor,
|
||||
onClick = function(e, x, y, s)
|
||||
state:setPage("GROUP_DETAIL")
|
||||
state:setPage("GROUP_DETAIL", group)
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user