Abstract page state

This commit is contained in:
Gabriel Tofvesson 2024-10-09 03:57:16 +02:00
parent 37dfa98e42
commit ffde1b2978

View File

@ -232,17 +232,21 @@ end
local PAGES = { local PAGES = {
MAIN = function(state) MAIN = function(state)
local found = ItemGroup.collectStacks(state.controller:find(function(stack) local pageState = state:currentPageState({})
return not stack:isEmpty()
end))
table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end) if pageState.stacks == nil then
pageState.stacks = ItemGroup.collectStacks(state.controller:find(function(stack)
return not stack:isEmpty()
end))
table.sort(pageState.stacks, function(a, b) return a:getItemCount() > b:getItemCount() end)
end
local listResult, pageState = itemList( local listResult, listState = itemList(
found, pageState.stacks,
state.width, state.width,
state.height, state.height,
state.pageState[state.currentPage], pageState.listState,
function(element, x, y, source, group) function(element, x, y, source, group)
print("Clicked: "..group:getSimpleName()) print("Clicked: "..group:getSimpleName())
return true return true
@ -261,10 +265,12 @@ local PAGES = {
end end
end end
end) end)
-- Force reload stacks
state:currentPageState({}).stacks = nil
state.nextPage = state.currentPage state.nextPage = state.currentPage
end end
) )
state.pageState[state.currentPage] = pageState pageState.listState = listState
listResult:setParent(state.monitor) listResult:setParent(state.monitor)
return function() return function()
@ -306,6 +312,11 @@ function CONTROLLER_STATE:itemTransaction(transact)
unlock() unlock()
end end
function CONTROLLER_STATE:currentPageState(default)
self.pageState[self.currentPage] = self.pageState[self.currentPage] or default
return self.pageState[self.currentPage]
end
while not CONTROLLER_STATE.exit do while not CONTROLLER_STATE.exit do
updatePageRender(CONTROLLER_STATE, PAGES) updatePageRender(CONTROLLER_STATE, PAGES)
CONTROLLER_STATE._pageRender() CONTROLLER_STATE._pageRender()