clauth 0.3.0

Simple Claude Code account switcher and usage monitor
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
//! Overview screen: accounts list + fallback flow widget.

use ratatui::Frame;
use ratatui::layout::{Constraint, Direction, Layout, Rect};
use ratatui::style::{Modifier, Style};
use ratatui::symbols::border;
use ratatui::text::{Line, Span};
use ratatui::widgets::{Block, Borders, List, ListItem, Padding, Paragraph, Wrap};

use super::super::app::{App, MainItemKind};
use super::super::theme;
use super::format::{
    account_type_label, account_type_style, fixed, fixed_split, name_style, window_summary_parts,
    window_summary_span,
};
use crate::fallback::threshold_for;
use crate::profile::Profile;

pub(super) fn draw(frame: &mut Frame<'_>, area: Rect, app: &App) {
    let target = if area.height >= 18 { 8 } else { 5 };
    let cap = area.height.saturating_sub(6).max(3);
    let chain_height = target.min(cap);
    let chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([Constraint::Min(7), Constraint::Length(chain_height)])
        .split(area);

    draw_overview_accounts(frame, chunks[0], app);
    draw_fallback_overview(frame, chunks[1], app);
}

fn draw_overview_accounts(frame: &mut Frame<'_>, area: Rect, app: &App) {
    let title = Line::from(vec![
        Span::styled(" ACCOUNTS ", theme::label()),
        Span::styled(
            format!("{} total", app.config.profiles.len()),
            theme::faint(),
        ),
    ]);

    let block = Block::default()
        .borders(Borders::ALL)
        .border_set(border::ROUNDED)
        .border_style(Style::default().fg(theme::LINE))
        .title(title)
        .padding(Padding::horizontal(1));
    let inner = block.inner(area);
    frame.render_widget(block, area);

    if app.config.profiles.is_empty() {
        let empty = Paragraph::new(Line::from(Span::styled("no accounts yet", theme::muted())))
            .style(theme::base());
        frame.render_widget(empty, inner);
        return;
    }

    let chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([Constraint::Length(1), Constraint::Min(1)])
        .split(inner);

    let widths = OverviewWidths::new(chunks[1].width, app);
    let header = overview_header(&widths);
    frame.render_widget(Paragraph::new(header).style(theme::base()), chunks[0]);

    let items = app.main_items();
    let rows: Vec<ListItem<'_>> = items
        .iter()
        .enumerate()
        .map(|(row, item)| match item {
            MainItemKind::Profile(idx) => ListItem::new(render_overview_row(
                app,
                *idx,
                &widths,
                row == app.main_cursor,
            )),
            MainItemKind::ActionSeparator => ListItem::new(render_separator_row()),
            MainItemKind::NewProfile => {
                ListItem::new(render_action_row("+ new profile", row == app.main_cursor))
            }
            MainItemKind::CaptureCredentials => ListItem::new(render_action_row(
                "+ new from current profile",
                row == app.main_cursor,
            )),
            MainItemKind::OpenChain => ListItem::new(render_action_row(
                "→ fallback chain",
                row == app.main_cursor,
            )),
        })
        .collect();

    let list = List::new(rows)
        .style(theme::base())
        .highlight_style(theme::selected_row().add_modifier(Modifier::BOLD));
    let mut state = ratatui::widgets::ListState::default();
    state.select(Some(app.main_cursor.min(items.len().saturating_sub(1))));
    frame.render_stateful_widget(list, chunks[1], &mut state);
}

#[derive(Debug, Clone, Copy)]
struct OverviewWidths {
    name: usize,
    kind: usize,
    five_hour: usize,
    seven_day: usize,
    route: usize,
    gap: usize,
}

impl OverviewWidths {
    fn new(width: u16, app: &App) -> Self {
        let total = width as usize;
        let max_name = app
            .config
            .profiles
            .iter()
            .map(|p| p.name.chars().count())
            .max()
            .unwrap_or(8);
        let mut name = max_name.clamp(8, if total >= 86 { 22 } else { 16 });
        let mut kind = if total >= 92 {
            16
        } else if total >= 66 {
            12
        } else {
            6
        };
        // 26 = "[bar 10] XX% (1h 32m)" fits.  17 = "[bar 10] XX%" without reset.
        let mut five_hour = if total >= 81 {
            26
        } else if total >= 64 {
            17
        } else {
            12
        };
        let mut seven_day = if total >= 102 {
            26
        } else if total >= 93 {
            17
        } else if total >= 58 {
            5
        } else {
            0
        };
        let mut route = if total >= 88 {
            13
        } else if total >= 68 {
            9
        } else {
            0
        };

        let gap_min = 2;
        while fixed_overview_width(name, kind, five_hour, seven_day, route, gap_min) > total {
            if route > 0 {
                route = 0;
            } else if seven_day >= 17 {
                seven_day = 5;
            } else if seven_day > 0 {
                seven_day = 0;
            } else if five_hour > 17 {
                five_hour = 17;
            } else if five_hour > 12 {
                five_hour = 12;
            } else if kind > 6 {
                kind = 6;
            } else if name > 8 {
                name -= 1;
            } else {
                break;
            }
        }

        // Spread leftover width across the inter-column gaps so columns
        // breathe on wide terminals and stay tight on narrow ones.
        let base = fixed_overview_width(name, kind, five_hour, seven_day, route, gap_min);
        let column_count = 3 + usize::from(seven_day > 0) + usize::from(route > 0);
        let gap_slots = column_count.saturating_sub(1).max(1);
        let gap = (gap_min + total.saturating_sub(base) / gap_slots).clamp(gap_min, 8);

        Self {
            name,
            kind,
            five_hour,
            seven_day,
            route,
            gap,
        }
    }
}

fn fixed_overview_width(
    name: usize,
    kind: usize,
    five_hour: usize,
    seven_day: usize,
    route: usize,
    gap: usize,
) -> usize {
    let column_count = 3 + usize::from(seven_day > 0) + usize::from(route > 0);
    // 4 = cursor + dot + spacer before name; +2 = spacer + auto-start marker after 5h.
    6 + name + kind + five_hour + seven_day + route + column_count.saturating_sub(1) * gap
}

fn overview_header(widths: &OverviewWidths) -> Line<'static> {
    let mut spans = vec![Span::styled("    ", theme::label())];
    spans.push(Span::styled(fixed("account", widths.name), theme::label()));
    spans.push(gap(widths));
    spans.push(Span::styled(fixed("type", widths.kind), theme::label()));
    spans.push(gap(widths));
    spans.push(Span::styled(fixed("5h", widths.five_hour), theme::label()));
    spans.push(Span::raw("  "));
    if widths.seven_day > 0 {
        spans.push(gap(widths));
        spans.push(Span::styled(fixed("7d", widths.seven_day), theme::label()));
    }
    if widths.route > 0 {
        spans.push(gap(widths));
        spans.push(Span::styled(fixed("route", widths.route), theme::label()));
    }
    Line::from(spans)
}

fn render_overview_row(
    app: &App,
    idx: usize,
    widths: &OverviewWidths,
    selected: bool,
) -> Line<'static> {
    let Some(profile) = app.config.profiles.get(idx) else {
        return Line::from("");
    };

    let active = app.config.is_active(&profile.name);
    let cursor = if selected {
        Span::styled("", theme::accent())
    } else {
        Span::raw("  ")
    };
    let dot = if active {
        Span::styled("", theme::orange())
    } else {
        Span::styled("", theme::faint())
    };
    let (name_text, name_pad) = fixed_split(&profile.name, widths.name);
    let name = Span::styled(
        name_text,
        if active {
            name_style(profile).fg(theme::ACCENT_2)
        } else {
            name_style(profile)
        },
    );
    let name_pad = Span::raw(name_pad);

    // Auto-start indicator sits after the 5h column so it reads alongside the
    // usage that triggers the rotation, with a fixed 1-char slot kept in all
    // rows so subsequent columns stay aligned.
    let auto_marker = if profile.auto_start && profile.is_oauth() {
        Span::styled("", theme::accent())
    } else {
        Span::raw(" ")
    };

    let mut spans = vec![cursor, dot, Span::raw(" "), name, name_pad, gap(widths)];
    spans.push(Span::styled(
        fixed(&account_type_label(profile), widths.kind),
        account_type_style(profile),
    ));
    spans.push(gap(widths));
    let (five_text, five_style) = window_summary_parts(
        profile.usage.as_ref().and_then(|u| u.five_hour.as_ref()),
        widths.five_hour,
        true,
    );
    let five_pad = widths.five_hour.saturating_sub(five_text.chars().count());
    spans.push(Span::styled(five_text, five_style));
    spans.push(Span::raw(" "));
    spans.push(auto_marker);
    spans.push(Span::raw(" ".repeat(five_pad)));
    if widths.seven_day > 0 {
        spans.push(gap(widths));
        spans.push(window_summary_span(
            profile.usage.as_ref().and_then(|u| u.weekly_window()),
            widths.seven_day,
            widths.seven_day >= 18,
        ));
    }
    if widths.route > 0 {
        spans.push(gap(widths));
        let (chain, chain_style) = chain_summary(app, profile);
        spans.push(Span::styled(fixed(&chain, widths.route), chain_style));
    }

    Line::from(spans)
}

fn render_action_row(label: &'static str, selected: bool) -> Line<'static> {
    let cursor = if selected {
        Span::styled("", theme::accent())
    } else {
        Span::raw("  ")
    };
    Line::from(vec![cursor, Span::styled(label, theme::dim())])
}

/// Section break above the action rows. Cursor skips this line.
fn render_separator_row() -> Line<'static> {
    Line::from(vec![
        Span::raw("  "),
        Span::styled("ACTIONS", theme::label()),
    ])
}

fn gap(widths: &OverviewWidths) -> Span<'static> {
    Span::raw(" ".repeat(widths.gap))
}

fn chain_summary(app: &App, profile: &Profile) -> (String, Style) {
    let Some(position) = app
        .config
        .state
        .fallback_chain
        .iter()
        .position(|n| n == &profile.name)
    else {
        return ("".to_string(), theme::faint());
    };
    let threshold = threshold_for(profile);
    let pct = profile
        .usage
        .as_ref()
        .and_then(|u| u.five_hour.as_ref())
        .map(|w| w.utilization)
        .unwrap_or(0.0);
    let color = chain_state_style(Some(profile), pct, threshold);
    (format!("#{} @ {threshold:.0}%", position + 1), color)
}

fn draw_fallback_overview(frame: &mut Frame<'_>, area: Rect, app: &App) {
    let block = Block::default()
        .borders(Borders::ALL)
        .border_set(border::ROUNDED)
        .border_style(Style::default().fg(theme::LINE))
        .title(Line::from(vec![
            Span::styled(" FALLBACK ", Style::default().fg(theme::ACCENT_2).bold()),
            Span::styled("flow", theme::faint()),
        ]))
        .padding(Padding::horizontal(1));
    let inner = block.inner(area);
    frame.render_widget(block, area);

    let lines = fallback_flow_lines(app, inner.width, inner.height);
    let para = Paragraph::new(lines)
        .style(theme::base())
        .wrap(Wrap { trim: false });
    frame.render_widget(para, inner);
}

fn fallback_flow_lines(app: &App, width: u16, height: u16) -> Vec<Line<'static>> {
    if app.config.state.fallback_chain.is_empty() {
        return vec![
            Line::from(Span::styled(
                "No fallback chain configured.",
                theme::muted(),
            )),
            Line::from(vec![
                Span::styled("f", theme::accent()),
                Span::styled(
                    " opens the chain editor. Add accounts to rotate automatically when a 5h window crosses its threshold.",
                    theme::dim(),
                ),
            ]),
        ];
    }

    if width >= 92 {
        let mut spans = Vec::new();
        for (i, name) in app.config.state.fallback_chain.iter().enumerate() {
            if i > 0 {
                spans.push(Span::styled(" ─▶ ", theme::orange()));
            }
            let (label, style) = chain_node(app, name, i);
            spans.push(Span::styled(
                format!(" {label} "),
                style.bg(theme::BG_RAISED).bold(),
            ));
        }
        spans.push(Span::styled("", theme::orange()));
        return vec![Line::from(spans)];
    }

    let mut lines = Vec::new();
    for (i, name) in app.config.state.fallback_chain.iter().enumerate() {
        let (label, style) = chain_node(app, name, i);
        lines.push(Line::from(Span::styled(label.to_string(), style.bold())));
        if i + 1 < app.config.state.fallback_chain.len() && lines.len() + 1 < height as usize {
            lines.push(Line::from(Span::styled("", theme::faint())));
        }
        if lines.len() >= height as usize {
            break;
        }
    }
    if lines.len() < height as usize {
        lines.push(Line::from(Span::styled("  ↺ wraps to top", theme::faint())));
    }
    lines
}

fn chain_node(app: &App, name: &str, index: usize) -> (String, Style) {
    let active = app.config.is_active(name);
    let marker = if active { "" } else { "" };
    let Some(profile) = app.config.find(name) else {
        return (
            format!("{} {marker} {name} · missing", index + 1),
            theme::danger(),
        );
    };
    let threshold = threshold_for(profile);
    let pct = profile
        .usage
        .as_ref()
        .and_then(|u| u.five_hour.as_ref())
        .map(|w| w.utilization);
    let status = pct
        .map(|p| format!("{p:.0}/{threshold:.0}%"))
        .unwrap_or_else(|| format!("—/{threshold:.0}%"));
    let style = chain_state_style(
        profile
            .usage
            .as_ref()
            .and_then(|u| u.five_hour.as_ref())
            .map(|_| profile),
        pct.unwrap_or(0.0),
        threshold,
    );
    (
        format!("{} {marker} {} · {status}", index + 1, profile.name),
        style,
    )
}

fn chain_state_style(profile: Option<&Profile>, pct: f64, threshold: f64) -> Style {
    if profile.is_none() {
        return theme::danger();
    }
    if pct >= threshold {
        theme::danger()
    } else if pct >= threshold * 0.8 {
        theme::warning()
    } else {
        Style::default().fg(theme::ACCENT_2)
    }
}