mnml-rs 0.2.18

A NvChad-style terminal IDE in Rust — vim or standard editing, LSP, git, and an embedded HTTP client.
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
//! Rail-content compact view of the Claude / Codex agents
//! dashboard. Rendered when `ActivitySection::Agents` is active.
//!
//! Polished version per user spec:
//!   - Animated spinner glyph on Running rows (replaces the
//!     static Claude logo).
//!   - Green ✓ on Done; red ! on Action Needed (pending tool
//!     confirm).
//!   - Rows grouped: Action Needed (top) · Running (middle) ·
//!     Done (bottom).
//!   - Filter input + `+ New` row at the top.

use ratatui::{
    Frame,
    layout::Rect,
    style::{Modifier, Style},
    text::{Line, Span},
    widgets::{Block, Paragraph},
};

use crate::app::App;
use crate::claude_agents::AgentState;
use crate::ui::theme;

/// Match the file-browser's chevron convention. Same glyphs as
/// `src/ui/tree_view.rs` (nf-oct-chevron-down / chevron-right,
/// F47C / F460) so collapsible groups read the same across the rail.
const CHEVRON_OPEN: &str = "\u{F47C}";
const CHEVRON_CLOSED: &str = "\u{F460}";

/// 6-frame partial-circle spinner. Cycles based on the system
/// clock so every rendered frame advances naturally — no need to
/// track tick state on App.
const SPINNER_FRAMES: &[&str] = &["", "", "", "", "", ""];

fn spinner_frame() -> &'static str {
    // ~150ms per frame; total cycle ≈ 900ms. Uses Instant arithmetic
    // not wall-clock so it stays smooth across DST etc.
    let now = std::time::Instant::now();
    // Anchor: a process-static start; differences are stable
    // within a run.
    static START: std::sync::OnceLock<std::time::Instant> = std::sync::OnceLock::new();
    let start = START.get_or_init(std::time::Instant::now);
    let ms = now.duration_since(*start).as_millis();
    let idx = (ms / 150) as usize % SPINNER_FRAMES.len();
    SPINNER_FRAMES[idx]
}

pub fn draw(frame: &mut Frame, app: &mut App, area: Rect) {
    let t = theme::cur();
    let bg = t.bg_darker;
    frame.render_widget(Block::default().style(Style::default().bg(bg)), area);
    if area.height < 4 || area.width < 12 {
        return;
    }

    // Cheap-on-most-frames; the actual refresh cadence is set in
    // `App::refresh_agents_panel_if_due` (30s local / 2min when
    // cloud_agents is configured).
    app.refresh_agents_panel_if_due();

    app.rects.agents_panel_rows.clear();
    app.rects.agents_panel_new_chip = None;
    app.rects.agents_panel_pr_chip = None;
    app.rects.agents_panel_filter_input = None;
    app.rects.agents_panel_view_chip = None;
    app.rects.agents_panel_workspace_headers.clear();

    let mut y = area.y;

    // Header with view-mode toggle chip on the right.
    let view_label = if app.agents_panel_group_by_workspace {
        "workspace"
    } else {
        "status"
    };
    let view_chip = format!(" view: {view_label} ");
    let view_w = view_chip.chars().count() as u16;
    let header_left = "AGENTS";
    // 2026-08-24 — count-in-parens (parity with FINDINGS / TODOS
    // / NOTES / SESSIONS): total when unfiltered, `M of N` when a
    // filter narrows it. Total = `agents_panel_rows.len()`;
    // filtered count folds through `matches_filter` below.
    let filter_lc_hdr = app.agents_panel_filter.to_ascii_lowercase();
    let count_txt = if filter_lc_hdr.is_empty() {
        format!("  ({})", app.agents_panel_rows.len())
    } else {
        let visible = app
            .agents_panel_rows
            .iter()
            .filter(|r| {
                [
                    r.workspace.to_ascii_lowercase(),
                    r.session_id.to_ascii_lowercase(),
                    r.last_user_msg
                        .as_deref()
                        .unwrap_or_default()
                        .to_ascii_lowercase(),
                    r.last_assistant_msg
                        .as_deref()
                        .unwrap_or_default()
                        .to_ascii_lowercase(),
                ]
                .iter()
                .any(|p| p.contains(&filter_lc_hdr))
            })
            .count();
        format!("  ({} of {})", visible, app.agents_panel_rows.len())
    };
    // 2026-08-24 (user ask) — refresh chip in the top-right corner
    // (parity with GIT / TODOS / NOTES / FINDINGS / INTEGRATIONS).
    // The view: chip keeps its home to the LEFT of the refresh
    // chip. Both are painted below in one Line so the alignment
    // math stays local to this block.
    let count_w = count_txt.chars().count() as u16;
    let refresh_text = crate::ui::refresh_glyph::chip_icon_only(app.config.ui.ascii_icons);
    let refresh_w = refresh_text.chars().count() as u16;
    // Layout: ` AGENTS  (N)  …pad…  view: status  ⟳ `
    // 1 leading pad + label + count + view + refresh + inter-chip gap + trailing pad.
    // R16 vscode-mouse SEV-2 (2026-08-24) — narrow-panel guard:
    // when the width can't fit label + count + view + refresh +
    // gaps, drop the refresh chip (both glyph AND click rect) so
    // the rect never leaks past the panel bounds onto the divider.
    // The view chip stays as long as it fits; the count subtitle
    // is the last thing to go, since it's the identity signal.
    let header_used = 1 + header_left.chars().count() as u16 + count_w + view_w + refresh_w + 2;
    let show_refresh = area.width >= header_used;
    let pad = (area.width).saturating_sub(header_used);
    let header_row = Rect {
        x: area.x,
        y,
        width: area.width,
        height: 1,
    };
    frame.render_widget(
        Paragraph::new(Line::from(vec![
            Span::styled(" ", Style::default().bg(bg)),
            Span::styled(
                header_left.to_string(),
                crate::ui::panel_chrome::caps_label_style(&t, bg),
            ),
            Span::styled(
                count_txt.clone(),
                crate::ui::panel_chrome::caps_subtitle_style(&t, bg),
            ),
            Span::styled(" ".repeat(pad as usize), Style::default().bg(bg)),
            Span::styled(
                view_chip,
                Style::default()
                    .fg(t.bg)
                    .bg(t.cyan)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::styled(
                if show_refresh { " " } else { "" }.to_string(),
                Style::default().bg(bg),
            ),
            Span::styled(
                if show_refresh {
                    refresh_text.to_string()
                } else {
                    String::new()
                },
                Style::default().fg(t.cyan).bg(bg),
            ),
        ])),
        header_row,
    );
    let view_chip_x = area.x + 1 + header_left.chars().count() as u16 + count_w + pad;
    let chip_rect = Rect {
        x: view_chip_x,
        y,
        width: view_w,
        height: 1,
    };
    app.rects.agents_panel_view_chip = Some(chip_rect);
    if show_refresh {
        let refresh_rect = Rect {
            x: view_chip_x + view_w + 1,
            y,
            width: refresh_w,
            height: 1,
        };
        app.rects.agents_panel_refresh_chip = Some(refresh_rect);
    }
    y += 1;

    // Filter input.
    if y < area.y + area.height {
        let focused = app.agents_panel_filter_focused;
        let bg_chip = crate::ui::panel_chrome::filter_chip_bg(&t);
        let fg_chip = if app.agents_panel_filter.is_empty() && !focused {
            t.comment
        } else {
            t.fg
        };
        let display = if app.agents_panel_filter.is_empty() {
            crate::ui::filter_placeholder::for_state(focused).to_string()
        } else {
            app.agents_panel_filter.clone()
        };
        let cursor = if focused { "" } else { " " };
        let pad = (area.width as usize).saturating_sub(3 + display.chars().count() + 1 + 1);
        let line = Line::from(vec![
            Span::styled(" ", Style::default().bg(bg)),
            Span::styled(
                format!("{} ", crate::ui::search_glyph::NERD),
                Style::default().fg(t.comment).bg(bg_chip),
            ),
            Span::styled(display, Style::default().fg(fg_chip).bg(bg_chip)),
            Span::styled(cursor, Style::default().fg(t.cyan).bg(bg_chip)),
            Span::styled(" ".repeat(pad), Style::default().bg(bg_chip)),
            Span::styled(" ", Style::default().bg(bg)),
        ]);
        let row_rect = Rect {
            x: area.x,
            y,
            width: area.width,
            height: 1,
        };
        frame.render_widget(Paragraph::new(line), row_rect);
        app.rects.agents_panel_filter_input = Some(row_rect);
        y += 1;
    }

    // `+ New` row.
    if y < area.y + area.height {
        let new_rect = Rect {
            x: area.x,
            y,
            width: area.width,
            height: 1,
        };
        // Two chips on the row: "+ New session" + "+ from PR".
        // The first fires a single Claude Code session in the
        // workspace; the second opens the wizard that picks PRs
        // and fires one session per checked PR.
        // 2026-08-23 (#1200) — routed through the shared
        // action_button roles: primary (green) for the main
        // action, secondary (purple) for the peer. Was inlined
        // fg/bg pairs that had drifted from the other panels.
        let new_label = "+ New session";
        let pr_label = "+ from PR";
        let new_w = crate::ui::action_button::chip_width(new_label);
        let pr_w = crate::ui::action_button::chip_width(pr_label);
        let pad = (area.width as usize).saturating_sub(1 + new_w as usize + 1 + pr_w as usize + 1);
        let mut spans: Vec<Span<'static>> = vec![Span::styled(" ", Style::default().bg(bg))];
        for span in
            crate::ui::action_button::chip_line(new_label, crate::ui::action_button::primary(&t))
                .spans
        {
            spans.push(Span::styled(span.content.into_owned(), span.style));
        }
        spans.push(Span::styled(" ", Style::default().bg(bg)));
        for span in
            crate::ui::action_button::chip_line(pr_label, crate::ui::action_button::secondary(&t))
                .spans
        {
            spans.push(Span::styled(span.content.into_owned(), span.style));
        }
        spans.push(Span::styled(" ".repeat(pad), Style::default().bg(bg)));
        frame.render_widget(Paragraph::new(Line::from(spans)), new_rect);
        app.rects.agents_panel_new_chip = Some(Rect {
            x: area.x + 1,
            y,
            width: new_w,
            height: 1,
        });
        app.rects.agents_panel_pr_chip = Some(Rect {
            x: area.x + 1 + new_w + 1,
            y,
            width: pr_w,
            height: 1,
        });
        y += 1;
    }

    // 1-row gap before sections.
    y += 1;

    // First-load placeholder — the worker hasn't reported back
    // yet OR there genuinely are no sessions. Shown until the
    // first scan completes.
    if app.agents_panel_built_at.is_none() && y < area.y + area.height {
        let label = if app.agents_panel_rx.is_some() {
            "Scanning sessions…"
        } else {
            "No sessions yet."
        };
        crate::ui::empty_state::draw(
            frame,
            Rect {
                x: area.x,
                y,
                width: area.width,
                height: area.height.saturating_sub(y - area.y),
            },
            label,
            None,
            bg,
            &t,
        );
        return;
    }

    // Partition rows by status. Action Needed comes from
    // `pending_tool_uses > 0` (the row is waiting on a tool
    // confirm). Streaming → Running. Idle / Ended → Done.
    let filter_lc = app.agents_panel_filter.to_ascii_lowercase();
    let matches_filter = |r: &crate::claude_agents::AgentRow| -> bool {
        if filter_lc.is_empty() {
            return true;
        }
        let parts = [
            r.workspace.to_ascii_lowercase(),
            r.session_id.to_ascii_lowercase(),
            r.last_user_msg
                .as_deref()
                .unwrap_or_default()
                .to_ascii_lowercase(),
            r.last_assistant_msg
                .as_deref()
                .unwrap_or_default()
                .to_ascii_lowercase(),
        ];
        parts.iter().any(|p| p.contains(&filter_lc))
    };

    let spinner = spinner_frame();
    // Build one session row's Line (owned — borrows nothing from `app`, so
    // the content list can outlive the `agents_panel_rows` borrow below).
    let make_row = |r: &crate::claude_agents::AgentRow| -> Line<'static> {
        let (glyph, glyph_color) = if r.pending_tool_uses > 0 {
            ("!", t.red)
        } else if matches!(r.state, AgentState::Streaming | AgentState::ToolCall) {
            (spinner, t.cyan)
        } else {
            ("", t.green)
        };
        let ws_label = r.workspace.clone();
        let last_msg = r
            .last_assistant_msg
            .clone()
            .or_else(|| r.last_user_msg.clone())
            .unwrap_or_else(|| "(no messages)".to_string());
        let max_msg = (area.width as usize).saturating_sub(ws_label.chars().count() + 8);
        let msg_clip: String = last_msg
            .lines()
            .next()
            .unwrap_or("")
            .chars()
            .take(max_msg)
            .collect();
        Line::from(vec![
            Span::styled("  ", Style::default().bg(bg)),
            Span::styled(glyph.to_string(), Style::default().fg(glyph_color).bg(bg)),
            Span::styled(" ", Style::default().bg(bg)),
            Span::styled(ws_label, Style::default().fg(t.fg).bg(bg)),
            Span::styled("  ", Style::default().bg(bg)),
            Span::styled(msg_clip, Style::default().fg(t.comment).bg(bg)),
        ])
    };

    // Build a flat content list (headers + session rows) for whichever view
    // mode is active. The borrow of `app.agents_panel_rows` ends with this
    // `let` (the rows are cloned into owned Lines), freeing `app` to mutate.
    let content: Vec<PanelRow> = if app.agents_panel_group_by_workspace {
        // Group by workspace. Insertion order = first-seen workspace order
        // (roughly most-recent activity, thanks to the rail's sort).
        let mut groups: Vec<(String, Vec<(usize, &crate::claude_agents::AgentRow)>)> = Vec::new();
        for (i, r) in app.agents_panel_rows.iter().enumerate() {
            if !matches_filter(r) {
                continue;
            }
            if let Some(slot) = groups.iter_mut().find(|(w, _)| w == &r.workspace) {
                slot.1.push((i, r));
            } else {
                groups.push((r.workspace.clone(), vec![(i, r)]));
            }
        }
        // Sort rows newest-first within each group, and groups by their
        // newest row's activity.
        for (_, items) in &mut groups {
            items.sort_by_key(|(_, b)| std::cmp::Reverse(b.last_activity));
        }
        groups.sort_by(|(_, a_rows), (_, b_rows)| {
            let a_newest = a_rows.first().map(|(_, r)| r.last_activity);
            let b_newest = b_rows.first().map(|(_, r)| r.last_activity);
            b_newest.cmp(&a_newest)
        });
        let expanded = app.agents_panel_expanded_workspaces.clone();
        let mut content = Vec::new();
        for (ws, rows) in &groups {
            let is_expanded = expanded.contains(ws);
            let chev = if is_expanded {
                CHEVRON_OPEN
            } else {
                CHEVRON_CLOSED
            };
            content.push(PanelRow::WsHeader(
                ws.clone(),
                Line::from(vec![
                    Span::styled(" ", Style::default().bg(bg)),
                    Span::styled(
                        format!("{chev} {ws}  ({})", rows.len()),
                        Style::default()
                            .fg(t.fg)
                            .bg(bg)
                            .add_modifier(Modifier::BOLD),
                    ),
                ]),
            ));
            if is_expanded {
                for &(i, r) in rows {
                    content.push(PanelRow::Session(i, make_row(r)));
                }
            }
        }
        content
    } else {
        let mut action_needed: Vec<(usize, &crate::claude_agents::AgentRow)> = Vec::new();
        let mut running: Vec<(usize, &crate::claude_agents::AgentRow)> = Vec::new();
        let mut done: Vec<(usize, &crate::claude_agents::AgentRow)> = Vec::new();
        for (i, r) in app.agents_panel_rows.iter().enumerate() {
            if !matches_filter(r) {
                continue;
            }
            if r.pending_tool_uses > 0 {
                action_needed.push((i, r));
            } else if matches!(r.state, AgentState::Streaming | AgentState::ToolCall) {
                running.push((i, r));
            } else {
                done.push((i, r));
            }
        }
        for v in [&mut action_needed, &mut running, &mut done] {
            v.sort_by_key(|(_, b)| std::cmp::Reverse(b.last_activity));
        }
        let sections: [(&str, &[(usize, &crate::claude_agents::AgentRow)]); 3] = [
            ("Action needed", &action_needed[..]),
            ("Running", &running[..]),
            ("Done", &done[..]),
        ];
        let mut content = Vec::new();
        for (label, items) in sections {
            if items.is_empty() {
                continue;
            }
            content.push(PanelRow::Header(Line::from(vec![
                Span::styled(" ", Style::default().bg(bg)),
                Span::styled(
                    label.to_string(),
                    Style::default()
                        .fg(t.comment)
                        .bg(bg)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::styled(
                    format!("  ({})", items.len()),
                    Style::default().fg(t.comment).bg(bg),
                ),
            ])));
            for &(i, r) in items {
                content.push(PanelRow::Session(i, make_row(r)));
            }
            content.push(PanelRow::Blank);
        }
        content
    };

    // Window the content against the visible height, applying the scroll
    // offset and reserving a column for a scrollbar when it overflows.
    let content_top = y;
    let content_bottom = area.y + area.height;
    let visible_h = content_bottom.saturating_sub(content_top) as usize;
    let total = content.len();
    let needs_sb = visible_h > 0 && total > visible_h;
    let sb_w: u16 = if needs_sb { 1 } else { 0 };
    let row_w = area.width.saturating_sub(sb_w);

    let max_scroll = total.saturating_sub(visible_h);
    app.agents_panel_scroll = app.agents_panel_scroll.min(max_scroll);
    let scroll = app.agents_panel_scroll;

    let mut click_targets: Vec<(Rect, usize)> = Vec::new();
    let mut workspace_headers: Vec<(Rect, String)> = Vec::new();
    for (vi, item) in content.into_iter().enumerate().skip(scroll).take(visible_h) {
        let row_rect = Rect {
            x: area.x,
            y: content_top + (vi - scroll) as u16,
            width: row_w,
            height: 1,
        };
        match item {
            PanelRow::Session(idx, line) => {
                frame.render_widget(Paragraph::new(line), row_rect);
                click_targets.push((row_rect, idx));
            }
            PanelRow::Header(line) => {
                frame.render_widget(Paragraph::new(line), row_rect);
            }
            PanelRow::WsHeader(ws, line) => {
                frame.render_widget(Paragraph::new(line), row_rect);
                workspace_headers.push((row_rect, ws));
            }
            PanelRow::Blank => {}
        }
    }
    app.rects.agents_panel_rows = click_targets;
    app.rects.agents_panel_workspace_headers = workspace_headers;
    app.rects.agents_panel_area = Some(Rect {
        x: area.x,
        y: content_top,
        width: area.width,
        height: visible_h as u16,
    });

    if needs_sb {
        let sb_area = Rect {
            x: area.x + row_w,
            y: content_top,
            width: sb_w,
            height: visible_h as u16,
        };
        crate::ui::scrollbar::paint_simple_scrollbar(frame, sb_area, &t, total, visible_h, scroll);
        app.rects.scrollbars.push(crate::app::ScrollbarHit {
            area: sb_area,
            pane_id: 0,
            total,
            viewport: visible_h,
            kind: crate::app::ScrollbarKind::AgentsPanel,
        });
    }
}

/// One flat row of the agents panel's scrollable content list — built for
/// whichever view mode is active, then windowed against the visible height.
enum PanelRow {
    /// A session row; carries the `agents_panel_rows` index for click routing.
    Session(usize, ratatui::text::Line<'static>),
    /// A section header (Action needed / Running / Done).
    Header(ratatui::text::Line<'static>),
    /// A workspace group header; carries the workspace for click routing.
    WsHeader(String, ratatui::text::Line<'static>),
    /// A blank spacer row (section gap).
    Blank,
}