droidtui 0.2.4

A beautiful Terminal User Interface (TUI) for Android development and ADB commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
# Elm Architecture in DroidTUI

## Overview

DroidTUI follows the **Elm Architecture** pattern, which provides a clean, functional, and maintainable way to structure applications. This architecture makes the code easier to understand, test, and extend.

## Core Concepts

The Elm Architecture consists of three main components:

```
┌─────────────────────────────────────────────┐
│                   MODEL                     │
│  (Application State - What we know)         │
└─────────────────┬───────────────────────────┘
┌─────────────────────────────────────────────┐
│                   VIEW                      │
│  (Rendering - What the user sees)           │
└─────────────────┬───────────────────────────┘
                  ↓ (User events)
┌─────────────────────────────────────────────┐
│                 MESSAGE                     │
│  (Events - What can happen)                 │
└─────────────────┬───────────────────────────┘
┌─────────────────────────────────────────────┐
│                 UPDATE                      │
│  (State transitions - How state changes)    │
└─────────────────┬───────────────────────────┘
                  ↓ (New state)
              Back to MODEL
```

## File Structure

```
src/
├── app.rs        - Main application loop (connects everything)
├── model.rs      - Application state (Model)
├── message.rs    - All possible events (Message)
├── update.rs     - State transition logic (Update)
├── view.rs       - UI rendering (View)
├── menu.rs       - Menu component
├── effects.rs    - Visual effects
└── event.rs      - Event handling
```

## Component Details

### 1. Model (`model.rs`)

**Purpose**: Contains ALL application state in one place.

**Key Principles**:
- Immutable state (or mutated only through Update)
- Single source of truth
- No business logic

**Example**:
```rust
pub struct Model {
    pub state: AppState,
    pub menu: Menu,
    pub effects: EffectsManager,
    pub command_result: Option<String>,
    pub scroll_position: usize,
    // ... all state here
}
```

**Benefits**:
- Easy to understand what data the app holds
- Easy to serialize/deserialize
- No hidden state
- Predictable

### 2. Message (`message.rs`)

**Purpose**: Defines ALL possible actions/events that can occur.

**Key Principles**:
- Enum of all possible messages
- Descriptive names
- Carries data if needed

**Example**:
```rust
pub enum Message {
    MenuUp,
    MenuDown,
    ExecuteCommand(String),
    CommandCompleted(CommandResult),
    ScrollUp,
    Quit,
    // ... all possible actions
}
```

**Benefits**:
- Clear documentation of what can happen
- Type-safe event handling
- Easy to add new features
- Testable

### 3. Update (`update.rs`)

**Purpose**: Pure function that handles state transitions.

**Key Principles**:
- Takes current model + message → returns updated model
- Pure function (no side effects when possible)
- Single place for all state changes

**Example**:
```rust
pub async fn update(model: &mut Model, message: Message) {
    match message {
        Message::MenuUp => {
            model.menu.previous();
        }
        Message::Quit => {
            model.running = false;
        }
        // ... handle all messages
    }
}
```

**Benefits**:
- All state changes in one place
- Easy to understand how state changes
- Easy to test
- No scattered mutations

### 4. View (`view.rs`)

**Purpose**: Renders UI based on current model state.

**Key Principles**:
- Pure function (Model → UI)
- No state modifications
- No business logic

**Example**:
```rust
pub fn render(model: &mut Model, area: Rect, buf: &mut Buffer) {
    match model.state {
        AppState::Menu => render_menu(model, area, buf),
        AppState::ShowResult => render_result(model, area, buf),
        // ... render based on state
    }
}
```

**Benefits**:
- Predictable rendering
- Easy to modify UI
- No side effects
- Testable

### 5. App (`app.rs`)

**Purpose**: Main loop that connects Model-Update-View.

**The Loop**:
```rust
loop {
    // 1. VIEW: Render current state
    terminal.draw(|frame| render(&model, frame.area(), frame.buffer_mut()))?;
    
    // 2. EVENT: Wait for user input
    let event = events.next().await?;
    
    // 3. MESSAGE: Convert event to message
    let message = event_to_message(event)?;
    
    // 4. UPDATE: Update model with message
    update(&mut model, message).await;
    
    // 5. Repeat...
}
```

## Data Flow

```
User Input → Event → Message → Update → Model → View → Screen
     ↑                                                      ↓
     └──────────────────────────────────────────────────────┘
```

1. **User Input**: User presses a key
2. **Event**: Raw keyboard event received
3. **Message**: Event converted to semantic message (e.g., `MenuUp`)
4. **Update**: Message processed, model updated
5. **Model**: New state stored
6. **View**: UI rendered from new state
7. **Screen**: User sees result
8. Loop continues...

## Benefits of Elm Architecture

### 1. **Predictability**
- State changes only happen in `update()`
- Rendering only depends on current model
- No hidden state or side effects

### 2. **Testability**
```rust
#[test]
fn test_menu_navigation() {
    let mut model = Model::new();
    update(&mut model, Message::MenuDown).await;
    assert_eq!(model.menu.selected, 1);
}
```

### 3. **Maintainability**
- Clear separation of concerns
- Easy to find where things happen
- Easy to add new features

### 4. **Debuggability**
- All state in one place (Model)
- All actions listed (Message)
- All transitions in one place (Update)

### 5. **Scalability**
- Easy to add new states
- Easy to add new messages
- Easy to add new views

## Example: Adding a New Feature

Let's say we want to add a "Command History" feature:

### Step 1: Update Model
```rust
pub struct Model {
    // ... existing fields
    pub command_history: Vec<String>,
}
```

### Step 2: Add Messages
```rust
pub enum Message {
    // ... existing messages
    ShowHistory,
    ClearHistory,
}
```

### Step 3: Update Handler
```rust
pub async fn update(model: &mut Model, message: Message) {
    match message {
        // ... existing handlers
        Message::ShowHistory => {
            model.state = AppState::ShowHistory;
        }
        Message::ClearHistory => {
            model.command_history.clear();
        }
    }
}
```

### Step 4: Add View
```rust
pub fn render(model: &mut Model, area: Rect, buf: &mut Buffer) {
    match model.state {
        // ... existing states
        AppState::ShowHistory => render_history(model, area, buf),
    }
}
```

### Step 5: Wire Up Events
```rust
fn key_to_message(&self, key: KeyCode) -> Option<Message> {
    match key {
        // ... existing keys
        KeyCode::Char('h') => Some(Message::ShowHistory),
        // ...
    }
}
```

Done! The feature is complete and follows the architecture.

## Common Patterns

### Pattern 1: Async Operations
```rust
Message::ExecuteCommand(command) => {
    model.state = AppState::Loading;
    let result = execute_command(&command).await;
    model.set_result(result);
    model.state = AppState::ShowResult;
}
```

### Pattern 2: Conditional State Transitions
```rust
Message::EnterChild => {
    if model.menu.has_children() {
        model.menu.enter_child_mode();
        model.effects.start_fade_in();
    }
}
```

### Pattern 3: Derived State
```rust
impl Model {
    pub fn can_scroll(&self) -> bool {
        self.wrapped_lines.len() > self.visible_lines
    }
}
```

## Testing

The Elm Architecture makes testing straightforward:

### Unit Tests
```rust
#[test]
fn test_scroll_boundaries() {
    let mut model = Model::new();
    model.wrapped_lines = vec!["Line 1".into(), "Line 2".into()];
    
    update(&mut model, Message::ScrollDown).await;
    assert_eq!(model.scroll_position, 1);
}
```

### Integration Tests
```rust
#[test]
fn test_command_execution_flow() {
    let mut model = Model::new();
    
    // Execute command
    update(&mut model, Message::ExecuteCommand("echo test".into())).await;
    assert_eq!(model.state, AppState::ShowResult);
    assert!(model.command_result.is_some());
}
```

## Best Practices

### DO:
✅ Keep Model as simple data
✅ Make Messages descriptive
✅ Keep Update pure when possible
✅ Keep View as rendering only
✅ Handle all errors explicitly
✅ Write tests for Update logic

### DON'T:
❌ Mutate state outside Update
❌ Add business logic to View
❌ Create hidden state
❌ Skip messages for "convenience"
❌ Mix concerns across boundaries

## Comparison to Traditional Architecture

### Traditional (Object-Oriented)
```rust
struct App {
    menu: Menu,
    state: State,
}

impl App {
    fn handle_key(&mut self, key: Key) {
        match key {
            Key::Up => {
                self.menu.previous();
                self.state = State::Menu;
                // State scattered everywhere
            }
        }
    }
}
```

### Elm Architecture
```rust
// State in one place
struct Model { ... }

// Actions in one place
enum Message { MenuUp, ... }

// Transitions in one place
fn update(model: &mut Model, msg: Message) {
    match msg {
        Message::MenuUp => model.menu.previous(),
    }
}
```

## Further Reading

- [The Elm Architecture]https://guide.elm-lang.org/architecture/
- [Redux (similar pattern)]https://redux.js.org/
- [Command Pattern]https://en.wikipedia.org/wiki/Command_pattern

## Summary

The Elm Architecture provides:
- **Clear structure**: Model, Message, Update, View
- **Predictable behavior**: All state changes in one place
- **Easy testing**: Pure functions are easy to test
- **Maintainable code**: Easy to understand and modify
- **Scalable design**: Easy to add new features

This architecture makes DroidTUI more maintainable, testable, and easier to understand!