Compare commits
2 Commits
027edc1a27
...
b6597650af
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b6597650af | ||
![]() |
ebf49b1df7 |
@ -12,7 +12,7 @@ local function adjustPositions(elements, vertical, from)
|
|||||||
newDims = newDims + getDim(elements[i])
|
newDims = newDims + getDim(elements[i])
|
||||||
end
|
end
|
||||||
|
|
||||||
local setDim = vertical and function(e, dim) e:setPos(1, dim) end or function(e, dim) e:setPos(dim, 1) end
|
local setDim = vertical and function(e, dim) e:setY(dim) end or function(e, dim) e:setX(dim) end
|
||||||
for i=from,#elements do
|
for i=from,#elements do
|
||||||
setDim(elements[i], newDims)
|
setDim(elements[i], newDims)
|
||||||
newDims = newDims + getDim(elements[i])
|
newDims = newDims + getDim(elements[i])
|
||||||
|
@ -70,15 +70,57 @@ local function loadState(fname, node)
|
|||||||
return controller
|
return controller
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage)
|
||||||
|
local state = savedState or {}
|
||||||
|
state.tab = state.tab or 1
|
||||||
|
|
||||||
|
local pages = math.ceil(#groups / (hBudget - 1))
|
||||||
|
|
||||||
|
-- Tab controls
|
||||||
|
local btnPrev = Text:new{
|
||||||
|
text = " < ",
|
||||||
|
bgColor = state.tab == 1 and colors.black or colors.gray,
|
||||||
|
fgColor = state.tab == 1 and colors.red or colors.white,
|
||||||
|
x = 1,
|
||||||
|
onClick = function(e, x, y, s)
|
||||||
|
if state.tab > 1 then
|
||||||
|
state.tab = state.tab - 1
|
||||||
|
setPage(nil)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
local btnNext = Text:new{
|
||||||
|
text = " > ",
|
||||||
|
bgColor = state.tab == pages and colors.black or colors.gray,
|
||||||
|
fgColor = state.tab == pages and colors.red or colors.white,
|
||||||
|
x = wBudget - 3,
|
||||||
|
onClick = function(e, x, y, s)
|
||||||
|
if state.tab < pages then
|
||||||
|
state.tab = state.tab + 1
|
||||||
|
setPage(nil)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
local tabLine = List:new{
|
||||||
|
children = {
|
||||||
|
btnPrev,
|
||||||
|
btnNext
|
||||||
|
},
|
||||||
|
vertical = false
|
||||||
|
}
|
||||||
|
|
||||||
local function itemList(groups, wBudget, onClick)
|
|
||||||
local bgColors = {
|
local bgColors = {
|
||||||
colors.gray,
|
colors.gray,
|
||||||
colors.black
|
colors.black
|
||||||
}
|
}
|
||||||
|
local entryBudget = hBudget - tabLine:getHeight()
|
||||||
|
local entryStart = 1 + (state.tab - 1) * (entryBudget)
|
||||||
|
local entryEnd = math.min(state.tab * entryBudget, #groups)
|
||||||
local entries = {}
|
local entries = {}
|
||||||
|
|
||||||
for i=1,#groups do
|
for i=entryStart,entryEnd do
|
||||||
local group = groups[i]
|
local group = groups[i]
|
||||||
local text = group:getDisplayName()
|
local text = group:getDisplayName()
|
||||||
local count = tostring(group:getItemCount())
|
local count = tostring(group:getItemCount())
|
||||||
@ -119,17 +161,29 @@ local function itemList(groups, wBudget, onClick)
|
|||||||
table.insert(entries, list)
|
table.insert(entries, list)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local tabLinePad = Padding:new{
|
||||||
|
top = hBudget - (entryEnd - entryStart) - 1,
|
||||||
|
element = tabLine
|
||||||
|
}
|
||||||
|
|
||||||
|
table.insert(entries, tabLinePad)
|
||||||
|
|
||||||
return List:new{
|
return List:new{
|
||||||
children = entries,
|
children = entries,
|
||||||
vertical = true
|
vertical = true
|
||||||
}
|
}, state
|
||||||
end
|
end
|
||||||
|
|
||||||
local function updatePageRender(state, pages)
|
local function updatePageRender(state, pages)
|
||||||
if state.nextPage ~= nil then
|
if state.nextPage ~= nil then
|
||||||
|
local changingPage = state.nextPage ~= state.currentPage
|
||||||
state.currentPage = state.nextPage
|
state.currentPage = state.nextPage
|
||||||
state.nextPage = nil
|
state.nextPage = nil
|
||||||
|
|
||||||
|
if changingPage then
|
||||||
|
state.pageState = nil
|
||||||
|
end
|
||||||
|
|
||||||
state._pageRender = pages[state.currentPage](state)
|
state._pageRender = pages[state.currentPage](state)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -163,15 +217,20 @@ local PAGES = {
|
|||||||
|
|
||||||
table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end)
|
table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end)
|
||||||
|
|
||||||
local subset = {}
|
local listResult, pageState = itemList(
|
||||||
for i=1,math.min(13, #found) do
|
found,
|
||||||
table.insert(subset, found[i])
|
state.width,
|
||||||
end
|
state.height,
|
||||||
|
state.pageState,
|
||||||
local listResult = itemList(subset, state.width, function(element, x, y, source, group)
|
function(element, x, y, source, group)
|
||||||
print("Clicked: "..group:getDisplayName())
|
print("Clicked: "..group:getDisplayName())
|
||||||
return true
|
return true
|
||||||
end)
|
end,
|
||||||
|
function(page)
|
||||||
|
state.nextPage = page or state.currentPage
|
||||||
|
end
|
||||||
|
)
|
||||||
|
state.pageState = pageState
|
||||||
listResult:setParent(state.monitor)
|
listResult:setParent(state.monitor)
|
||||||
|
|
||||||
return function()
|
return function()
|
||||||
@ -201,7 +260,8 @@ local CONTROLLER_STATE = {
|
|||||||
height = height,
|
height = height,
|
||||||
monitor = monitor,
|
monitor = monitor,
|
||||||
nextPage = "MAIN",
|
nextPage = "MAIN",
|
||||||
exit = false
|
exit = false,
|
||||||
|
pageState = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
os.queueEvent("dummy_event")
|
os.queueEvent("dummy_event")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user