Implement more complex state-reset conditions

This commit is contained in:
Gabriel Tofvesson 2024-10-12 05:08:19 +02:00
parent 5da99116ce
commit df3810cce7

View File

@ -444,9 +444,13 @@ local PAGES = {
return NOOP
end
local pageState = state:currentPageState({
request = 0
})
local pageState = state:currentPageState(
{ request = 0, group = group },
function(currentPageState)
-- True = reset state
return currentPageState ~= group
end
)
local itemName = fitText(group:getSimpleName(), state.width)
local itemLeftPad, itemRightPad = getCenterPad(#itemName, state.width)
@ -617,8 +621,8 @@ function CONTROLLER_STATE:itemTransaction(transact)
unlock()
end
function CONTROLLER_STATE:currentPageState(default)
self.pageState[self.currentPage] = self.pageState[self.currentPage] or default
function CONTROLLER_STATE:currentPageState(default, override)
self.pageState[self.currentPage] = ((not override or (type(override) ~= "function" or not override(self.pageState[self.currentPage]))) and self.pageState[self.currentPage]) or default
return self.pageState[self.currentPage]
end