2022-12-25 01:27:34 +01:00
|
|
|
use tabled::{builder::Builder, object::Cell, Modify, Padding, Style, Width};
|
2022-12-15 15:47:04 +01:00
|
|
|
|
|
|
|
pub fn string_width(text: &str) -> usize {
|
|
|
|
tabled::papergrid::util::string_width_multiline_tab(text, 4)
|
|
|
|
}
|
|
|
|
|
2022-12-27 14:44:34 +01:00
|
|
|
pub fn string_wrap(text: &str, width: usize, keep_words: bool) -> String {
|
2022-12-15 15:47:04 +01:00
|
|
|
// todo: change me...
|
|
|
|
//
|
|
|
|
// well... it's not effitient to build a table to wrap a string,
|
|
|
|
// but ... it's better than a copy paste (is it?)
|
|
|
|
|
|
|
|
if text.is_empty() {
|
|
|
|
return String::new();
|
|
|
|
}
|
|
|
|
|
2022-12-27 14:44:34 +01:00
|
|
|
let wrap = if keep_words {
|
|
|
|
Width::wrap(width).keep_words()
|
|
|
|
} else {
|
|
|
|
Width::wrap(width)
|
|
|
|
};
|
|
|
|
|
2022-12-15 15:47:04 +01:00
|
|
|
Builder::from_iter([[text]])
|
|
|
|
.build()
|
|
|
|
.with(Style::empty())
|
2022-12-25 01:27:34 +01:00
|
|
|
.with(Padding::zero())
|
2022-12-27 14:44:34 +01:00
|
|
|
.with(Modify::new(Cell(0, 0)).with(wrap))
|
2022-12-15 15:47:04 +01:00
|
|
|
.to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn string_truncate(text: &str, width: usize) -> String {
|
|
|
|
// todo: change me...
|
|
|
|
|
|
|
|
let line = match text.lines().next() {
|
|
|
|
Some(first_line) => first_line,
|
|
|
|
None => return String::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Builder::from_iter([[line]])
|
|
|
|
.build()
|
|
|
|
.with(Style::empty())
|
|
|
|
.with(Padding::zero())
|
|
|
|
.with(Width::truncate(width))
|
|
|
|
.to_string()
|
|
|
|
}
|