Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kotlin/Navite Class references now working. #1

Closed
taetae98coding opened this issue Nov 6, 2023 · 2 comments
Closed

Kotlin/Navite Class references now working. #1

taetae98coding opened this issue Nov 6, 2023 · 2 comments

Comments

@taetae98coding
Copy link
Owner

@Composable
public inline fun <reified T : KViewModel> ComponentContext.koinInject(): T {
    val scope = getKoinScope()
    val map = remember(this) {
        stateKeeper.consume(
            key = requireNotNull(T::class.qualifiedName),
            strategy = MapSerializer(String.serializer(), JsonPrimitive.serializer()),
        )?.toMutableMap() ?: mutableMapOf()
    }

    LaunchedEffect(this) {
        stateKeeper.register(
            key = requireNotNull(getKClassForGenericType<T>().qualifiedName),
            strategy = MapSerializer(String.serializer(), JsonPrimitive.serializer()),
            supplier = { map },
        )
    }

    return remember(this, scope) {
        instanceKeeper.getOrCreate {
            scope.get(
                parameters = {
                    ParametersHolder(mutableListOf(KSavedStateHandle(map)))
                },
            )
        }
    }
}
@taetae98coding
Copy link
Owner Author

Error Message

error: java.lang.IllegalStateException: Symbol for [ com.taetae98.codelab.library.inject.compose/koinInject|koinInject@com.arkivanov.decompose.ComponentContext(){0§<com.taetae98.codelab.library.lifecycle.KViewModel>}[0] <- Local[<TP>,0|TYPE_PARAMETER name:T index:0 variance: superTypes:[com.taetae98.codelab.library.lifecycle.KViewModel] reified:true] ] is unbound

Solved

Make the wrapper method

@Composable
public inline fun <reified T : KViewModel> ComponentContext.koinInject(): T {
    val scope = getKoinScope()
    val map = remember(this) {
        stateKeeper.consume(
            key = requireNotNull(getKClassForGenericType<T>().qualifiedName),
            strategy = MapSerializer(String.serializer(), JsonPrimitive.serializer()),
        )?.toMutableMap() ?: mutableMapOf()
    }

    LaunchedEffect(this) {
        stateKeeper.register(
            key = requireNotNull(getKClassForGenericType<T>().qualifiedName),
            strategy = MapSerializer(String.serializer(), JsonPrimitive.serializer()),
            supplier = { map },
        )
    }

    return remember(this, scope) {
        instanceKeeper.getOrCreate {
            scope.get(
                parameters = {
                    ParametersHolder(mutableListOf(KSavedStateHandle(map)))
                },
            )
        }
    }
}

public inline fun <reified T : KViewModel> getKClassForGenericType(): KClass<T> {
    return T::class
}

References

JetBrains/compose-multiplatform#3147

@taetae98coding
Copy link
Owner Author

Answer

@taetae98coding As far as I understand it, the only limitation is that you can't use T::class in a @composable inline function. The workaround makes a separate function that is inline but not @composable. The compiler does not have an issue with that. From there, you can use that function in any @composable function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant