codewhale-tui 0.9.8

Terminal UI for open-source and open-weight coding models
Documentation
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
//! Native worktree manager UI (list / create / switch / compare).
//!
//! Data lives in [`super::git_status`]; this module is pure presentation +
//! key handling. Never blocks the render path on git subprocesses — refresh
//! is scheduled via `git_status::refresh_if_stale` / `force_refresh` from
//! background-friendly call sites.

use std::path::{Path, PathBuf};

use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
use ratatui::{
    buffer::Buffer,
    layout::Rect,
    style::{Modifier, Style},
    text::{Line, Span},
    widgets::{Block, Borders, Clear, Paragraph, Widget},
};
use unicode_width::UnicodeWidthStr;

use crate::palette;
use crate::tui::git_status::{self, GitStatusSnapshot, WorktreeEntry};
use crate::tui::menu_style;
use crate::tui::views::{ModalKind, ModalView, ViewAction, ViewEvent};

/// Modes inside the worktree manager.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum Mode {
    List,
    Create,
    Compare,
}

/// Native worktree manager modal.
pub struct WorktreeManagerView {
    workspace: PathBuf,
    selected: usize,
    mode: Mode,
    create_buffer: String,
    create_as_new_branch: bool,
    compare_against: Option<PathBuf>,
    status: Option<String>,
    last_snapshot: GitStatusSnapshot,
}

impl WorktreeManagerView {
    #[must_use]
    pub fn new(workspace: impl Into<PathBuf>) -> Self {
        let workspace = workspace.into();
        git_status::refresh_if_stale(&workspace);
        let last_snapshot = git_status::cached_status();
        Self {
            workspace,
            selected: 0,
            mode: Mode::List,
            create_buffer: String::new(),
            create_as_new_branch: true,
            compare_against: None,
            status: None,
            last_snapshot,
        }
    }

    fn refresh(&mut self) {
        git_status::force_refresh(&self.workspace);
        self.last_snapshot = git_status::cached_status();
        let n = self.last_snapshot.worktrees.len().max(1);
        if self.selected >= n {
            self.selected = n.saturating_sub(1);
        }
    }

    fn entries(&self) -> &[WorktreeEntry] {
        &self.last_snapshot.worktrees
    }

    fn selected_entry(&self) -> Option<&WorktreeEntry> {
        self.entries().get(self.selected)
    }

    fn is_current(workspace: &Path, entry: &WorktreeEntry) -> bool {
        same_path(workspace, &entry.path)
    }
}

fn same_path(a: &Path, b: &Path) -> bool {
    let a = a.canonicalize().unwrap_or_else(|_| a.to_path_buf());
    let b = b.canonicalize().unwrap_or_else(|_| b.to_path_buf());
    a == b
}

impl ModalView for WorktreeManagerView {
    fn kind(&self) -> ModalKind {
        ModalKind::WorktreeManager
    }

    fn as_any_mut(&mut self) -> &mut dyn std::any::Any {
        self
    }

    fn handle_key(&mut self, key: KeyEvent) -> ViewAction {
        match self.mode {
            Mode::List => self.handle_list_key(key),
            Mode::Create => self.handle_create_key(key),
            Mode::Compare => self.handle_compare_key(key),
        }
    }

    fn render(&self, area: Rect, buf: &mut Buffer) {
        let popup = centered(area, 72, 18.min(area.height.saturating_sub(2)));
        Clear.render(popup, buf);
        Block::default()
            .borders(Borders::ALL)
            .title(" Worktrees ")
            .border_style(Style::default().fg(palette::BORDER_COLOR))
            .style(Style::default().bg(palette::SURFACE_ELEVATED))
            .render(popup, buf);

        let inner = Rect {
            x: popup.x.saturating_add(1),
            y: popup.y.saturating_add(1),
            width: popup.width.saturating_sub(2),
            height: popup.height.saturating_sub(2),
        };
        if inner.width == 0 || inner.height == 0 {
            return;
        }

        match self.mode {
            Mode::List => self.render_list(inner, buf),
            Mode::Create => self.render_create(inner, buf),
            Mode::Compare => self.render_compare(inner, buf),
        }
    }
}

impl WorktreeManagerView {
    fn handle_list_key(&mut self, key: KeyEvent) -> ViewAction {
        match key.code {
            KeyCode::Esc => ViewAction::Close,
            KeyCode::Up | KeyCode::Char('k') => {
                self.selected = self.selected.saturating_sub(1);
                ViewAction::None
            }
            KeyCode::Down | KeyCode::Char('j') => {
                let max = self.entries().len().saturating_sub(1);
                self.selected = (self.selected + 1).min(max);
                ViewAction::None
            }
            KeyCode::Char('r')
                if key.modifiers.contains(KeyModifiers::CONTROL)
                    || key.modifiers == KeyModifiers::NONE =>
            {
                self.refresh();
                self.status = Some("Refreshed worktree list".into());
                ViewAction::None
            }
            KeyCode::Char('n') => {
                self.mode = Mode::Create;
                self.create_buffer.clear();
                ViewAction::None
            }
            KeyCode::Char('d') => {
                if let Some(path) = self.selected_entry().map(|e| e.path.clone()) {
                    let name = path
                        .file_name()
                        .and_then(|s| s.to_str())
                        .unwrap_or("worktree")
                        .to_string();
                    self.compare_against = Some(path);
                    self.mode = Mode::Compare;
                    self.status = Some(format!("Diff against {name}"));
                }
                ViewAction::None
            }
            KeyCode::Enter => {
                if let Some(entry) = self.selected_entry() {
                    let path = entry.path.display().to_string();
                    if Self::is_current(&self.workspace, entry) {
                        self.status = Some("Already in this worktree".into());
                        ViewAction::None
                    } else {
                        ViewAction::Emit(ViewEvent::StatusMessage {
                            message: format!(
                                "Switch: open a new session in {path} (cwd switch is session-scoped)"
                            ),
                        })
                    }
                } else {
                    ViewAction::None
                }
            }
            _ => ViewAction::None,
        }
    }

    fn handle_create_key(&mut self, key: KeyEvent) -> ViewAction {
        match key.code {
            KeyCode::Esc => {
                self.mode = Mode::List;
                ViewAction::None
            }
            KeyCode::Backspace => {
                self.create_buffer.pop();
                ViewAction::None
            }
            KeyCode::Char('b') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                self.create_as_new_branch = !self.create_as_new_branch;
                ViewAction::None
            }
            KeyCode::Enter => {
                let name = self.create_buffer.trim();
                if name.is_empty() {
                    self.status = Some("Enter a branch / path name".into());
                    return ViewAction::None;
                }
                let path = self
                    .workspace
                    .join(".cw-worktrees")
                    .join(name.replace('/', "-"));
                let result = git_status::create_worktree(
                    self.last_snapshot
                        .root
                        .as_deref()
                        .unwrap_or(&self.workspace),
                    &path,
                    name,
                    self.create_as_new_branch,
                );
                match result {
                    Ok(()) => {
                        self.refresh();
                        self.mode = Mode::List;
                        self.status = Some(format!("Created worktree at {}", path.display()));
                    }
                    Err(err) => {
                        self.status = Some(format!("Create failed: {err}"));
                    }
                }
                ViewAction::None
            }
            KeyCode::Char(c)
                if !key.modifiers.contains(KeyModifiers::CONTROL)
                    && !key.modifiers.contains(KeyModifiers::ALT) =>
            {
                self.create_buffer.push(c);
                ViewAction::None
            }
            _ => ViewAction::None,
        }
    }

    fn handle_compare_key(&mut self, key: KeyEvent) -> ViewAction {
        match key.code {
            KeyCode::Esc => {
                self.mode = Mode::List;
                self.compare_against = None;
                ViewAction::None
            }
            KeyCode::Enter => {
                let Some(path) = self.compare_against.clone() else {
                    return ViewAction::None;
                };
                // Emit a status that dogfood can follow; full diff_render
                // integration uses existing /diff tooling against the path.
                ViewAction::Emit(ViewEvent::StatusMessage {
                    message: format!(
                        "Diff against {}: use /diff or context-menu Diff on a file",
                        path.display()
                    ),
                })
            }
            _ => ViewAction::None,
        }
    }

    fn render_list(&self, area: Rect, buf: &mut Buffer) {
        let mut lines: Vec<Line<'static>> = Vec::new();
        let branch = self.last_snapshot.branch.as_deref().unwrap_or("detached");
        lines.push(Line::from(vec![
            Span::styled("repo ", Style::default().fg(palette::TEXT_MUTED)),
            Span::styled(
                branch.to_string(),
                Style::default()
                    .fg(palette::WHALE_ACTION)
                    .add_modifier(Modifier::BOLD),
            ),
            if self.last_snapshot.dirty {
                Span::styled(" *", Style::default().fg(palette::STATUS_WARNING))
            } else {
                Span::raw("")
            },
        ]));
        lines.push(Line::from(Span::styled(
            "n new · d diff against · Enter switch · r refresh · Esc close",
            Style::default().fg(palette::TEXT_HINT),
        )));
        lines.push(Line::from(""));

        if self.entries().is_empty() {
            lines.push(Line::from(Span::styled(
                "No worktrees listed (not a git repo?)",
                Style::default().fg(palette::TEXT_MUTED),
            )));
        } else {
            for (i, entry) in self.entries().iter().enumerate() {
                let selected = i == self.selected;
                let current = Self::is_current(&self.workspace, entry);
                let marker = if selected { "" } else { "  " };
                let cur = if current { " · current" } else { "" };
                let locked = if entry.locked { " 🔒" } else { "" };
                let branch = entry.branch.as_deref().unwrap_or("detached");
                let path = entry
                    .path
                    .file_name()
                    .and_then(|s| s.to_str())
                    .unwrap_or_else(|| entry.path.to_str().unwrap_or("?"));
                let text = format!("{marker}{path} · {branch}{cur}{locked}");
                let style = if selected {
                    menu_style::selected_row_style_with_fg(palette::WHALE_ACTION)
                } else if current {
                    Style::default().fg(palette::WHALE_LIVE)
                } else {
                    Style::default().fg(palette::TEXT_PRIMARY)
                };
                // One-cell accent rail on selected row.
                let rail = if selected { "" } else { " " };
                lines.push(Line::from(vec![
                    Span::styled(rail, Style::default().fg(palette::WHALE_ACTION)),
                    Span::styled(
                        truncate(&text, usize::from(area.width.saturating_sub(2))),
                        style,
                    ),
                ]));
            }
        }

        if let Some(status) = &self.status {
            lines.push(Line::from(""));
            lines.push(Line::from(Span::styled(
                status.clone(),
                Style::default().fg(palette::TEXT_MUTED),
            )));
        }

        Paragraph::new(lines).render(area, buf);
    }

    fn render_create(&self, area: Rect, buf: &mut Buffer) {
        let kind = if self.create_as_new_branch {
            "new branch"
        } else {
            "existing branch"
        };
        let lines = vec![
            Line::from(Span::styled(
                "Create worktree",
                Style::default()
                    .fg(palette::TEXT_PRIMARY)
                    .add_modifier(Modifier::BOLD),
            )),
            Line::from(Span::styled(
                format!("Ctrl+B toggle · currently: {kind}"),
                Style::default().fg(palette::TEXT_HINT),
            )),
            Line::from(""),
            Line::from(vec![
                Span::styled("name › ", Style::default().fg(palette::TEXT_MUTED)),
                Span::styled(
                    self.create_buffer.clone(),
                    Style::default().fg(palette::WHALE_ACTION),
                ),
                Span::styled("", Style::default().fg(palette::TEXT_HINT)),
            ]),
            Line::from(""),
            Line::from(Span::styled(
                "Enter create · Esc back",
                Style::default().fg(palette::TEXT_HINT),
            )),
            if let Some(status) = &self.status {
                Line::from(Span::styled(
                    status.clone(),
                    Style::default().fg(palette::STATUS_WARNING),
                ))
            } else {
                Line::from("")
            },
        ];
        Paragraph::new(lines).render(area, buf);
    }

    fn render_compare(&self, area: Rect, buf: &mut Buffer) {
        let path = self
            .compare_against
            .as_ref()
            .map(|p| p.display().to_string())
            .unwrap_or_else(|| "(none)".into());
        let lines = vec![
            Line::from(Span::styled(
                "Diff against worktree",
                Style::default()
                    .fg(palette::TEXT_PRIMARY)
                    .add_modifier(Modifier::BOLD),
            )),
            Line::from(""),
            Line::from(Span::styled(
                truncate(&path, usize::from(area.width)),
                Style::default().fg(palette::WHALE_LIVE),
            )),
            Line::from(""),
            Line::from(Span::styled(
                "Enter: show diff workflow · Esc back",
                Style::default().fg(palette::TEXT_HINT),
            )),
            Line::from(Span::styled(
                "Uses existing diff_render surfaces — never blocks UI on git.",
                Style::default().fg(palette::TEXT_MUTED),
            )),
        ];
        Paragraph::new(lines).render(area, buf);
    }
}

fn centered(area: Rect, width: u16, height: u16) -> Rect {
    let width = width.min(area.width);
    let height = height.min(area.height);
    Rect {
        x: area.x.saturating_add(area.width.saturating_sub(width) / 2),
        y: area
            .y
            .saturating_add(area.height.saturating_sub(height) / 2),
        width,
        height,
    }
}

fn truncate(text: &str, max: usize) -> String {
    if UnicodeWidthStr::width(text) <= max {
        return text.to_string();
    }
    if max <= 1 {
        return "".to_string();
    }
    let mut out = String::new();
    let mut w = 0usize;
    let limit = max.saturating_sub(1);
    for ch in text.chars() {
        let cw = unicode_width::UnicodeWidthChar::width(ch).unwrap_or(0);
        if w + cw > limit {
            break;
        }
        out.push(ch);
        w += cw;
    }
    out.push('');
    out
}

/// Context-menu labels for git actions on a path.
#[must_use]
pub fn context_menu_git_actions(path: &str, branch: Option<&str>) -> Vec<(String, String)> {
    let mut actions = vec![
        ("Open path".into(), format!("open:{path}")),
        ("Diff file".into(), format!("diff:{path}")),
    ];
    if let Some(branch) = branch {
        actions.push(("Branch here".into(), format!("branch:{branch}")));
    }
    actions.push(("Worktrees…".into(), "worktrees".into()));
    actions
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn context_menu_includes_worktrees() {
        let actions = context_menu_git_actions("src/main.rs", Some("main"));
        assert!(actions.iter().any(|(_, id)| id == "worktrees"));
        assert!(actions.iter().any(|(label, _)| label.contains("Diff")));
    }

    #[test]
    fn manager_constructs_from_workspace() {
        let view = WorktreeManagerView::new(std::env::temp_dir());
        assert_eq!(view.mode, Mode::List);
    }
}