use crate::align::HorizontalAlign;
use crate::cells::{cell_len, set_cell_size};
use crate::console::{Console, ConsoleOptions, Overflow};
use crate::protocol::Renderable;
use crate::segment::Segment;
use crate::style::Style;
use crate::text::{Text, DEFAULT_TAB_SIZE};
pub struct Rule {
title: Option<String>,
characters: String,
style: Style,
align: HorizontalAlign,
}
impl Default for Rule {
fn default() -> Self {
Rule {
title: None,
characters: "─".to_string(),
style: Style::parse("bright_green").expect("valid built-in style"),
align: HorizontalAlign::Center,
}
}
}
impl Rule {
pub fn line() -> Self {
Rule::default()
}
pub fn new(title: impl Into<String>) -> Self {
Rule {
title: Some(title.into()),
..Rule::default()
}
}
pub fn characters(mut self, characters: impl Into<String>) -> Self {
self.characters = characters.into();
self
}
pub fn style(mut self, style: Style) -> Self {
self.style = style;
self
}
pub fn align(mut self, align: HorizontalAlign) -> Self {
self.align = align;
self
}
fn fill(&self, width: usize) -> String {
if width == 0 {
return String::new();
}
let chars_len = cell_len(&self.characters).max(1);
let repeat = width / chars_len + 1;
let repeated = self.characters.repeat(repeat);
set_cell_size(&repeated, width)
}
fn build_text(&self, console: &Console, width: usize) -> Text {
let Some(title) = self.title.as_ref().filter(|title| !title.is_empty()) else {
return Text::styled(self.fill(width), self.style.clone());
};
let required_space = if matches!(self.align, HorizontalAlign::Center) {
4
} else {
2
};
let truncate_width = width.saturating_sub(required_space);
if truncate_width == 0 {
return Text::styled(self.fill(width), self.style.clone());
}
let parsed = console.build_text(title);
let mut title = parsed.blank_copy();
title.append(&parsed.plain().replace('\n', " "), None);
for span in parsed.spans() {
title.push_span(span.clone());
}
title.set_base_style("rule.text");
title.expand_tabs(DEFAULT_TAB_SIZE);
title.truncate(truncate_width, Some(Overflow::Ellipsis), false);
match self.align {
HorizontalAlign::Center => {
let title_len = title.cell_len();
let side_width = width.saturating_sub(title_len) / 2;
let left = self.fill(side_width.saturating_sub(1));
let right_length = width
.saturating_sub(title_len)
.saturating_sub(cell_len(&left))
.saturating_sub(2);
let right = self.fill(right_length);
let mut text = Text::new("");
text.append(&format!("{left} "), Some(self.style.clone().into()));
text = text.append_text(&title);
text.append(&format!(" {right}"), Some(self.style.clone().into()));
text
}
HorizontalAlign::Left => {
let fill_len = width.saturating_sub(title.cell_len()).saturating_sub(1);
let mut text = Text::new("");
text = text.append_text(&title);
text.append(" ", None);
text.append(&self.fill(fill_len), Some(self.style.clone().into()));
text
}
HorizontalAlign::Right => {
let fill_len = width.saturating_sub(title.cell_len()).saturating_sub(1);
let mut text = Text::new("");
text.append(&self.fill(fill_len), Some(self.style.clone().into()));
text.append(" ", None);
text = text.append_text(&title);
text
}
}
}
}
impl Renderable for Rule {
fn rich_render(&self, console: &Console, options: &ConsoleOptions) -> Vec<Segment> {
let text = self.build_text(console, options.max_width);
text.render(console.theme(), console.base_style())
}
}
#[cfg(test)]
mod tests {
use super::*;
fn console() -> Console {
Console::builder()
.force_terminal(true)
.color_system(Some(crate::color::ColorSystem::Truecolor))
.width(20)
.build()
}
#[test]
fn plain_rule_fills_width() {
let out = console().render_export(&Rule::line());
assert_eq!(out, format!("\x1b[92m{}\x1b[0m\n", "─".repeat(20)));
}
#[test]
fn titled_rule_centers() {
let out = console().render_export(&Rule::new("Hi"));
assert_eq!(out, "\x1b[92m──────── \x1b[0mHi\x1b[92m ────────\x1b[0m\n");
}
#[test]
fn a_title_that_cannot_fit_falls_back_to_a_plain_rule() {
for width in [1usize, 2, 3, 4] {
let console = Console::builder().width(width).no_color(true).build();
let out = console.render_to_string(&Rule::new("TITLE"));
assert_eq!(
out.trim_end_matches('\n'),
"\u{2500}".repeat(width),
"width {width} did not fall back to a plain rule"
);
}
}
#[test]
fn an_over_long_title_is_ellipsised() {
let console = Console::builder().width(5).no_color(true).build();
let out = console.render_to_string(&Rule::new("TITLE"));
assert_eq!(out.trim_end_matches('\n'), "\u{2500} \u{2026} \u{2500}");
}
}