Giter VIP home page Giter VIP logo

resaca's Introduction

Maven Central Release Build Status API 21+ GitHub license Kotlin Weekly Android Weekly

Article about this library: Every Composable deserves a ViewModel

Resaca ๐Ÿน

The right scope for objects and View Models in Android Compose.

Resaca provides a simple way to keep a Jetpack ViewModel (or any other object) in memory during the lifecycle of a @Composable function and automatically clean it up when not needed anymore. This means, it retains your object or ViewModel across recompositions, during configuration changes, and also when the container Fragment or Compose Navigation destination goes into the backstack.

With Resaca you can create fine grained ViewModels for fine grained Composables and finally have reusable components across screens.

Why

Compose allows the creation of fine-grained UI components that can be easily reused like Lego blocks ๐Ÿงฑ. Well architected Android apps isolate functionality in small business logic components (like use cases, interactors, repositories, etc.) that are also reusable like Lego blocks ๐Ÿงฑ.

Screens are built using Compose components together with business logic components, and the standard tool to connect these two types of components is a Jetpack ViewModel. Unfortunately, ViewModels can only be scoped to a whole screen (or larger scope), but not to smaller Compose components on the screen.

In practice, this means that we are gluing UI Lego blocks with business logic Lego blocks using a big glue class for the whole screen, the ViewModel ๐Ÿ—œ.

Until now...

Installation

Just include the library (less than 5Kb):

Kotlin (KTS)
// In module's build.gradle.kts
dependencies {
    // The latest version of the lib is available in the badget at the top from Maven Central, replace X.X.X with that version
    implementation("io.github.sebaslogen:resaca:X.X.X")
}
Groovy
dependencies {
    // The latest version of the lib is available in the badget at the top from Maven Central, replace X.X.X with that version
    implementation 'io.github.sebaslogen:resaca:X.X.X'
}

Usage

Inside your @Composable function create and retrieve an object using rememberScoped to remember any type of object (except ViewModels). For ViewModels use viewModelScoped. That's all ๐Ÿช„โœจ

Examples:

Scope an object to a Composable
@Composable
fun DemoScopedObject() {
    val myRepository: MyRepository = rememberScoped { MyRepository() }
    DemoComposable(inputObject = myRepository)
}
Scope a ViewModel to a Composable
@Composable
fun DemoScopedViewModel() {
    val myScopedVM: MyViewModel = viewModelScoped()
    DemoComposable(inputObject = myScopedVM)
}
Scope a ViewModel with a dependency to a Composable
@Composable
fun DemoScopedViewModelWithDependency() {
    val myScopedVM: MyViewModelWithDependencies = viewModelScoped { MyViewModelWithDependencies(myDependency) }
    DemoComposable(inputObject = myScopedVM)
}
Scope a ViewModel with a key to a Composable
@Composable
fun DemoViewModelWithKey() {
    val scopedVMWithFirstKey: MyViewModel = viewModelScoped("myFirstKey") { MyViewModel("myFirstKey") }
    val scopedVMWithSecondKey: MyViewModel = viewModelScoped("mySecondKey") { MyViewModel("mySecondKey") }
    // We now have 2 ViewModels of the same type with different data inside the same Composable scope
    DemoComposable(inputObject = scopedVMWithFirstKey)
    DemoComposable(inputObject = scopedVMWithSecondKey)
}
Scope a ViewModel with a dependency injected with Koin to a Composable
@Composable
fun DemoKoinInjectedViewModelWithDependency() {
    val myInjectedScopedVM: MyViewModelWithDependencies = viewModelScoped() { getKoin().get { parametersOf(myConstructorDependency) } }
    DemoComposable(inputObject = myInjectedScopedVM)
}
Use a different ViewModel for each item in a LazyColumn and scope them to the Composable that contains the LazyColumn
@Composable
fun DemoManyViewModelsScopedOutsideTheLazyColumn(listItems: List<Int> = (1..1000).toList()) {
    val keys = rememberKeysInScope(inputListOfKeys = listItems)
    LazyColumn() {
        items(items = listItems, key = { it }) { item ->
            val myScopedVM: MyViewModel = viewModelScoped(key = item, keyInScopeResolver = keys)
            DemoComposable(inputObject = myScopedVM)
        }
    }
}

Once you use the rememberScoped or viewModelScoped functions, the same object will be restored as long as the Composable is part of the composition, even if it temporarily leaves composition on configuration change (e.g. screen rotation, change to dark mode, etc.) or while being in the backstack.

For ViewModels, in addition to being forgotten when they're really not needed anymore, their coroutineScope will also be automatically canceled because ViewModel's onCleared method will be automatically called by this library.

๐Ÿ’ก Optional key: a key can be provided to the call, rememberScoped(key) { ... } or viewModelScoped(key) { ... }. This makes possible to forget an old object when there is new input data during a recomposition (e.g. a new input id for your ViewModel).

โš ๏ธ Note that ViewModels remembered with viewModelScoped should not be created using any of the Compose viewModel() or ViewModelProviders factories, otherwise they will be retained in the scope of the screen regardless of viewModelScoped. Also, if a ViewModel is remembered with rememberScoped its clean-up method won't be called, that's the reason to use viewModelScoped instead.

Sample use cases

Here are some sample use cases reported by the users of this library:

  • โค๏ธ Isolated and stateful UI components like a favorite button that are widely used across the screens. This FavoriteViewModel can be very small, focused and only require an id to work without affecting the rest of the screen's UI and state.
  • ๐Ÿ—ช Dialog pop-ups can have their own business-logic with state that is better to isolate in a separate ViewModel but the lifespan of these dialogs might be short, so it's important to clean-up the ViewModel associated to a Dialog after it has been closed.
  • ๐Ÿ“ƒ A LazyColumn with a ViewModel per list item. Each item can have its own complex logic in an isolated ViewModel that will be lazily loaded when the item is visible for the first time. The ViewModel will cleared and destroyed when the item is not part of the list in the source data or the whole LazyColumn is removed.
  • ๐Ÿ“„๐Ÿ“„ Multiple instances of the same type of ViewModel in a screen with a view-pager. This screen will have multiple sub-pages that use the same ViewModel class with different ids. For example, a screen of holiday destinations with multiple pages and each page with its own HolidayDestinationViewModel.

Demo app

Demo app documentation can be found here.

Resaca-demo

Before After backstack navigation & configuration change
Before After

Dependency injection support

This library does not influence how your app provides or creates objects so it's dependency injection strategy and framework agnostic.

Nevertheless, this library supports two of the main dependency injection frameworks:

Hilt ๐Ÿ—ก๏ธ

Hilt details

HILT (Dagger) support is available in a small extension of this library: resaca-hilt.

Documentation and installation instructions are available here.

Koin ๐Ÿช™

Koin details

Koin is out of the box supported by simply changing the way you request a dependency.

Instead of using the getViewModel or koinViewModel functions from Koin, you have to use the standard way of getting a dependency from Koin getKoin().get().

Usage example: val viewModel: MyViewModel = viewModelScoped(myId) { getKoin().get { parametersOf(myId) } }

Note: if you plan to use a ViewModel with a SavedStateHandle, then you need to use the koinViewModelScoped function from the small extension library resaca-koin.

Scoping in a LazyColumn, LazyRow, etc

How to use `rememberKeysInScope` to control the lifecycle of an object in a Lazy* list

When using the Lazy* family of Composables it is recommended that -just above the call to the Lazy* Composable- you use rememberKeysInScope with a list of keys corresponding to the items used in the Lazy* Composable to obtain a KeyInScopeResolver (it's already highly recommended in Compose that items in a Lazy* list have unique keys).

Then in the Lazy* Composable, once you are creating an item and you need an object or ViewModel for that item, all you have to do is include in the call to rememberScoped/viewModelScoped the key for the current item and the KeyInScopeResolver you previously got from rememberKeysInScope.

With this setup, when an item of the Lazy* list becomes visible for the first time, its associated rememberScoped/viewModelScoped object will be created and even if the item is scrolled away, the scoped object will still be alive. Only once the associated key is not present anymore in the list provided to rememberKeysInScope and the item is either not part of the Lazy* list or scrolled away, then the associated object will be cleared and destroyed.

Example of a different ViewModel for each item in a LazyColumn and scope them to the Composable that contains the LazyColumn
@Composable
fun DemoManyViewModelsScopedOutsideTheLazyColumn(listItems: List<Int> = (1..1000).toList()) {
    val keys = rememberKeysInScope(inputListOfKeys = listItems)
    LazyColumn() {
        items(items = listItems, key = { it }) { item ->
            val myScopedVM: MyViewModel = viewModelScoped(key = item, keyInScopeResolver = keys)
            DemoComposable(inputObject = myScopedVM)
        }
    }
}

General considerations for State Hoisting

When a Composable is used more than once in the same screen with the same input, then the ViewModel (or business logic object) should be provided only once with viewModelScoped at a higher level in the tree using Compose's State Hoisting.

Why not use remember?

Remember will keep our object alive as long as the Composable is not disposed of. Unfortunately, there are a few cases where our Composable will be disposed of and then added again, breaking the lifecycle parity with the remember function. ๐Ÿ˜ข

Pros and Cons

Pros

  • Simple API

Cons

  • remember value will NOT survive a configuration change
  • remember value will NOT survive when going into the backstack
  • remember value will NOT survive a process death

RememberSaveable will follow the lifecycle of the Composable, even in the few cases where the Composable is temporarily disposed of. But the object we want to remember needs to implement Parcelable or the Saver interface in an additional class. ๐Ÿ˜ข Implementing these interfaces might not trivial.

Pros and Cons

Pros

  • rememberSaveable value will survive a configuration change
  • rememberSaveable value will survive when going into the backstack
  • rememberSaveable value will survive a process death

Cons

  • Complex integration work is required to correctly implement Parcelable or Saver

The new RememberScoped ๐Ÿช„โœจ

RememberScoped function keeps objects in memory during the lifecycle of the Composable, even in a few cases where the Composable is disposed of, and then added again. Therefore, it will retain objects longer than the remember function but shorter than rememberSaveable because there is no serialization involved.

Pros and Cons

Pros

  • Simple API
  • rememberScoped/viewModelScoped value will survive a configuration change
  • rememberScoped/viewModelScoped value will survive when going into the backstack

Cons

  • rememberScoped/viewModelScoped value will NOT survive a process death

Lifecycle

RememberScoped function keeps objects in memory during the lifecycle of the Composable, even in a few cases where the Composable is disposed of, and then added again.

RememberScoped lifecycle internal implementation details

This project uses internally a ViewModel as a container to store all scoped ViewModels and scoped objects.

What happens when a Composable is disposed?

When a Composable is disposed of, we don't know for sure if it will return again later. So at the moment of disposal, we mark in our container the associated object to be disposed of after the next frame when the Activity is resumed. During the span of time of this next frame, a few things can happen:

  • The Composable is not part of the composition anymore after the next frame and the associated object is disposed of. ๐Ÿšฎ
  • The LifecycleOwner of the disposed Composable (i.e. the navigation destination where the Composable lived) is paused (e.g. screen went to background) before the next frame happened. Then the disposal of the scoped object is canceled, but the object is still marked for disposal at a later stage.
    • This can happen when the application goes through a configuration change and the container Activity is recreated.
    • Also when the Composable is part of a Fragment that has been pushed to the backstack.
    • And also when the Composable is part of a Compose Navigation destination that has been pushed to the backstack.
  • When the LifecycleOwner of the disposed Composable is resumed (e.g. Fragment comes back to foreground), then the disposal of the associated object is scheduled again to happen after the next frame when the Activity is resumed. At this point two things can happen:
    • The Composable becomes part of the composition again and the rememberScoped/viewModelScoped function restores the associated object while also cancelling any pending disposal in the next frame when the Activity is resumed. ๐ŸŽ‰
    • The Composable is not part of the composition anymore after the next frame and then the associated object is disposed of. ๐Ÿšฎ

Note:

  • To know that the same Composable is being added to the composition again after being disposed of, we generate a random ID and store it with rememberSaveable , which survives recomposition, recreation and even process death.
  • To detect when the requester Composable is not needed anymore (has left composition and the screen for good), the ScopedViewModelContainer also observes the resume/pause Lifecycle events of the owner of this ScopedViewModelContainer (i.e. Activity, Fragment, or Compose Navigation destination)

Lifecycle example

Compose state scope

This diagram shows the lifecycle of three Composables (A, B, and C) with their respective objects scoped with the rememberScoped function. All these Composables are part of a Composable destination which is part of a Fragment which is part of an Activity which is part of the App. The horizontal arrows represent different lifecycle events, events like Composable being disposed of, Composable screen going into the backstack, Fragment going into the backstack and returning from backstack, or Activity recreated after a configuration change.

The existing alternatives to replicate the lifecycle of the objects in the diagram without using rememberScoped are:

  • Object A lifecycle could only be achieved using the Compose viewModel() or ViewModelProviders factories.
  • Object B lifecycle could only be achieved using the Compose remember() function.
  • Object C lifecycle could not be achieved neither by using ViewModel provider functions nor Compose remember functions.

resaca's People

Contributors

dependabot[bot] avatar sebaslogen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

resaca's Issues

Crash in Preview

Hello, I am new to Android Dev and so I might do something wrong here :)
I thought this code should work in Previews but it will result in the error below.
I am using version 3.2.0

class IamScoped(var str: String = "OK") : ViewModel()

@Composable
fun ScopedVm() {
    val vm: IamScoped = viewModelScoped()
    Text(vm.str)
}
@Preview
@Composable
fun ScopedVmPreview() {
    ScopedVm()
}
_layoutlib_._internal_.kotlin.UninitializedPropertyAccessException: 
lateinit property viewModelProvider has not been initialized ย ย at com.sebaslogen.resaca.ScopedViewModelProvider.getViewModelProvider(ScopedViewModelProvider.kt:33)

minSdkVersion 21

Hi,

Is there a specific reason this library targets a minimum of sdk 28? Our app doesn't compile because we're targeting minSdkVersion 21.

would it be safe to use
<uses-sdk tools:overrideLibrary="com.sebaslogen.resaca"/>
for this library?

Thanks!

ViewModelScope not separated

Hello!

I have two viewmodels of the same kind, both listening to inputs from a Firebase snapshotlistener (similar to a websocket).

The first viewmodel is running. I navigate to another screen with the same type of viewmodel running (so the first screen with the first viewmodel is not visible, it is in the backstack). I initialise the second viewmodel to listen to that websocket I was talking about, and it seems that I also receive data from the first viewmodel, updating the uistate in my second viewmodel.

ViewModel is disposed 5-10 secs after scoped composable dispose

ViewModel is disposed ~5-10 secs after scoped composable dispose. In this duration viewModel is alive and the flows inside it is triggered. Why viewmodels are disposed after a curtain amount of time? Shouldn't this be disposed properly with the scoped composable? Thanks in advance.

Ex: Dispose times from logcat
2023-03-20 00:32:28.561 Composable onDispose
2023-03-20 00:32:33.569 ViewModel onCleared

Koin is not supported

When trying to use the viewModelScoped with Koin's koinInject() the compilation throws the error: "Composable calls are not allowed inside the builder".
Please note that koinInject() is a @Composable function and it's usage is not allowed inside the non-composable noinline builder: @DisallowComposableCalls () -> T.

Example:

@Composable
@Preview
private fun DialogContent(
    modifier: Modifier = Modifier,
    viewModel: SubscriptionViewModel = viewModelScoped { koinInject() }, // Error
)

ViewModel.onCleared() is not called

Thanks for this library, it might be very helpful. ๐Ÿ‘

Small gotcha: ScopedViewModelContainer.scheduleToDispose() calls viewModelScope.cancel(), but does not call clear() or onCleared() on scoped ViewModels. It think it should, if possible (these methods are not public, unfortunately).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.