Remove context(parentNode: Node) and provide the parent Node as a parameter.

This commit is contained in:
Benoit Marty 2025-10-31 12:04:57 +01:00
parent f1822c5afd
commit 07b6148035
161 changed files with 668 additions and 436 deletions

View file

@ -16,8 +16,11 @@ import io.element.android.libraries.architecture.createNode
@ContributesBinding(AppScope::class)
class DefaultSignedOutEntryPoint : SignedOutEntryPoint {
context(parentNode: Node)
override fun createNode(buildContext: BuildContext, params: SignedOutEntryPoint.Params): Node {
override fun createNode(
parentNode: Node,
buildContext: BuildContext,
params: SignedOutEntryPoint.Params,
): Node {
return parentNode.createNode<SignedOutNode>(
buildContext = buildContext,
plugins = listOf(SignedOutNode.Inputs(params.sessionId))

View file

@ -34,12 +34,11 @@ class DefaultSignedOutEntryPointTest {
)
}
val params = SignedOutEntryPoint.Params(A_SESSION_ID)
val result = with(parentNode) {
entryPoint.createNode(
buildContext = BuildContext.root(null),
params = params,
)
}
val result = entryPoint.createNode(
parentNode = parentNode,
buildContext = BuildContext.root(null),
params = params,
)
assertThat(result).isInstanceOf(SignedOutNode::class.java)
assertThat(result.plugins).contains(SignedOutNode.Inputs(params.sessionId))
}