From 9cbc12cc242dfb56728d7b250cfa866114880092 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 1 Nov 2022 22:47:51 +0100 Subject: [PATCH] Fixed bug that would result in nested tabs "forgetting" which tab was active. --- .../PathAwareTabContainerController.kt | 30 ++++++++++++------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/web/src/main/kotlin/world/phantasmal/web/core/controllers/PathAwareTabContainerController.kt b/web/src/main/kotlin/world/phantasmal/web/core/controllers/PathAwareTabContainerController.kt index 658f8a0a..c69bdb76 100644 --- a/web/src/main/kotlin/world/phantasmal/web/core/controllers/PathAwareTabContainerController.kt +++ b/web/src/main/kotlin/world/phantasmal/web/core/controllers/PathAwareTabContainerController.kt @@ -1,7 +1,7 @@ package world.phantasmal.web.core.controllers import world.phantasmal.cell.Cell -import world.phantasmal.cell.map +import world.phantasmal.cell.mutableCell import world.phantasmal.cell.mutateDeferred import world.phantasmal.web.core.PwToolType import world.phantasmal.web.core.stores.UiStore @@ -17,17 +17,27 @@ open class PathAwareTabContainerController( private val tool: PwToolType, final override val tabs: List, ) : TabContainerController() { - final override val activeTab: Cell = - map(uiStore.currentTool, uiStore.path) { currentTool, path -> + private val _activeTab = mutableCell(tabs.firstOrNull()) + final override val activeTab: Cell = _activeTab + + init { + observeNow(uiStore.currentTool, uiStore.path) { currentTool, path -> if (currentTool == tool) { - tabs.find { path.startsWith(it.path) } ?: tabs.firstOrNull() - } else { - null + val aTab = _activeTab.value + + if (aTab == null || !path.startsWith(aTab.path)) { + val newActiveTab = tabs.find { path.startsWith(it.path) } + + if (newActiveTab != null) { + mutateDeferred { + _activeTab.value = newActiveTab + } + } + } } } - init { - setPathPrefix(activeTab.value, replace = true) + setPathPrefix(_activeTab.value, replace = true) } final override fun setActiveTab(tab: T?) { @@ -39,9 +49,7 @@ open class PathAwareTabContainerController( if (visible) { mutateDeferred { - if (!disposed) { - setPathPrefix(activeTab.value, replace = true) - } + setPathPrefix(_activeTab.value, replace = true) } } }