-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Movable content support and test for targetVisibilityState
- Loading branch information
1 parent
c1c570d
commit 06a138c
Showing
15 changed files
with
333 additions
and
32 deletions.
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
...s/core/src/androidTest/kotlin/com/bumble/appyx/core/node/BackStackTargetVisibilityTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
package com.bumble.appyx.core.node | ||
|
||
import android.os.Parcelable | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import com.bumble.appyx.core.AppyxTestScenario | ||
import com.bumble.appyx.core.composable.Children | ||
import com.bumble.appyx.core.modality.BuildContext | ||
import com.bumble.appyx.navmodel.backstack.BackStack | ||
import com.bumble.appyx.navmodel.backstack.operation.pop | ||
import com.bumble.appyx.navmodel.backstack.operation.push | ||
import kotlinx.parcelize.Parcelize | ||
import org.junit.Assert.assertFalse | ||
import org.junit.Assert.assertTrue | ||
import org.junit.Rule | ||
import org.junit.Test | ||
|
||
class BackStackTargetVisibilityTest { | ||
|
||
private val backStack = BackStack<NavTarget>( | ||
savedStateMap = null, | ||
initialElement = NavTarget.NavTarget1 | ||
) | ||
|
||
var nodeOneTargetVisibilityState: Boolean = false | ||
var nodeTwoTargetVisibilityState: Boolean = false | ||
|
||
var nodeFactory: (buildContext: BuildContext) -> TestParentNode = { | ||
TestParentNode(buildContext = it, backStack = backStack) | ||
} | ||
|
||
@get:Rule | ||
val rule = AppyxTestScenario { buildContext -> | ||
nodeFactory(buildContext) | ||
} | ||
|
||
@Test | ||
fun `GIVEN_backStack_WHEN_operations_called_THEN_child_nodes_have_correct_targetVisibility_state`() { | ||
rule.start() | ||
assertTrue(nodeOneTargetVisibilityState) | ||
|
||
backStack.push(NavTarget.NavTarget2) | ||
rule.waitForIdle() | ||
|
||
assertFalse(nodeOneTargetVisibilityState) | ||
assertTrue(nodeTwoTargetVisibilityState) | ||
|
||
backStack.pop() | ||
rule.waitForIdle() | ||
|
||
assertFalse(nodeTwoTargetVisibilityState) | ||
assertTrue(nodeOneTargetVisibilityState) | ||
} | ||
|
||
|
||
@Parcelize | ||
sealed class NavTarget : Parcelable { | ||
|
||
data object NavTarget1 : NavTarget() | ||
|
||
data object NavTarget2 : NavTarget() | ||
} | ||
|
||
inner class TestParentNode( | ||
buildContext: BuildContext, | ||
val backStack: BackStack<NavTarget>, | ||
) : ParentNode<NavTarget>( | ||
buildContext = buildContext, | ||
navModel = backStack | ||
) { | ||
|
||
override fun resolve(navTarget: NavTarget, buildContext: BuildContext): Node = | ||
when (navTarget) { | ||
NavTarget.NavTarget1 -> node(buildContext) { | ||
nodeOneTargetVisibilityState = LocalNodeTargetVisibility.current | ||
} | ||
|
||
NavTarget.NavTarget2 -> node(buildContext) { | ||
nodeTwoTargetVisibilityState = LocalNodeTargetVisibility.current | ||
} | ||
} | ||
|
||
@Composable | ||
override fun View(modifier: Modifier) { | ||
Children(navModel) | ||
} | ||
} | ||
|
||
} |
104 changes: 104 additions & 0 deletions
104
...s/core/src/androidTest/kotlin/com/bumble/appyx/core/node/SpotlightTargetVisibilityTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
package com.bumble.appyx.core.node | ||
|
||
import android.os.Parcelable | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import com.bumble.appyx.core.AppyxTestScenario | ||
import com.bumble.appyx.core.composable.Children | ||
import com.bumble.appyx.core.modality.BuildContext | ||
import com.bumble.appyx.navmodel.spotlight.Spotlight | ||
import com.bumble.appyx.navmodel.spotlight.operation.activate | ||
import kotlinx.parcelize.Parcelize | ||
import org.junit.Assert.assertFalse | ||
import org.junit.Assert.assertTrue | ||
import org.junit.Rule | ||
import org.junit.Test | ||
|
||
class SpotlightTargetVisibilityTest { | ||
|
||
private lateinit var spotlight: Spotlight<NavTarget> | ||
|
||
var nodeOneTargetVisibilityState: Boolean = false | ||
var nodeTwoTargetVisibilityState: Boolean = false | ||
var nodeThreeTargetVisibilityState: Boolean = false | ||
|
||
var nodeFactory: (buildContext: BuildContext) -> TestParentNode = { | ||
TestParentNode(buildContext = it, spotlight = spotlight) | ||
} | ||
|
||
@get:Rule | ||
val rule = AppyxTestScenario { buildContext -> | ||
nodeFactory(buildContext) | ||
} | ||
|
||
@Test | ||
fun `GIVEN_spotlight_WHEN_operations_called_THEN_child_nodes_have_correct_targetVisibility_state`() { | ||
val initialActiveIndex = 2 | ||
createSpotlight(initialActiveIndex) | ||
rule.start() | ||
|
||
assertTrue(nodeThreeTargetVisibilityState) | ||
|
||
spotlight.activate(1) | ||
rule.waitForIdle() | ||
|
||
assertFalse(nodeOneTargetVisibilityState) | ||
assertTrue(nodeTwoTargetVisibilityState) | ||
assertFalse(nodeThreeTargetVisibilityState) | ||
|
||
spotlight.activate(0) | ||
rule.waitForIdle() | ||
|
||
assertTrue(nodeOneTargetVisibilityState) | ||
assertFalse(nodeTwoTargetVisibilityState) | ||
assertFalse(nodeThreeTargetVisibilityState) | ||
} | ||
|
||
|
||
private fun createSpotlight(initialActiveIndex: Int) { | ||
spotlight = Spotlight( | ||
savedStateMap = null, | ||
items = listOf(NavTarget.NavTarget1, NavTarget.NavTarget2, NavTarget.NavTarget3), | ||
initialActiveIndex = initialActiveIndex | ||
) | ||
} | ||
|
||
@Parcelize | ||
sealed class NavTarget : Parcelable { | ||
|
||
data object NavTarget1 : NavTarget() | ||
|
||
data object NavTarget2 : NavTarget() | ||
|
||
data object NavTarget3 : NavTarget() | ||
} | ||
|
||
inner class TestParentNode( | ||
buildContext: BuildContext, | ||
val spotlight: Spotlight<NavTarget>, | ||
) : ParentNode<NavTarget>( | ||
buildContext = buildContext, | ||
navModel = spotlight | ||
) { | ||
|
||
override fun resolve(navTarget: NavTarget, buildContext: BuildContext): Node = | ||
when (navTarget) { | ||
NavTarget.NavTarget1 -> node(buildContext) { | ||
nodeOneTargetVisibilityState = LocalNodeTargetVisibility.current | ||
} | ||
|
||
NavTarget.NavTarget2 -> node(buildContext) { | ||
nodeTwoTargetVisibilityState = LocalNodeTargetVisibility.current | ||
} | ||
NavTarget.NavTarget3 -> node(buildContext) { | ||
nodeThreeTargetVisibilityState = LocalNodeTargetVisibility.current | ||
} | ||
} | ||
|
||
@Composable | ||
override fun View(modifier: Modifier) { | ||
Children(navModel) | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/MovableContent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package com.bumble.appyx.core.navigation.transition | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.movableContentOf | ||
import com.bumble.appyx.core.node.LocalNodeTargetVisibility | ||
import com.bumble.appyx.core.node.LocalParentNodeMovableContent | ||
|
||
|
||
/** | ||
* Returns movable content for the given key. To reuse composable across Nodes movable content | ||
* must to be invoked only once at any time, therefore we should return null for if the Node is | ||
* transitioning to an invisible target and return movable content only if the targetState is visible. | ||
* | ||
* Example: ParentNode (P) has BackStack with one Active Node (A). We push Node (B) to the BackStack, | ||
* and we want to move content from Node (A) to Node (B). Node (A) is transitioning from Active to | ||
* Stashed (invisible) state and Node (B) is transitioning from Created to Active (visible) state. | ||
* When this transition starts this function will return null for Node (A) and movable content for | ||
* Node (B)so that this content will be moved from Node (A) to Node (B). | ||
* | ||
* If you have a custom NavModel keep in mind that you can only move content from a visible Node | ||
* that becomes invisible to a Node that is becoming visible. | ||
*/ | ||
@Composable | ||
fun localMovableContentWithTargetVisibility( | ||
key: Any, | ||
defaultValue: @Composable () -> Unit | ||
): (@Composable () -> Unit)? { | ||
if (!LocalNodeTargetVisibility.current) return null | ||
val movableContentMap = LocalParentNodeMovableContent.current | ||
return movableContentMap.getOrPut(key) { | ||
movableContentOf { | ||
defaultValue() | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ package com.bumble.appyx.core.node | |
|
||
import androidx.compose.animation.ExperimentalSharedTransitionApi | ||
import androidx.compose.animation.SharedTransitionScope | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.compositionLocalOf | ||
|
||
val LocalNode = compositionLocalOf<Node?> { null } | ||
|
@@ -16,3 +17,6 @@ val LocalSharedElementScope = compositionLocalOf<SharedTransitionScope?> { null | |
* return false. | ||
*/ | ||
val LocalNodeTargetVisibility = compositionLocalOf { false } | ||
|
||
val LocalParentNodeMovableContent = | ||
Check warning Code scanning / detekt CompositionLocals are implicit dependencies and creating new ones should be avoided. See https://mrmans0n.github.io/compose-rules/rules/#compositionlocals for more information. Warning
CompositionLocals are implicit dependencies and creating new ones should be avoided.
See https://mrmans0n.github.io/compose-rules/rules/#compositionlocals for more information.
|
||
compositionLocalOf<MutableMap<Any, @Composable () -> Unit>> { mutableMapOf() } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.