Add key event handler for keyboard

This commit is contained in:
Gabriel Tofvesson 2024-11-14 03:11:06 +00:00
parent fc121adcb8
commit dff74ce8b4

View File

@ -480,6 +480,19 @@ local PAGES = {
local keyboardList = Padding:new{
onClick = ignoreClick,
onKey = function(elem, keyCode, held)
if keyCode == keys.backspace then
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
pageState.reloadState()
return true
end
return false
end,
onChar = function(elem, charCode)
pageState.filter = pageState.filter..charCode
pageState.reloadState()
return true
end,
bgColor = KEYBOARD_BG_COLOR,
left = KEYBOARD_HPAD,
right = KEYBOARD_HPAD,