-
-
Save uteke/d7ac9662b1d4301b054fce038e67638a to your computer and use it in GitHub Desktop.
UserListViewModel implementation with reducers & processors
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
class UserListViewModel( | |
private val actionProcessors: Collection<ActionProcessor<Action, Mutation, Event>>, | |
private val reducers: Collection<Reducer<Mutation, ViewState>>, | |
private val initialState: ViewState = ViewState(), | |
): ViewModel() { | |
... | |
fun process(action: Action) { | |
viewModelScope.launch { | |
actionProcessors | |
.map { actionProcessor -> actionProcessor(action) } | |
.merge() | |
.collect { value -> | |
mutation?.let(::handleMutation) | |
event?.let(eventChannel::trySend) | |
} | |
} | |
} | |
private fun handleMutation(mutation: Mutation) { | |
reducers | |
.asIterable() | |
.forEach { reducer -> | |
_viewStateFlow.update { currentState -> | |
reducer(mutation, currentState) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment