Compare commits

..

No commits in common. "a0b995c2887cb665e14aac7d67ea044b0e119128" and "4bfe62633d62f1d607ad6d9ee8437bfc789c883d" have entirely different histories.

View File

@ -148,9 +148,8 @@ local PAGES = {
local pageState = state:currentPageState({
sortMode = 1,
filter = "",
displayKeyboard = false,
currentPage = 1,
reloadState = function() end
displayKeyboard = true,
currentPage = 1
})
local function _genSort(func, invert, tiebreaker)
@ -412,35 +411,24 @@ local PAGES = {
}
local function charInputKeyList(chars, backspace)
local keys = { Element:new{ id = "LPAD", bgColor = colors.cyan, width = 0 } }
local keys = {}
for i=1,#chars do
local key = chars:sub(i, i)
-- ((not backspace) and i == #keys and 0) or 1
table.insert(keys, Padding:new{ bgColor = colors.cyan, right = 1, element = Text:new{
table.insert(keys, Padding:new{ bgColor = colors.black, right = 0, element = Text:new{
id = key,
text = key,
bgColor = colors.gray,
onClick = function()
pageState.filter = pageState.filter..key
pageState.reloadState()
return true
end
bgColor = colors.gray
}})
end
if backspace then
table.insert(keys, Text:new{
id = KEY_BACKSPACE,
text = "<--",
bgColor = colors.gray,
onClick = function()
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
pageState.reloadState()
return true
end
bgColor = colors.gray
})
end
return List:new{
bgColor = colors.cyan,
[Orientation:getId()] = Orientation.HORIZONTAL,
[Children:getId()] = keys
}
@ -454,15 +442,9 @@ local PAGES = {
table.insert(keyboardLines.elements, keyLineList)
end
for _,line in ipairs(keyboardLines.elements) do
local pad = line:findById("LPAD")
pad:setWidth(keyboardWidth - (KEYBOARD_HPAD * 2) - line:getWidth())
end
table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY })
local keyboardList = Padding:new{ bgColor = colors.cyan, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{
bgColor = colors.cyan,
[Orientation:getId()] = Orientation.VERTICAL,
[Children:getId()] = keyboardLines.elements
}}
@ -548,6 +530,23 @@ local PAGES = {
screenContainer:setDirty(true)
end
for _,line in ipairs(keyboardLines.lines) do
for i=1,#line[1] do
local key = line[1]:sub(i, i)
keyboardList:findById(key):setOnClick(function()
pageState.filter = pageState.filter..key
reloadState()
return true
end)
end
end
keyboardList:findById(KEY_BACKSPACE):setOnClick(function()
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
reloadState()
return true
end)
local function bindTabActionButtons()
local function onClickHandler(change)
return function()
@ -572,7 +571,7 @@ local PAGES = {
keyboardButton:setOnClick(function()
Logger:debug("Toggling keyboard...")
pageState.displayKeyboard = not pageState.displayKeyboard
pageState.showKeyboard = not pageState.showKeyboard
reloadState()
return true
@ -601,8 +600,6 @@ local PAGES = {
return true
end)
pageState.reloadState = reloadState
reloadState()
return renderDefault(state, screenContainer)