Sweep every first-party crate source (1956 .rs files) to the project comment guidelines: delete redundant restatements, decorative banners, change narration, and end-of-line comments; keep and tighten the crucial ones (invariants, bug rationale, SAFETY blocks, ported-source attribution). No functional code changed. Every edit is proven comment-only against the prior tree by a comment-stripping lexer (string/char/raw-string aware) plus a separate doctest-fence check. Where removing a comment made rustfmt or clippy want to re-lay-out adjacent code, the minimal triggering comment is restored so code tokens stay byte-identical. Gates green: cargo fmt --all --check (0 diffs), cargo check and cargo clippy --workspace --all-targets (0 warnings). Adds scripts/check_codegen_comment_guidelines.py — the enforcement gate for these guidelines (flags banners, end-of-line comments, change narration, and commented-out code).
85 lines
2.4 KiB
Rust
85 lines
2.4 KiB
Rust
//! StatusBar widget - displays context info at the top.
|
|
|
|
use ratatui::buffer::Buffer;
|
|
use ratatui::layout::Rect;
|
|
use ratatui::style::Style;
|
|
use ratatui::text::Span;
|
|
use ratatui::widgets::Widget;
|
|
|
|
use crate::theme::Theme;
|
|
|
|
/// Status bar showing context information.
|
|
///
|
|
/// Displays: token count, current turn, view mode, etc.
|
|
pub struct StatusBar<'a> {
|
|
/// Left-aligned content (e.g., "Context: 5.2k tokens")
|
|
pub left: &'a str,
|
|
/// Center content (e.g., "Turn 2/3")
|
|
pub center: Option<&'a str>,
|
|
/// Right-aligned content (e.g., view mode indicator)
|
|
pub right: Option<&'a str>,
|
|
}
|
|
|
|
impl<'a> StatusBar<'a> {
|
|
/// Create a new status bar with left content.
|
|
pub fn new(left: &'a str) -> Self {
|
|
Self {
|
|
left,
|
|
center: None,
|
|
right: None,
|
|
}
|
|
}
|
|
|
|
pub fn center(mut self, text: &'a str) -> Self {
|
|
self.center = Some(text);
|
|
self
|
|
}
|
|
|
|
pub fn right(mut self, text: &'a str) -> Self {
|
|
self.right = Some(text);
|
|
self
|
|
}
|
|
}
|
|
|
|
impl Widget for StatusBar<'_> {
|
|
fn render(self, area: Rect, buf: &mut Buffer) {
|
|
if area.height == 0 {
|
|
return;
|
|
}
|
|
|
|
let theme = Theme::current();
|
|
|
|
let left_margin = 0u16;
|
|
let right_margin = 0u16;
|
|
let content_x = area.x + left_margin;
|
|
let content_width = area.width.saturating_sub(left_margin + right_margin);
|
|
|
|
if content_width < 10 {
|
|
return;
|
|
}
|
|
|
|
let style = Style::default().fg(theme.gray).bg(theme.bg_base);
|
|
|
|
buf.set_style(area, Style::default().bg(theme.bg_base));
|
|
|
|
let left_span = Span::styled(self.left, style);
|
|
buf.set_span(content_x, area.y, &left_span, content_width);
|
|
|
|
if let Some(center) = self.center {
|
|
let center_width = center.len() as u16;
|
|
let center_x = content_x + (content_width.saturating_sub(center_width)) / 2;
|
|
if center_x > content_x + self.left.len() as u16 + 2 {
|
|
let center_span = Span::styled(center, style);
|
|
buf.set_span(center_x, area.y, ¢er_span, center_width);
|
|
}
|
|
}
|
|
|
|
if let Some(right) = self.right {
|
|
let right_width = right.len() as u16;
|
|
let right_x = content_x + content_width.saturating_sub(right_width);
|
|
let right_span = Span::styled(right, style);
|
|
buf.set_span(right_x, area.y, &right_span, right_width);
|
|
}
|
|
}
|
|
}
|