use crate::theme::Theme;
use crate::view::selection::{SelectionState, scroll_into_view};
use crate::view::widgets::{render_vertical_scrollbar, row_area, rows_and_track};
use crate::view::wrap::{as_u16, fit_line};
use clankerdiff_ratatui::theme::SelectionState as ThemeSelectionState;
use ratatui::buffer::Buffer;
use ratatui::layout::Rect;
use ratatui::style::Style;
use ratatui::text::Line;
use ratatui::widgets::{Block, Paragraph, StatefulWidget, Widget};
use unicode_width::UnicodeWidthStr;
pub struct ListView<'a> {
rows: Rows<'a>,
theme: &'a Theme,
empty_message: &'a str,
block: Option<Block<'static>>,
scrollbar: bool,
highlight: Option<Style>,
highlight_symbol: Option<&'static str>,
highlight_horizontal_padding: u16,
}
impl<'a> ListView<'a> {
pub fn new(rows: Vec<Line<'static>>, theme: &'a Theme) -> Self {
let len = rows.len();
let mut rows = rows;
Self::lazy(len, move |index| std::mem::take(&mut rows[index]), theme)
}
pub fn lazy(len: usize, row: impl FnMut(usize) -> Line<'static> + 'a, theme: &'a Theme) -> Self {
Self {
rows: Rows { len, build: Box::new(row) },
theme,
empty_message: "",
block: None,
scrollbar: false,
highlight: None,
highlight_symbol: None,
highlight_horizontal_padding: 0,
}
}
pub fn empty_message(mut self, message: &'a str) -> Self {
self.empty_message = message;
self
}
pub fn block(mut self, block: Block<'static>) -> Self {
self.block = Some(block);
self
}
pub fn bordered(self, title: impl Into<String>) -> Self {
let style = Style::new().fg(self.theme.text_primary);
self.block(Block::bordered().title(title.into()).style(style))
}
pub fn pane(self, empty_message: &'a str) -> Self {
let highlight = self.theme.selection_style(ThemeSelectionState::Focused);
self.empty_message(empty_message).highlight_style(highlight)
}
pub fn scrollbar(mut self) -> Self {
self.scrollbar = true;
self
}
pub fn highlight_style(mut self, style: Style) -> Self {
self.highlight = Some(style);
self
}
pub fn highlight_symbol(mut self, symbol: &'static str) -> Self {
self.highlight_symbol = Some(symbol);
self
}
pub fn highlight_horizontal_padding(mut self, padding: u16) -> Self {
self.highlight_horizontal_padding = padding;
self
}
}
impl StatefulWidget for ListView<'_> {
type State = SelectionState;
fn render(self, area: Rect, buf: &mut Buffer, selection: &mut Self::State) {
let Self {
mut rows,
theme,
empty_message,
block,
scrollbar,
highlight,
highlight_symbol,
highlight_horizontal_padding,
} = self;
let inner = block.as_ref().map_or(area, |block| block.inner(area));
if let Some(block) = block {
block.render(area, buf);
}
if rows.len == 0 {
selection.set_rows_area(Rect::ZERO);
Paragraph::new(empty_message).style(Style::new().fg(theme.muted)).render(inner, buf);
return;
}
let (rows_area, track_area) = rows_and_track(inner, scrollbar);
selection.set_rows_area(rows_area);
let height = usize::from(rows_area.height);
if height == 0 {
return;
}
let selected = selection.selected().map(|selected| selected.min(rows.len - 1));
let offset = visible_offset(selection.offset(), selected, rows.len, height);
selection.set_offset(offset);
let symbol_width = as_u16(highlight_symbol.map_or(0, str::width));
let content_width = usize::from(rows_area.width.saturating_sub(symbol_width));
let highlight = highlight.unwrap_or_else(|| theme.selection_style(ThemeSelectionState::Selected));
for (drawn, index) in (offset..rows.len.min(offset + height)).enumerate() {
let Some(whole) = row_area(rows_area, drawn) else {
break;
};
let content = Rect { x: whole.x + symbol_width, width: whole.width.saturating_sub(symbol_width), ..whole };
fit_line(rows.build(index), content_width, Style::default()).render(content, buf);
if selected == Some(index) {
let highlight_area = Rect {
x: whole.x.saturating_sub(highlight_horizontal_padding),
width: whole
.width
.saturating_add(track_area.width)
.saturating_add(highlight_horizontal_padding.saturating_mul(2)),
..whole
};
buf.set_style(highlight_area, highlight);
if let Some(symbol) = highlight_symbol {
Line::raw(symbol).render(Rect { width: symbol_width, ..whole }, buf);
}
}
}
if scrollbar {
render_vertical_scrollbar(track_area, buf, rows.len, offset);
}
}
}
struct Rows<'a> {
len: usize,
build: Box<dyn FnMut(usize) -> Line<'static> + 'a>,
}
impl Rows<'_> {
fn build(&mut self, index: usize) -> Line<'static> {
(self.build)(index)
}
}
fn visible_offset(offset: usize, selected: Option<usize>, len: usize, height: usize) -> usize {
let last = len.saturating_sub(1);
let offset = offset.min(last);
let Some(selected) = selected else {
return offset;
};
let padding = usize::from(height >= 3);
let target = if (selected + padding).min(last) >= offset + height {
(selected + padding).min(last)
} else if selected.saturating_sub(padding) < offset {
selected.saturating_sub(padding)
} else {
selected
};
scroll_into_view(offset, target, height)
}
#[cfg(test)]
mod tests {
use super::{ListView, visible_offset};
use crate::theme::Theme;
use crate::view::selection::SelectionState;
use ratatui::Terminal;
use ratatui::backend::TestBackend;
use ratatui::text::Line;
#[test]
fn builds_only_the_rows_it_draws() {
let theme = Theme::default();
let mut selection = SelectionState::new(50_000);
selection.select(Some(1_000), 50_000);
let mut built: Vec<usize> = Vec::new();
let mut terminal = Terminal::new(TestBackend::new(8, 3)).unwrap();
terminal
.draw(|frame| {
let rows = |index: usize| {
built.push(index);
Line::raw(index.to_string())
};
frame.render_stateful_widget(ListView::lazy(50_000, rows, &theme), frame.area(), &mut selection);
})
.unwrap();
assert_eq!(built, vec![999, 1_000, 1_001], "only the visible window is formatted");
}
#[test]
fn keeps_a_row_of_context_beyond_the_selection() {
assert_eq!(visible_offset(0, Some(4), 20, 5), 1, "scrolls one past the selection moving down");
assert_eq!(visible_offset(5, Some(5), 20, 5), 4, "scrolls one before the selection moving up");
assert_eq!(visible_offset(0, Some(2), 20, 5), 0, "a selection with context either side stays put");
}
#[test]
fn drops_the_context_row_when_the_viewport_cannot_hold_it() {
assert_eq!(visible_offset(0, Some(1), 20, 2), 0, "the selection is already visible");
assert_eq!(visible_offset(0, Some(2), 20, 2), 1, "scrolls only as far as the selection");
}
#[test]
fn clamps_to_the_rows_that_exist() {
assert_eq!(visible_offset(0, Some(19), 20, 5), 15, "the last row cannot scroll past the end");
assert_eq!(visible_offset(30, Some(19), 20, 5), 18, "an offset past the end is pulled back to the rows");
assert_eq!(visible_offset(3, None, 20, 5), 3, "an unselected list keeps its offset");
}
}