superseedr 1.0.5

A BitTorrent Client in your Terminal.
# TUI Architecture (Current)

## Module Layout
- `src/tui/view.rs`: top-level draw dispatcher.
- `src/tui/events.rs`: top-level input dispatcher and cross-cutting key handling.
- `src/tui/effects.rs`: post-draw theme effect pass + effect activity speed helper.
- `src/tui/particles.rs`: theme-driven background/foreground particle rendering.
- `src/tui/screen_context.rs`: read-only draw context (`ScreenContext`, `AppViewModel`).
- `src/tui/screens/*.rs`: per-screen draw + event handling.
- `src/tui/layout.rs`: layout module root.
- `src/tui/layout/normal.rs`: normal screen layout planner (`calculate_layout`).
- `src/tui/layout/browser.rs`: browser screen layout planner (`calculate_file_browser_layout`).
- `src/tui/layout/common.rs`: shared table/column layout helpers.
- `src/tui/tree.rs`: tree navigation/filtering helpers.
- `src/tui/formatters.rs`: rendering format helpers.

## Runtime Flow
1. `App::run` receives events and manager updates.
2. Input is routed through `tui::events::handle_event(event, &mut app)`.
3. Draw loop ticks UI effects clock in `App`, then calls `tui::view::draw(f, &app_state, &settings)`.
4. For non-welcome screens, draw order is: optional particle background -> screen widgets -> theme color effects -> optional particle foreground.
5. In power-saving mode, drawing is gated by `app_state.ui.needs_redraw`.

## State Ownership Matrix
- `AppState` (domain/application core):
  - torrent/session/runtime metrics and histories
  - manager-facing state and persisted values
  - sorting configuration (`torrent_sort`, `peer_sort`)
  - error/warning and lifecycle flags (`should_quit`, `shutdown_progress`, etc.)
- `AppState.ui` (UI-owned transient state):
  - redraw/effects timing: `needs_redraw`, effect clocks
  - shared UI interaction state: selection + search
  - per-screen substates:
    - `config`
    - `delete_confirm`
    - `file_browser`
- `AppMode`:
  - now acts as high-level route/screen id (`Normal`, `Config`, `FileBrowser`, etc.)
  - payload data has been migrated into `AppState.ui` substates.

## Current Transition Summary
- `Welcome`: `Esc` -> `Normal`.
- `Normal`:
  - `/` enters search.
  - `z` -> `PowerSaving`.
  - `c` -> `Config`.
  - `a` -> `FileBrowser` (add torrent flow).
  - `d`/`D` -> `DeleteConfirm`.
  - `Q` sets quit flag.
  - `Esc` clears `system_error` (stays in `Normal`).
- `PowerSaving`: `z` -> `Normal`.
- `Config`:
  - `Esc`/`Q` applies edited settings and returns to `Normal`.
  - `Enter` edits field or opens `FileBrowser` for path selection.
- `FileBrowser`:
  - `Y` confirms current action.
  - `Esc` returns to `Normal` or `Config` depending on browser mode.
  - `/` enters browser search.
- `DeleteConfirm`: `Enter` confirms and returns to `Normal`; `Esc` cancels.

## Navigation Contract (Minimal)
This contract formalizes top-level screen transitions. Any transition behavior change should update this table and the transition tests.

| From Mode | Input/Event | To Mode | Notes |
| --- | --- | --- | --- |
| `Welcome` | `Esc` press | `Normal` | Entry handoff |
| `Normal` | `m` | `Help` | Manual/help route |
| `Help` | `Esc` | `Normal` | Close help |
| `Normal` | `z` | `PowerSaving` | Zen mode |
| `PowerSaving` | `z` | `Normal` | Return from zen |
| `Normal` | `c` | `Config` | Open settings |
| `Config` | `Esc` or `Q` | `Normal` | Save + exit |
| `Normal` | `d`/`D` | `DeleteConfirm` | Selected torrent only |
| `DeleteConfirm` | `Enter` or `Esc` | `Normal` | Confirm/cancel dialog |
| `Normal` | `a` | `FileBrowser` | Add torrent path flow |
| `Config` | `Enter` on path item | `FileBrowser` | Path picker flow |
| `FileBrowser` | `Esc` | `Normal` or `Config` | Depends on browser sub-mode |

### Forbidden/No-op examples
- `Help` + unrelated keys (e.g. `c`, `a`, `d`) must stay in `Help`.
- `PowerSaving` + non-`z` keys must stay in `PowerSaving`.
- `Welcome` + non-`Esc` keys must stay in `Welcome`.

### Executable Transition Table (Tests)
- Treat this matrix as an executable contract via focused tests:
  - mode-local handler tests for `Welcome`, `Help`, and `PowerSaving`
  - existing reducer/effect tests for `Normal`, `Config`, `DeleteConfirm`, and `FileBrowser`
  - existing event-layer debounce tests in `tui/events.rs`
- If a transition behavior changes, update both this table and the corresponding tests.

### Future Full-System Trigger
Keep the current lightweight contract unless one or more of these happen:
1. Top-level modes/submodes grow enough that distributed handler logic becomes hard to reason about.
2. Navigation regressions continue despite transition contract tests.
3. Multiple parallel features frequently modify navigation and produce conflicts.
4. Guarded/conditional transitions become complex enough to justify a centralized runtime FSM.

## Help Overlay
- Help now uses dedicated route mode: `AppMode::Help`.
- Windows: `m` press toggles between `Normal` and `Help`.
- Non-Windows: `m` press opens help from `Normal`; `m` release or `Esc` closes to `Normal`.

## Invariants
- Reducers are deterministic and side-effect free; side effects execute via effect runners.
- Screen reducers do not mutate `app_state.mode` directly; route transitions are emitted as effects and applied in effect executors.
- `events.rs` stays staged and thin: resize handling, Esc debounce, global hooks, then mode dispatch.
- Screen `handle_event` entrypoints stay thin and delegate to per-screen reducer/mapping helpers.
- Layout planners are pure functions from geometry/context to `LayoutPlan` values.
- Draw functions read from state and context, and do not mutate core app/domain state.

## Extension Guide (New Screen)
1. Add `src/tui/screens/<screen>.rs` with `draw` and `handle_event` entrypoints.
2. Keep `handle_event` as staged dispatch: `map input -> reduce action -> execute effects`.
3. Add a per-screen layout planner under `src/tui/layout/<screen>.rs` if layout is non-trivial.
4. Keep reusable table/column logic in `src/tui/layout/common.rs`.
5. Wire dispatch in `src/tui/events.rs` and rendering in `src/tui/view.rs`.
6. Add reducer/mapping unit tests and at least one transition/behavior regression test.