-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SaveableMutableStateSource (#210)
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
vice-sources/src/commonMain/kotlin/com/eygraber/vice/sources/SaveableMutableStateSource.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.eygraber.vice.sources | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.State | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.saveable.rememberSaveable | ||
import androidx.compose.runtime.snapshotFlow | ||
import com.eygraber.vice.ViceSource | ||
import kotlinx.coroutines.flow.Flow | ||
|
||
public abstract class SaveableMutableStateSource<T> : ViceSource<T>, State<T> { | ||
private val state by lazy { | ||
mutableStateOf(initial) | ||
} | ||
|
||
public val updates: Flow<T> get() = snapshotFlow { state.value } | ||
|
||
override val value: T get() = state.value | ||
|
||
protected abstract val initial: T | ||
|
||
protected fun update(value: T) { | ||
state.value = value | ||
} | ||
|
||
@Composable | ||
override fun currentState(): T = rememberSaveable { state }.value | ||
} |