Skip to content

Instantly share code, notes, and snippets.

@terrakok
Created September 13, 2020 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terrakok/a870fe17137fd1e85ed87de8137770ab to your computer and use it in GitHub Desktop.
Save terrakok/a870fe17137fd1e85ed87de8137770ab to your computer and use it in GitHub Desktop.
Very lighweight and simple redux implementation for android apps.
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.cancel
import timber.log.Timber
interface State
interface Action
interface Effect
interface Screen<T : State> {
fun render(state: T)
}
abstract class Store<S : State, A : Action, E : Effect>(
initState: S
) : CoroutineScope by CoroutineScope(Dispatchers.Main) {
private val storeName = javaClass.simpleName
private var isStarted = false
private var state: S = initState
set(value) {
if (field != value) {
Timber.d("$storeName new state($value)")
field = value
screen?.render(value)
}
}
private var screen: Screen<S>? = null
protected open fun start() {
Timber.d("$storeName start($state)")
isStarted = true
}
fun attach(screen: Screen<S>) {
if (!isStarted) start()
Timber.d("$storeName attach")
if (this.screen != screen) {
this.screen = screen
screen.render(state)
}
}
fun detach() {
Timber.d("$storeName detach")
this.screen = null
}
open fun destroy() {
Timber.d("$storeName destroy")
cancel()
isStarted = false
}
protected fun reduce(action: A) {
Timber.d("$storeName action($action)")
state = reducer(state, action, this::effect)
}
protected abstract fun reducer(currentState: S, action: A, sideEffects: (effect: E) -> Unit): S
protected open fun effect(effect: E) {
Timber.d("$storeName effect($effect)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment