2024-06-27 22:19:53 +02:00
|
|
|
use comfy_table::presets;
|
|
|
|
use comfy_table::{CellAlignment, ContentArrangement, Table};
|
|
|
|
use console::{style, Color};
|
2023-07-09 17:53:20 +02:00
|
|
|
|
2024-06-27 22:19:53 +02:00
|
|
|
/// Prints content with a simple border around it.
|
|
|
|
///
|
|
|
|
/// This function is a convenience wrapper around [blockfmt] and [println]. It automatically
|
|
|
|
/// formats the content with a border using the specified color and then prints it to the console.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use libpt_cli::console::Color;
|
|
|
|
/// use libpt_cli::printing::blockprint;
|
|
|
|
/// # fn main() {
|
|
|
|
/// blockprint("Hello world!".to_string(), Color::Blue);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn blockprint(content: impl ToString, color: Color) {
|
|
|
|
println!("{}", blockfmt(content, color))
|
2023-07-09 17:53:20 +02:00
|
|
|
}
|
|
|
|
|
2024-06-27 22:19:53 +02:00
|
|
|
/// Formats content with a simple border around it.
|
|
|
|
///
|
|
|
|
/// This function is a convenience wrapper around [blockfmt_advanced] with preset values for
|
|
|
|
/// border style, content arrangement, and cell alignment. It automatically formats the content
|
|
|
|
/// with a border as large as possible and centers the content. The resulting cell is colored in
|
|
|
|
/// the specified color.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use libpt_cli::console::Color;
|
|
|
|
/// use libpt_cli::printing::blockfmt;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let formatted_content = blockfmt("Hello world!".to_string(), Color::Blue);
|
|
|
|
/// println!("{}", formatted_content);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn blockfmt(content: impl ToString, color: Color) -> String {
|
|
|
|
blockfmt_advanced(
|
|
|
|
content,
|
2024-06-27 22:22:46 +02:00
|
|
|
Some(color),
|
2024-06-27 22:19:53 +02:00
|
|
|
presets::UTF8_BORDERS_ONLY,
|
|
|
|
ContentArrangement::DynamicFullWidth,
|
2024-06-27 22:22:46 +02:00
|
|
|
CellAlignment::Center,
|
2024-06-27 22:19:53 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Formats content with a border around it.
|
|
|
|
///
|
|
|
|
/// Unless you are looking for something specific, use [blockfmt] or [blockprint].
|
|
|
|
///
|
|
|
|
/// The border can be created using box-drawing characters, and the content is formatted
|
|
|
|
/// within the border. The function allows customization of the border's color, preset,
|
|
|
|
/// content arrangement, and cell alignment.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// use libpt_cli::comfy_table::{presets, CellAlignment, ContentArrangement};
|
|
|
|
/// use libpt_cli::console::Color;
|
|
|
|
/// use libpt_cli::printing::blockfmt_advanced;
|
|
|
|
/// # fn main() {
|
|
|
|
/// println!(
|
|
|
|
/// "{}",
|
|
|
|
/// blockfmt_advanced(
|
|
|
|
/// "Hello world!".to_string(),
|
2024-06-27 22:22:46 +02:00
|
|
|
/// Some(Color::Blue),
|
2024-06-27 22:19:53 +02:00
|
|
|
/// presets::UTF8_FULL,
|
|
|
|
/// ContentArrangement::DynamicFullWidth,
|
|
|
|
/// CellAlignment::Center
|
|
|
|
/// )
|
|
|
|
/// );
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
/// ```text
|
|
|
|
/// ┌────────────────────────────────────────────────────────────────────────────────────────┐
|
|
|
|
/// │ Hello world! │
|
|
|
|
/// └────────────────────────────────────────────────────────────────────────────────────────┘
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Parameters
|
|
|
|
///
|
|
|
|
///
|
|
|
|
pub fn blockfmt_advanced(
|
|
|
|
content: impl ToString,
|
2024-06-27 22:22:46 +02:00
|
|
|
color: Option<Color>,
|
2024-06-27 22:19:53 +02:00
|
|
|
preset: &str,
|
|
|
|
arrangement: ContentArrangement,
|
2024-06-27 22:22:46 +02:00
|
|
|
alignment: CellAlignment,
|
2024-06-27 22:19:53 +02:00
|
|
|
) -> String {
|
|
|
|
let mut table = Table::new();
|
|
|
|
table
|
|
|
|
.load_preset(preset)
|
|
|
|
.set_content_arrangement(arrangement)
|
|
|
|
.add_row(vec![content.to_string()]);
|
2024-06-27 22:22:46 +02:00
|
|
|
table.column_mut(0).unwrap().set_cell_alignment(alignment);
|
2024-06-27 22:19:53 +02:00
|
|
|
|
2024-06-27 22:22:46 +02:00
|
|
|
match color {
|
|
|
|
Some(c) => format!("{}", style(table).fg(c)),
|
|
|
|
None => table.to_string(),
|
|
|
|
}
|
2023-07-09 17:53:20 +02:00
|
|
|
}
|