Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcellogalhardo/retained
[ACTIVE] A lightweight alternative to Android's ViewModels. The easiest way to retain instances in Activities, Fragments or Composables.
https://github.com/marcellogalhardo/retained
android kotlin viewmodel
Last synced: 8 days ago
JSON representation
[ACTIVE] A lightweight alternative to Android's ViewModels. The easiest way to retain instances in Activities, Fragments or Composables.
- Host: GitHub
- URL: https://github.com/marcellogalhardo/retained
- Owner: marcellogalhardo
- License: apache-2.0
- Created: 2019-12-17T13:37:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-28T17:52:44.000Z (9 months ago)
- Last Synced: 2024-10-16T16:15:18.793Z (22 days ago)
- Topics: android, kotlin, viewmodel
- Language: Kotlin
- Homepage:
- Size: 475 KB
- Stars: 324
- Watchers: 7
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Retained Instance
A lightweight library built on top of Android Architecture Component ViewModel to simplify how UI Controllers (e.g., `Activity`, `Fragment` & `NavBackStackEntry`) retain instances on Android.
- Eliminate `ViewModel` inheritance.
- Eliminate `ViewModelProvider.Factory` need.
- Easy access to `ViewModel` scoped properties: `CoroutineScope` (`viewModelScope`), `SavedStateHandle`, and many others.
- Enable composition: callbacks can be listened with `OnClearedListener`.**Motivation:** Retained was originally created to share a `ViewModel` in Kotlin Multiplatform projects between Android & iOS with ease.
## Download
```gradle
dependencies {
// `Activity` support
implementation 'dev.marcellogalhardo:retained-activity:{Tag}'// `Fragment` support, includes `Activity` support
implementation 'dev.marcellogalhardo:retained-fragment:{Tag}'// Navigation support
implementation 'dev.marcellogalhardo:retained-navigation:{Tag}'// Navigation with Fragment support, includes `Navigation` support
implementation 'dev.marcellogalhardo:retained-navigation-fragment:{Tag}'
// Compose support
implementation 'dev.marcellogalhardo:retained-compose:{Tag}'
// View support (experimental)
implementation 'dev.marcellogalhardo:retained-view:{Tag}'
implementation 'dev.marcellogalhardo:retained-navigation-view:{Tag}'
}
```(Please replace `{Tag}` with the [latest version numbers](https://github.com/marcellogalhardo/retained/releases))
## Usage
The following sections demonstrate how to retain instances in activities and fragments. For simplicity, all examples will retain the following class:
```kotlin
class ViewModel(var counter: Int = 0)
```### Use Retained in Activities and Fragments
```kotlin
// retain an instance in an Activity:
class CounterActivity : AppCompatActivity() {
private val viewModel: ViewModel by retain { ViewModel() }
}// retain an instance in a Fragment:
class CounterFragment : Fragment() {
private val viewModel: ViewModel by retain { ViewModel() }
}// share an instance between Fragments scoped to the Activity
class CounterFragment : Fragment() {
private val sharedViewModel: ViewModel by retainInActivity { ViewModel() }
}// share an instance between Fragments scoped to the NavGraph
class CounterFragment : Fragment() {
private val viewModel: ViewModel by retainInNavGraph(R.navigation.nav_graph) { ViewModel() }
}
```### Compose Support
```kotlin
@Composable
fun SampleView() {
val viewModel = retain { ViewModel() }
val activity: ComponentActivity // find Activity
val viewModel = retain(owner = activity) { ViewModel() }
val fragment: Fragment // find Fragment
val viewModel = retain(owner = fragment) { ViewModel() }
val navBackStackEntry: NavBackStackEntry // find NavBackStackEntry
val viewModel = retain(owner = navBackStackEntry) { ViewModel() }
}
```### Advanced usage
#### Custom parameters from Jetpack's ViewModel
When retaining an instance, you have access to a `RetainedEntry` which contains all parameters you might need.
```kotlin
@Composable
fun SampleView() {
val viewModel = retain { entry: RetainedEntry ->
ViewModel()
}
// ...
}
```The entry exposes a `SavedStateHandle` that can be used to work with the saved state, just like in a regular Android `ViewModel`.
```kotlin
class CounterFragment : Fragment() {
private val viewModel: ViewModel by retain { entry ->
ViewModel(counter = entry.savedStateHandle.get("count"))
}
// ...
}
```It also exposes a `CoroutineScope` that works just like `viewModelScope` from the Android `ViewModel`.
```kotlin
class Presenter(scope: CoroutineScope) { /* ... */ }fun SampleFragment() {
private val presenter: Presenter by retain { entry ->
Presenter(scope = entry.scope)
}
// ...
}
```For more details, see `RetainedEntry`.
#### Listening `onCleared` calls
When retaining an instance, you can use the `RetainedEntry` to be notified when a retained instance is cleared (`ViewModel.onCleared`).
```kotlin
@Composable
fun SampleView() {
val viewModel = retain { entry ->
entry.onClearedListeners += {
println("Invoked when the host 'ViewModel.onCleared' is called")
}
// ...
}
// ...
}
```As a convenience, if the retained instance implements the `OnClearedListener` interface, it will be automatically added to `onClearedListeners` and notified.
#### View support (experimental)
Besides Activities and Fragments, it's also possible to retain instances in a view. There are a couple of extra modules for that:
```gradle
dependencies {
implementation 'dev.marcellogalhardo:retained-view:{Tag}'
implementation 'dev.marcellogalhardo:retained-navigation-view:{Tag}'
}
```The `retained-view` module exposes `retainInActivity` and `retain`, which will scope the instance to the parent being it an activity or a fragment. The `retained-view-navigation` module exposes `retainInNavGraph` to retain instances scoped to the `NavGraph`.
License
-------Copyright 2019 Marcello Galhardo
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.