Fix ID names for tab nav buttons

This commit is contained in:
Gabriel Tofvesson 2024-10-25 18:18:52 +02:00
parent e193427e4c
commit 726667399f

View File

@ -249,12 +249,16 @@ local PAGES = {
id = "action_sort" id = "action_sort"
} }
local function tabActionButton(count) local function tabActionButtonID(value)
local text = count < 0 and ("<"..tostring(-count)) or (tostring(count)..">") return value < 0 and ("<"..tostring(-value)) or (tostring(value)..">")
return Text:new{ id = tostring(count), text = text }
end end
local function tabActionButtonID(index, interval, count, sign) local function tabActionButton(count)
local text = tabActionButtonID(count)
return Text:new{ id = text, text = text }
end
local function tabActionButtonValue(index, interval, count, sign)
-- | s = 1: i - 1 -- | s = 1: i - 1
-- k(i, c, s) <| -- k(i, c, s) <|
-- | s = -1: c - i -- | s = -1: c - i
@ -284,10 +288,10 @@ local PAGES = {
local function tabActionList(interval, count, sign, spacing) local function tabActionList(interval, count, sign, spacing)
local buttons = {} local buttons = {}
if count > 0 then if count > 0 then
table.insert(buttons, tabActionButton(tabActionButtonID(1, interval, count, sign))) table.insert(buttons, tabActionButton(tabActionButtonID(tabActionButtonValue(1, interval, count, sign))))
for i=2,count do for i=2,count do
table.insert(buttons, Element:new{ width = spacing }) table.insert(buttons, Element:new{ width = spacing })
table.insert(buttons, tabActionButton(tabActionButtonID(i, interval, count, sign))) table.insert(buttons, tabActionButton(tabActionButtonID(tabActionButtonValue(i, interval, count, sign))))
end end
end end
@ -560,12 +564,12 @@ local PAGES = {
end end
end end
for i=1,ACTION_COUNT do for i=1,ACTION_COUNT do
local id = tabActionButtonID(i, ACTION_INTERVAL, ACTION_COUNT, 1) local value = tabActionButtonValue(i, ACTION_INTERVAL, ACTION_COUNT, 1)
bottomBarList:findById(tostring(id)):setOnClick(onClickHandler(id)) bottomBarList:findById(tabActionButtonID(value)):setOnClick(onClickHandler(value))
end end
for i=1,ACTION_COUNT do for i=1,ACTION_COUNT do
local id = tabActionButtonID(i, ACTION_INTERVAL, ACTION_COUNT, -1) local value = tabActionButtonValue(i, ACTION_INTERVAL, ACTION_COUNT, -1)
bottomBarList:findById(tostring(id)):setOnClick(onClickHandler(id)) bottomBarList:findById(tabActionButtonID(value)):setOnClick(onClickHandler(value))
end end
end end
bindTabActionButtons() bindTabActionButtons()