wip: Docker file

This commit is contained in:
Jack Wills
2022-09-04 15:49:41 -04:00
parent a7bcaa3eb4
commit bfc9cf9b39
9 changed files with 159 additions and 43 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ pub mod log_sanitizer {
text::{Span, Spans},
};
/// Attempt to colorize the given string to tui-rs standars
/// Attempt to colorize the given string to tui-rs standards
pub fn colorize_logs(input: &str) -> Vec<Spans<'static>> {
vec![Spans::from(
categorise_text(input)
-3
View File
@@ -169,9 +169,6 @@ impl SelectablePanel {
/// Global gui_state, stored in an Arc<Mutex>
#[derive(Debug, Clone)]
pub struct GuiState {
// Think this should be a BMapTree, so can define order when iterating over potential intersects
// Is an issue if two panels are in the same space, sush as a smaller panel embedded, yet infront of, a larger panel
// If a BMapTree think it would mean have to implement ordering for SelectablePanel
panel_map: HashMap<SelectablePanel, Rect>,
heading_map: HashMap<Header, Rect>,
loading_icon: Loading,