Skip to content

Latest commit

 

History

History
 
 

model-view-intent

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
title shortTitle description category language tags
Model-View-Intent Pattern in Java: Building Robust and Scalable Java UIs with MVI
Model-View-Intent (MVI)
Discover the Model-View-Intent (MVI) pattern for Java applications. Learn how MVI enhances UI predictability, maintainability, and state management through unidirectional data flow. Explore real-world examples and implementation details.
Architectural
en
Abstraction
Decoupling
Presentation
Reactive
State tracking

Also known as

  • MVI

Intent of Model-View-Intent Design Pattern

The Model-View-Intent (MVI) pattern for Java applications creates a unidirectional and cyclical data flow between the Model, View, and Intent components, enhancing UI predictability and state management.

Detailed Explanation of Model-View-Intent Pattern with Real-World Examples

Real-world example

Consider a real-world analogy of the Model-View-Intent (MVI) pattern in Java using the scenario of ordering at a fast-food restaurant to understand its application in enhancing UI state management.

In this analogy:

  • Model: It's like the kitchen of the restaurant, where the current state of your order is managed. As you choose items, the kitchen updates the order status and ingredients used.
  • View: This represents the menu and the digital display board where you see your current order summary. It reflects the current state of your order, showing what items you've added or removed.
  • Intent: Think of this as your decision-making process when you interact with the menu. Each choice you make (like adding a burger or removing a drink) sends a specific intention to the system (kitchen).

When you decide to add an item to your order (Intent), the kitchen (Model) processes this request, updates the state of your order, and then the display (View) updates to show the latest status of your order. This cycle continues until you finalize your order, demonstrating the unidirectional and cyclical flow characteristic of MVI. This ensures that every change in the order is predictably and accurately reflected in the customer's view, similar to how UI components update in response to state changes in software using MVI.

In plain words

The Model-View-Intent (MVI) pattern is a reactive architectural approach where user actions (Intent) modify the application state (Model), and the updated state is then reflected back in the user interface (View) in a unidirectional and cyclical data flow.

Programmatic Example of Model-View-Intent Pattern in Java

The Model-View-Intent (MVI) pattern for Java is a modern approach to structuring your application's logic, ensuring a smooth, unidirectional flow of data and events. It's a variation of the Model-View-Presenter (MVP) and Model-View-ViewModel (MVVM) patterns, but with a more streamlined flow of data and events.

In MVI, the View sends user events to the Intent. The Intent translates these events into a state change in the Model. The Model then pushes this new state to the View, which updates itself accordingly. This creates a unidirectional data flow, which can make your code easier to understand and debug.

First, we have the App class, which serves as the entry point for the application. It creates the View and ViewModel, and then simulates a series of user interactions with the calculator.

public final class App {
  private static final double RANDOM_VARIABLE = 10.0;

  public static void main(final String[] args) {
    var view = new CalculatorView(new CalculatorViewModel());
    var variable1 = RANDOM_VARIABLE;

    view.setVariable(variable1);
    view.add();
    view.displayTotal();

    variable1 = 2.0;
    view.setVariable(variable1);
    view.subtract();
    view.divide();
    view.multiply();
    view.displayTotal();
  }

  private App() {
  }
}

The CalculatorView class represents the View in MVI. It receives user events (in this case, simulated by the App class), and sends them to the ViewModel. It also updates its display when it receives a new state from the ViewModel.

public class CalculatorView {
  private CalculatorViewModel viewModel;

  public CalculatorView(CalculatorViewModel viewModel) {
    this.viewModel = viewModel;
  }

  public void setVariable(double variable) {
    viewModel.process(new SetVariableEvent(variable));
  }

  public void add() {
    viewModel.process(new AddEvent());
  }

  public void subtract() {
    viewModel.process(new SubtractEvent());
  }

  public void divide() {
    viewModel.process(new DivideEvent());
  }

  public void multiply() {
    viewModel.process(new MultiplyEvent());
  }

  public void displayTotal() {
    System.out.println("Total: " + viewModel.getState().getTotal());
  }
}

The CalculatorViewModel class represents the ViewModel in MVI. It receives events from the View, updates the Model's state accordingly, and then pushes the new state to the View.

public class CalculatorViewModel {
  private CalculatorModel model;

  public CalculatorViewModel() {
    this.model = new CalculatorModel();
  }

  public void process(UserEvent event) {
    event.apply(model);
  }

  public CalculatorModel getState() {
    return model;
  }
}

The CalculatorModel class represents the Model in MVI. It holds the current state of the calculator, and provides methods for updating that state.

public class CalculatorModel {
  private double total;
  private double variable;

  public void setVariable(double variable) {
    this.variable = variable;
  }

  public void add() {
    total += variable;
  }

  public void subtract() {
    total -= variable;
  }

  public void divide() {
    total /= variable;
  }

  public void multiply() {
    total *= variable;
  }

  public double getTotal() {
    return total;
  }
}

Finally, the UserEvent interface and its implementations represent the different types of user events that can occur. Each event knows how to apply itself to the Model.

public interface UserEvent {
  void apply(CalculatorModel model);
}

public class SetVariableEvent implements UserEvent {
  private double variable;

  public SetVariableEvent(double variable) {
    this.variable = variable;
  }

  @Override
  public void apply(CalculatorModel model) {
    model.setVariable(variable);
  }
}

// Similar classes would be created for AddEvent, SubtractEvent, DivideEvent, and MultiplyEvent ...

This example demonstrates the key aspects of the MVI pattern: unidirectional data flow, clear separation of concerns, and the use of events to drive changes in the Model's state.

When to Use the Model-View-Intent Pattern in Java

  • The MVI pattern is useful in Java applications with complex user interfaces that require a clear separation of concerns, predictable state management, and enhanced maintainability.
  • Often applied in reactive programming environments to ensure a smooth data flow and state consistency.

Model-View-Intent Pattern Java Tutorials

Real-World Applications of Model-View-Intent Pattern in Java

  • Widely adopted in reactive and event-driven Java applications, particularly those using frameworks like RxJava or Project Reactor.
  • Used in Android development, especially with libraries that support reactive programming such as RxJava and LiveData.

Benefits and Trade-offs of Model-View-Intent Pattern

Benefits:

  • Enhances the predictability of the UI by establishing a clear and cyclical data flow.
  • Improves testability due to well-defined separation between components.
  • Supports better state management by centralizing the state within the Model.

Trade-offs:

  • Increases complexity for simple UIs due to the structured and cyclical flow.
  • Requires familiarity with reactive programming paradigms.
  • Can lead to boilerplate code if not managed properly.

Related Java Design Patterns

Model-View-ViewModel (MVVM): Shares a similar goal of separating the view from the model but differs as MVI introduces a cyclical data flow. Model-View-Controller (MVC): MVI can be seen as an evolution of MVC, focusing more on reactive programming and unidirectional data flow. Observer: Essential in MVI to observe changes in the Model and update the View accordingly.

References and Credits