cu-consolemon 0.15.0

A monitoring TUI for Copper. See the main Copper repository for more information.
Documentation
use ratatui::{
    style::Style,
    text::Line,
    widgets::{Block, BorderType, Borders},
};

/// Render information for a single node
#[derive(Debug)]
pub struct NodeLayout<'a> {
    // minimum size of contents (TODO: doc: including borders?)
    pub size: (u16, u16),
    border_type: BorderType,
    title: Line<'a>,
    border_style: Style,
    //	in_ports: Vec<PortLayout>,
    //	out_ports: Vec<PortLayout>,
}

impl<'a> NodeLayout<'a> {
    pub fn new(size: (u16, u16)) -> Self {
        Self {
            size,
            border_type: BorderType::Rounded,
            title: Line::default(),
            border_style: Style::default(),
        }
    }

    #[allow(dead_code)]
    pub fn with_title(mut self, title: &'a str) -> Self {
        self.title = Line::from(title);
        self
    }

    pub fn with_title_line(mut self, title: Line<'a>) -> Self {
        self.title = title;
        self
    }

    #[allow(dead_code)]
    pub fn with_border_type(mut self, border: BorderType) -> Self {
        self.border_type = border;
        self
    }

    pub fn border_type(&self) -> BorderType {
        self.border_type
    }

    #[allow(dead_code)]
    pub fn with_border_style(mut self, style: Style) -> Self {
        self.border_style = style;
        self
    }

    pub fn block(&self) -> Block<'_> {
        Block::default()
            .borders(Borders::ALL)
            .border_type(self.border_type)
            .border_style(self.border_style)
            .title(self.title.clone())
    }
}