+++ title = 'Simplifying MVI Architecture' date = 2024-09-27T13:45:09+02:00 tags = ['kotlin', 'kmp', 'android', 'mvi', 'architecture', 'mvvm', 'viewmodel'] draft = false +++ Model-View-Intent (MVI) is a powerful architectural pattern for building user interfaces, especially in Android development. In this post, we'll explore a helper class that simplifies the implementation of MVI, making it easier to manage state, handle user intents, and emit actions in your application.
First, let's look at the complete helper class:
{{< highlight kotlin >}} interface StateReceiver {
suspend fun updateState(transform: suspend (STATE) -> STATE)
suspend fun withState(block: suspend (STATE) -> Unit)
}
suspend inline fun StateReceiver.withType(
crossinline block: suspend (TYPE) -> Unit
) {
withState { state ->
if (state is TYPE) {
block(state)
}
}
}
suspend inline fun StateReceiver.updateWithType(
crossinline transform: suspend (TYPE) -> TYPE
) {
withType<TYPE, STATE> { state ->
updateState { transform(state) }
}
}
interface StateProvider {
val state: StateFlow<STATE>
}
interface IntentReceiver {
fun handleIntent(intent: INTENT)
}
interface ActionProvider {
val action: Flow<ACTION>
}
interface ActionReceiver {
suspend fun sendAction(block: suspend () -> ACTION)
}
interface StateModule : StateReceiver, StateProvider interface IntentModule : IntentReceiver interface ActionModule : ActionReceiver, ActionProvider
interface MVIViewModel : StateModule, IntentModule, ActionModule
class MVIViewModelDelegate(
initial: STATE
) : MVIViewModel {
private val _state = MutableStateFlow(initial)
override val state: StateFlow<STATE> = _state.asStateFlow()
private val _action = Channel<ACTION>()
override val action: Flow<ACTION> = _action.receiveAsFlow()
override suspend fun updateState(transform: suspend (STATE) -> STATE) {
_state.update { transform(it) }
}
override suspend fun withState(block: suspend (STATE) -> Unit) {
block(_state.value)
}
override suspend fun sendAction(block: suspend () -> ACTION) {
_action.trySend(block())
}
override fun handleIntent(intent: INTENT) {
throw NotImplementedError()
}
} {{< /highlight >}}
Let's break down the key components of our MVI helper class:
StateReceiver<STATE>
: Allows updating and accessing the current state.StateProvider<STATE>
: Provides access to the state as a StateFlow
.IntentReceiver<INTENT>
: Handles user intents.ActionProvider<ACTION>
: Provides a flow of actions.ActionReceiver<ACTION>
: Allows sending actions.StateModule<STATE>
: Combines state receiving and providing.IntentModule<INTENT>
: Wraps intent receiving.ActionModule<ACTION>
: Combines action receiving and providing.MVIViewModel<STATE, INTENT, ACTION>
: The main interface combining all MVI components.withType
: Allows type-safe state access.updateWithType
: Enables type-safe state updates.This class implements the MVIViewModel
interface, providing a concrete implementation of the MVI pattern.
Let's implement a simple counter application using our MVI helper class. Note that we can use either data classes or sealed interfaces for our State, Intent, and Action definitions:
{{< highlight kotlin >}} // Define our State, Intent, and Action data class CounterState(val count: Int = 0)
sealed interface CounterIntent {
object Increment : CounterIntent
object Decrement : CounterIntent
}
sealed interface CounterAction {
data class ShowToast(val message: String) : CounterAction
}
class CounterViewModel : MVIViewModel by MVIViewModelDelegate(CounterState()) {
init {
handleIntent()
}
private fun handleIntent() = viewModelScope.launch {
withState { state ->
when (val intent = receiveIntent()) {
is CounterIntent.Increment -> updateState { it.copy(count = it.count + 1) }
is CounterIntent.Decrement -> updateState { it.copy(count = it.count - 1) }
}
checkCounterValue(state.count)
}
}
private suspend fun checkCounterValue(count: Int) {
if (count % 10 == 0 && count != 0) {
sendAction { CounterAction.ShowToast("Counter is now $count!") }
}
}
} {{< /highlight >}}
In this example:
State
as a data class, and our Intent
and Action
as sealed interfaces.CounterViewModel
uses the MVIViewModelDelegate
to implement the MVIViewModel
interface.handleIntent
function, updating the state based on the received intent.checkCounterValue
function demonstrates how to send actions when certain conditions are met.Here's how you might use this ViewModel in an Android Activity or Fragment:
{{< highlight kotlin >}} class CounterActivity : AppCompatActivity() {
private val viewModel: CounterViewModel by viewModels()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_counter)
// Collect state
lifecycleScope.launch {
viewModel.state.collect { state ->
updateUI(state)
}
}
// Collect actions
lifecycleScope.launch {
viewModel.action.collect { action ->
when (action) {
is CounterAction.ShowToast -> Toast.makeText(this@CounterActivity, action.message, Toast.LENGTH_SHORT).show()
}
}
}
// Send intents
incrementButton.setOnClickListener {
viewModel.handleIntent(CounterIntent.Increment)
}
decrementButton.setOnClickListener {
viewModel.handleIntent(CounterIntent.Decrement)
}
}
private fun updateUI(state: CounterState) {
counterTextView.text = state.count.toString()
}
} {{< /highlight >}}
The MVI helper class we've explored simplifies the implementation of the MVI pattern, providing a clean and type-safe way to manage state, handle user intents, and emit actions. By using this helper class, you can create more maintainable and testable view models, leading to more robust applications.
Remember that you can use either data classes or sealed interfaces for your State, Intent, and Action definitions, depending on your specific needs. This flexibility allows you to choose the most appropriate structure for each component of your MVI architecture.
While this helper class provides a solid foundation, you may need to adapt it to fit the specific needs of your project.