Code Monkey home page Code Monkey logo

resaca's Introduction

Build Status Release API 21+ GitHub license

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...

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

@Composable
fun DemoScopedObject() {
    val myRepository: MyRepository = rememberScoped { MyRepository() }
    DemoComposable(inputObject = myRepository)
}

@Composable
fun DemoScopedViewModel() {
    val myScopedVM: MyViewModel = viewModelScoped()
    DemoComposable(inputObject = myScopedVM)
}

@Composable
fun DemoScopedViewModelWithDependencies() {
    val myScopedVM: MyViewModelWithDependencies = viewModelScoped { MyViewModelWithDependencies(myDependency) }
    DemoComposable(inputObject = myScopedVM)
}

@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)
}

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) or to remember multiple instances of the same class in the same scope.

โš ๏ธ 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:

  • ๐Ÿ“ƒ๐Ÿ“„ 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.
  • โค๏ธ 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.

Demo app

Demo app documentation can be found here.

Resaca-demo

Before After backstack navigation & configuration change
Before After

Installation

Add the Jitpack repo and include the library (less than 5Kb):

   allprojects {
       repositories {
           [..]
           maven { url "https://jitpack.io" }
       }
   }
   dependencies {
       // The latest version of the lib is available in the badget at the top, replace X.X.X with that version
       implementation 'com.github.sebaslogen.resaca:resaca:X.X.X'
   }

Alternative manual installation

Only a few files are needed and they can be found in the resaca module under the package com.sebaslogen.resaca. They are: RememberScopedObserver , ScopedMemoizers , ScopedViewModelContainer , ScopedViewModelOwner and ScopedViewModelProvider.

What about dependency injection?

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 the main dependency injection frameworks:

  • HILT ๐Ÿ—ก๏ธ (Dagger) support is povided through a small extension of this library: resaca-hilt . Documentation and installation instructions here.
  • Koin ๐Ÿช™ is out of the box supported by simply changing the way you request a dependency. Instead of using the getViewModel function from Koin, you have to use the standard way of getting a dependency from Koin. Like in this example: val viewModel: MyViewModel = viewModelScoped(myId) { get { parametersOf(myId) } }

With that out of the way here are a few suggestions of how to provide objects in combination with this library:

  • When using the Lazy* family of Composables it is recommended that you use rememberScoped/viewModelScoped outside the scope of Composables created by Lazy constructors (e.g. LazyColumn) because there is a risk that a lazy initialized Composable will be disposed of when it is not visible anymore (e.g. scrolled away) and that will also dispose of the rememberScoped/viewModelScoped object (after a few seconds), this might not be the intended behavior. For more info see Compose's 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

  • 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

  • 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

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. Therefore, it will retain objects longer than the remember function but shorter than rememberSaveable because there is no serialization involved.

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

RememberScoped lifecycle internal implementation details

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

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 a small delay (currently 5 seconds). During the span of time of this delay, a few things can happen:

  • The Composable is not part of the composition anymore after the delay 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 delay finishes. 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 a small delay. 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 canceling any pending delayed disposal. ๐ŸŽ‰
    • The Composable is not part of the composition anymore after the delay and the associated object is disposed of. ๐Ÿšฎ

Notes:

  • 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 simply be achieved neither by using ViewModel provider functions nor Compose remember functions.

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.